diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml new file mode 100644 index 0000000000..051e951510 --- /dev/null +++ b/.github/workflows/build-submit-android.yml @@ -0,0 +1,61 @@ +--- +name: Build and Submit Android + +on: + workflow_dispatch: + inputs: + profile: + type: choice + description: Build profile to use + options: + - production + +jobs: + build: + name: Build and Submit Android + runs-on: ubuntu-latest + steps: + - name: Check for EXPO_TOKEN + run: > + if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then + echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" + exit 1 + fi + + - name: ā¬‡ļø Checkout + uses: actions/checkout@v4 + + - name: šŸ”§ Setup Node + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: yarn + + - name: šŸ”Ø Setup EAS + uses: expo/expo-github-action@v8 + with: + expo-version: latest + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + + - name: ā›ļø Setup EAS local builds + run: yarn global add eas-cli-local-build-plugin + + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + + - name: āš™ļø Install dependencies + run: yarn install + + - name: āœļø Write environment variables + run: | + echo "${{ secrets.ENV_TOKEN }}" > .env + echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json + + - name: šŸ—ļø EAS Build + run: yarn use-build-number eas build -p android --profile production --local --output build.aab --non-interactive + + - name: šŸš€ Deploy + run: eas submit -p android --non-interactive --path build.aab diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml new file mode 100644 index 0000000000..0fd691bb92 --- /dev/null +++ b/.github/workflows/build-submit-ios.yml @@ -0,0 +1,72 @@ +--- +name: Build and Submit iOS + +on: + schedule: + - cron: '0 5 * * *' + workflow_dispatch: + inputs: + profile: + type: choice + description: Build profile to use + options: + - production + +jobs: + build: + name: Build and Submit iOS + runs-on: macos-14 + steps: + - name: Check for EXPO_TOKEN + run: > + if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then + echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" + exit 1 + fi + + - name: ā¬‡ļø Checkout + uses: actions/checkout@v4 + + - name: šŸ”§ Setup Node + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: yarn + + - name: šŸ”Ø Setup EAS + uses: expo/expo-github-action@v8 + with: + expo-version: latest + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + + - name: ā›ļø Setup EAS local builds + run: yarn global add eas-cli-local-build-plugin + + - name: āš™ļø Install dependencies + run: yarn install + + - name: ā˜•ļø Setup Cocoapods + uses: maxim-lobanov/setup-cocoapods@v1 + with: + version: 1.14.3 + + - name: šŸ’¾ Cache Pods + uses: actions/cache@v3 + id: pods-cache + with: + path: ./ios/Pods + # We'll use the yarn.lock for our hash since we don't yet have a Podfile.lock. Pod versions will not + # change unless the yarn version changes as well. + key: ${{ runner.os }}-pods-${{ hashFiles('yarn.lock') }} + + - name: āœļø Write environment variables + run: | + echo "${{ secrets.ENV_TOKEN }}" > .env + echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json + + - name: šŸ—ļø EAS Build + run: yarn use-build-number eas build -p ios --profile production --local --output build.ipa --non-interactive + + - name: šŸš€ Deploy + run: eas submit -p ios --non-interactive --path build.ipa diff --git a/.github/workflows/deploy-nightly-testflight.yml b/.github/workflows/deploy-nightly-testflight.yml deleted file mode 100644 index e3875899ee..0000000000 --- a/.github/workflows/deploy-nightly-testflight.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Deploy Nightly Testflight Release - -on: - schedule: - - cron: '0 5 * * *' - -jobs: - build: - name: Deploy Nightly Testflight Release - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - name: Check for EXPO_TOKEN - run: | - if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then - echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" - exit 1 - fi - - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 18.x - cache: yarn - - - name: Setup EAS - uses: expo/expo-github-action@v8 - with: - eas-version: latest - token: ${{ secrets.EXPO_TOKEN }} - - - name: Install dependencies - run: yarn install - - - name: Bump build number - run: yarn bump:ios - - - name: EAS build and submit - run: eas build -p ios --profile production --auto-submit --non-interactive - - - name: Commit - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: Nightly iOS Build Bump - branch: main - commit_user_name: github-actions[bot] - commit_user_email: github-actions[bot]@users.noreply.github.com diff --git a/__e2e__/tests/create-account.test.ts b/__e2e__/tests/create-account.test.ts index a6724e8e45..9c56c914ea 100644 --- a/__e2e__/tests/create-account.test.ts +++ b/__e2e__/tests/create-account.test.ts @@ -18,9 +18,10 @@ describe('Create account', () => { await device.takeScreenshot('1- opened create account screen') await element(by.id('selectServiceButton')).tap() await device.takeScreenshot('2- selected other server') + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() await device.takeScreenshot('3- input test server URL') await element(by.id('emailInput')).typeText('example@test.com') await element(by.id('passwordInput')).typeText('hunter2') @@ -33,12 +34,6 @@ describe('Create account', () => { await element(by.id('nextBtn')).tap() - await expect(element(by.id('welcomeOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFeedsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFollowsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('homeScreen'))).toBeVisible() + await expect(element(by.id('onboardingInterests'))).toBeVisible() }) }) diff --git a/__e2e__/tests/home-screen.test.ts b/__e2e__/tests/home-screen.test.ts index 79fca1e6a5..ce7f1643bd 100644 --- a/__e2e__/tests/home-screen.test.ts +++ b/__e2e__/tests/home-screen.test.ts @@ -36,7 +36,7 @@ describe('Home screen', () => { const carlaPosts = by.id('feedItem-by-carla.test') await expect( element(by.id('likeCount').withAncestor(carlaPosts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() await element(by.id('likeBtn').withAncestor(carlaPosts)).atIndex(0).tap() await expect( element(by.id('likeCount').withAncestor(carlaPosts)).atIndex(0), @@ -44,14 +44,14 @@ describe('Home screen', () => { await element(by.id('likeBtn').withAncestor(carlaPosts)).atIndex(0).tap() await expect( element(by.id('likeCount').withAncestor(carlaPosts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() }) it('Can repost posts', async () => { const carlaPosts = by.id('feedItem-by-carla.test') await expect( element(by.id('repostCount').withAncestor(carlaPosts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() await element(by.id('repostBtn').withAncestor(carlaPosts)).atIndex(0).tap() await expect(element(by.id('repostModal'))).toBeVisible() await element(by.id('repostBtn').withAncestor(by.id('repostModal'))).tap() @@ -65,7 +65,7 @@ describe('Home screen', () => { await expect(element(by.id('repostModal'))).not.toBeVisible() await expect( element(by.id('repostCount').withAncestor(carlaPosts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() }) it('Can report posts', async () => { diff --git a/__e2e__/tests/invite-codes.test.ts b/__e2e__/tests/invite-codes.test.ts index 7ab5b1477b..7eb8d9a3e1 100644 --- a/__e2e__/tests/invite-codes.test.ts +++ b/__e2e__/tests/invite-codes.test.ts @@ -28,9 +28,10 @@ describe('invite-codes', () => { await device.takeScreenshot('1- opened create account screen') await element(by.id('selectServiceButton')).tap() await device.takeScreenshot('2- selected other server') + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() await device.takeScreenshot('3- input test server URL') await element(by.id('inviteCodeInput')).typeText(inviteCode) await element(by.id('emailInput')).typeText('example@test.com') @@ -40,12 +41,6 @@ describe('invite-codes', () => { await element(by.id('handleInput')).typeText('e2e-test') await device.takeScreenshot('4- entered handle') await element(by.id('nextBtn')).tap() - await expect(element(by.id('welcomeOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFeedsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFollowsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('homeScreen'))).toBeVisible() + await expect(element(by.id('onboardingInterests'))).toBeVisible() }) }) diff --git a/__e2e__/tests/invites-and-text-verification.test.ts b/__e2e__/tests/invites-and-text-verification.test.ts index 850ca6d5c7..863b31107b 100644 --- a/__e2e__/tests/invites-and-text-verification.test.ts +++ b/__e2e__/tests/invites-and-text-verification.test.ts @@ -28,16 +28,17 @@ describe('invite-codes', () => { await device.takeScreenshot('1- opened create account screen') await element(by.id('selectServiceButton')).tap() await device.takeScreenshot('2- selected other server') + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() await device.takeScreenshot('3- input test server URL') await element(by.id('inviteCodeInput')).typeText(inviteCode) await element(by.id('emailInput')).typeText('example@test.com') await element(by.id('passwordInput')).typeText('hunter2') await device.takeScreenshot('4- entered account details') await element(by.id('nextBtn')).tap() - await element(by.id('phoneInput')).typeText('5558675309') + await element(by.id('phoneInput')).typeText('2345551234') await element(by.id('requestCodeBtn')).tap() await device.takeScreenshot('5- requested code') await element(by.id('codeInput')).typeText('000000') @@ -46,12 +47,6 @@ describe('invite-codes', () => { await element(by.id('handleInput')).typeText('e2e-test') await device.takeScreenshot('7- entered handle') await element(by.id('nextBtn')).tap() - await expect(element(by.id('welcomeOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFeedsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFollowsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('homeScreen'))).toBeVisible() + await expect(element(by.id('onboardingInterests'))).toBeVisible() }) }) diff --git a/__e2e__/tests/mod-lists.test.ts b/__e2e__/tests/mod-lists.test.ts index 5280920b4b..c3d4149e09 100644 --- a/__e2e__/tests/mod-lists.test.ts +++ b/__e2e__/tests/mod-lists.test.ts @@ -2,7 +2,7 @@ import {describe, beforeAll, it} from '@jest/globals' import {expect} from 'detox' -import {openApp, loginAsAlice, loginAsBob, createServer, sleep} from '../util' +import {openApp, loginAsAlice, loginAsBob, createServer} from '../util' describe('Mod lists', () => { beforeAll(async () => { @@ -62,38 +62,39 @@ describe('Mod lists', () => { .withTimeout(5000) }) - it('Set avi via the edit modlist modal', async () => { - await expect(element(by.id('userAvatarFallback'))).toExist() - await element(by.id('headerDropdownBtn')).tap() - await element(by.text('Edit list details')).tap() - await expect(element(by.id('createOrEditListModal'))).toBeVisible() - await element(by.id('changeAvatarBtn')).tap() - await element(by.text('Library')).tap() - await sleep(3e3) - await element(by.id('saveBtn')).tap() - await expect(element(by.id('createOrEditListModal'))).not.toBeVisible() - await expect(element(by.id('userAvatarImage'))).toExist() - // have to wait for the toast to clear - await waitFor(element(by.id('headerDropdownBtn'))) - .toBeVisible() - .withTimeout(5000) - }) + // DISABLED e2e environment is real finicky about avatar uploads -prf + // it('Set avi via the edit modlist modal', async () => { + // await expect(element(by.id('userAvatarFallback'))).toExist() + // await element(by.id('headerDropdownBtn')).tap() + // await element(by.text('Edit list details')).tap() + // await expect(element(by.id('createOrEditListModal'))).toBeVisible() + // await element(by.id('changeAvatarBtn')).tap() + // await element(by.text('Library')).tap() + // await sleep(3e3) + // await element(by.id('saveBtn')).tap() + // await expect(element(by.id('createOrEditListModal'))).not.toBeVisible() + // await expect(element(by.id('userAvatarImage'))).toExist() + // // have to wait for the toast to clear + // await waitFor(element(by.id('headerDropdownBtn'))) + // .toBeVisible() + // .withTimeout(5000) + // }) - it('Remove avi via the edit modlist modal', async () => { - await expect(element(by.id('userAvatarImage'))).toExist() - await element(by.id('headerDropdownBtn')).tap() - await element(by.text('Edit list details')).tap() - await expect(element(by.id('createOrEditListModal'))).toBeVisible() - await element(by.id('changeAvatarBtn')).tap() - await element(by.text('Remove')).tap() - await element(by.id('saveBtn')).tap() - await expect(element(by.id('createOrEditListModal'))).not.toBeVisible() - await expect(element(by.id('userAvatarFallback'))).toExist() - // have to wait for the toast to clear - await waitFor(element(by.id('headerDropdownBtn'))) - .toBeVisible() - .withTimeout(5000) - }) + // it('Remove avi via the edit modlist modal', async () => { + // await expect(element(by.id('userAvatarImage'))).toExist() + // await element(by.id('headerDropdownBtn')).tap() + // await element(by.text('Edit list details')).tap() + // await expect(element(by.id('createOrEditListModal'))).toBeVisible() + // await element(by.id('changeAvatarBtn')).tap() + // await element(by.text('Remove')).tap() + // await element(by.id('saveBtn')).tap() + // await expect(element(by.id('createOrEditListModal'))).not.toBeVisible() + // await expect(element(by.id('userAvatarFallback'))).toExist() + // // have to wait for the toast to clear + // await waitFor(element(by.id('headerDropdownBtn'))) + // .toBeVisible() + // .withTimeout(5000) + // }) it('Delete the modlist', async () => { await element(by.id('headerDropdownBtn')).tap() diff --git a/__e2e__/tests/profile-screen.test.ts b/__e2e__/tests/profile-screen.test.ts index b4624e4567..7ff43642f9 100644 --- a/__e2e__/tests/profile-screen.test.ts +++ b/__e2e__/tests/profile-screen.test.ts @@ -147,7 +147,7 @@ describe('Profile screen', () => { const posts = by.id('feedItem-by-bob.test') await expect( element(by.id('likeCount').withAncestor(posts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() await element(by.id('likeBtn').withAncestor(posts)).atIndex(0).tap() await expect( element(by.id('likeCount').withAncestor(posts)).atIndex(0), @@ -155,14 +155,14 @@ describe('Profile screen', () => { await element(by.id('likeBtn').withAncestor(posts)).atIndex(0).tap() await expect( element(by.id('likeCount').withAncestor(posts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() }) it('Can repost posts', async () => { const posts = by.id('feedItem-by-bob.test') await expect( element(by.id('repostCount').withAncestor(posts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() await element(by.id('repostBtn').withAncestor(posts)).atIndex(0).tap() await expect(element(by.id('repostModal'))).toBeVisible() await element(by.id('repostBtn').withAncestor(by.id('repostModal'))).tap() @@ -176,7 +176,7 @@ describe('Profile screen', () => { await expect(element(by.id('repostModal'))).not.toBeVisible() await expect( element(by.id('repostCount').withAncestor(posts)).atIndex(0), - ).toHaveText('0') + ).not.toExist() }) it('Can report posts', async () => { diff --git a/__e2e__/tests/self-labeling.test.ts b/__e2e__/tests/self-labeling.test.ts index f629f91a8d..bba8ed484c 100644 --- a/__e2e__/tests/self-labeling.test.ts +++ b/__e2e__/tests/self-labeling.test.ts @@ -28,6 +28,7 @@ describe('Self-labeling', () => { await element(by.id('composerPublishBtn')).tap() await expect(element(by.id('composeFAB'))).toBeVisible() const posts = by.id('feedItem-by-alice.test') + await element(by.id('e2eRefreshHome')).tap() await expect( element(by.id('contentHider-embed').withAncestor(posts)).atIndex(0), ).toExist() diff --git a/__e2e__/tests/text-verification.test.ts b/__e2e__/tests/text-verification.test.ts index 3c556c2390..79b14aecaa 100644 --- a/__e2e__/tests/text-verification.test.ts +++ b/__e2e__/tests/text-verification.test.ts @@ -18,9 +18,10 @@ describe('Create account', () => { await device.takeScreenshot('1- opened create account screen') await element(by.id('selectServiceButton')).tap() await device.takeScreenshot('2- selected other server') + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() await device.takeScreenshot('3- input test server URL') await element(by.id('emailInput')).typeText('text-verification@test.com') await element(by.id('passwordInput')).typeText('hunter2') @@ -40,13 +41,7 @@ describe('Create account', () => { await element(by.id('nextBtn')).tap() - await expect(element(by.id('welcomeOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFeedsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('recommendedFollowsOnboarding'))).toBeVisible() - await element(by.id('continueBtn')).tap() - await expect(element(by.id('homeScreen'))).toBeVisible() + await expect(element(by.id('onboardingInterests'))).toBeVisible() }) it('failed text verification correctly goes back to the code input screen', async () => { @@ -57,9 +52,10 @@ describe('Create account', () => { await device.takeScreenshot('1- opened create account screen') await element(by.id('selectServiceButton')).tap() await device.takeScreenshot('2- selected other server') + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() await device.takeScreenshot('3- input test server URL') await element(by.id('emailInput')).typeText('text-verification2@test.com') await element(by.id('passwordInput')).typeText('hunter2') diff --git a/__e2e__/tests/thread-screen.test.ts b/__e2e__/tests/thread-screen.test.ts index e3cff12c9f..646c828fd3 100644 --- a/__e2e__/tests/thread-screen.test.ts +++ b/__e2e__/tests/thread-screen.test.ts @@ -49,7 +49,7 @@ describe('Thread screen', () => { const post = by.id('postThreadItem-by-carla.test') await expect( element(by.id('likeCount').withAncestor(post)).atIndex(0), - ).toHaveText('0') + ).not.toExist() await element(by.id('likeBtn').withAncestor(post)).atIndex(0).tap() await expect( element(by.id('likeCount').withAncestor(post)).atIndex(0), @@ -57,7 +57,7 @@ describe('Thread screen', () => { await element(by.id('likeBtn').withAncestor(post)).atIndex(0).tap() await expect( element(by.id('likeCount').withAncestor(post)).atIndex(0), - ).toHaveText('0') + ).not.toExist() }) it('Can repost the root post', async () => { @@ -85,7 +85,7 @@ describe('Thread screen', () => { const post = by.id('postThreadItem-by-carla.test') await expect( element(by.id('repostCount').withAncestor(post)).atIndex(0), - ).toHaveText('0') + ).not.toExist() await element(by.id('repostBtn').withAncestor(post)).atIndex(0).tap() await expect(element(by.id('repostModal'))).toBeVisible() await element(by.id('repostBtn').withAncestor(by.id('repostModal'))).tap() @@ -99,7 +99,7 @@ describe('Thread screen', () => { await expect(element(by.id('repostModal'))).not.toBeVisible() await expect( element(by.id('repostCount').withAncestor(post)).atIndex(0), - ).toHaveText('0') + ).not.toExist() }) it('Can report the root post', async () => { diff --git a/__e2e__/util.ts b/__e2e__/util.ts index 8c47406c07..a7869a2e1d 100644 --- a/__e2e__/util.ts +++ b/__e2e__/util.ts @@ -56,9 +56,10 @@ export async function login( if (takeScreenshots) { await device.takeScreenshot('2- opened service selector') } + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() if (takeScreenshots) { await device.takeScreenshot('3- input custom service') } diff --git a/app.config.js b/app.config.js index 701ca7fb79..e710420b09 100644 --- a/app.config.js +++ b/app.config.js @@ -11,24 +11,12 @@ const DARK_SPLASH_CONFIG = { resizeMode: 'cover', } -module.exports = function () { +module.exports = function (config) { /** * App version number. Should be incremented as part of a release cycle. */ const VERSION = pkg.version - /** - * iOS build number. Must be incremented for each TestFlight version. - * WARNING: Always leave this variable on line 24! If it is moved, you need to update ./scripts/bumpIosBuildNumber.sh - */ - const IOS_BUILD_NUMBER = '3' - - /** - * Android build number. Must be incremented for each release. - * WARNING: Always leave this variable on line 30! If it is moved, you need to update ./scripts/bumpAndroidBuildNumber.sh - */ - const ANDROID_VERSION_CODE = 61 - /** * Uses built-in Expo env vars * @@ -36,11 +24,10 @@ module.exports = function () { */ const PLATFORM = process.env.EAS_BUILD_PLATFORM - /** - * Additional granularity for the `dist` field - */ const DIST_BUILD_NUMBER = - PLATFORM === 'android' ? ANDROID_VERSION_CODE : IOS_BUILD_NUMBER + PLATFORM === 'android' + ? process.env.BSKY_ANDROID_VERSION_CODE + : process.env.BSKY_IOS_BUILD_NUMBER return { expo: { @@ -57,7 +44,6 @@ module.exports = function () { userInterfaceStyle: 'automatic', splash: SPLASH_CONFIG, ios: { - buildNumber: IOS_BUILD_NUMBER, supportsTablet: false, bundleIdentifier: 'xyz.blueskyweb.app', config: { @@ -85,7 +71,6 @@ module.exports = function () { backgroundColor: '#ffffff', }, android: { - versionCode: ANDROID_VERSION_CODE, icon: './assets/icon.png', adaptiveIcon: { foregroundImage: './assets/icon-android-foreground.png', diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index 7ac62222ec..4b1a824935 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -191,7 +191,7 @@ func serve(cctx *cli.Context) error { e.GET("/settings", server.WebGeneric) e.GET("/settings/language", server.WebGeneric) e.GET("/settings/app-passwords", server.WebGeneric) - e.GET("/settings/home-feed", server.WebGeneric) + e.GET("/settings/following-feed", server.WebGeneric) e.GET("/settings/saved-feeds", server.WebGeneric) e.GET("/settings/threads", server.WebGeneric) e.GET("/settings/external-embeds", server.WebGeneric) diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 7513d6fd27..e29e4032bb 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -4,6 +4,11 @@ + + + {%- block head_title -%}Bluesky{%- endblock -%} @@ -206,10 +211,11 @@ - + + {% block html_head_extra -%}{%- endblock %} diff --git a/eas.json b/eas.json index 75254d293e..2b4c7cb612 100644 --- a/eas.json +++ b/eas.json @@ -1,7 +1,8 @@ { "cli": { "version": ">= 3.8.1", - "promptToConfigurePushNotifications": false + "promptToConfigurePushNotifications": false, + "appVersionSource": "remote" }, "build": { "base": { @@ -28,7 +29,21 @@ "production": { "extends": "base", "ios": { - "resourceClass": "large" + "resourceClass": "large", + "autoIncrement": true + }, + "android": { + "autoIncrement": true + }, + "channel": "production" + }, + "github": { + "extends": "base", + "ios": { + "autoIncrement": true + }, + "android": { + "autoIncrement": true }, "channel": "production" } diff --git a/lingui.config.js b/lingui.config.js index ea458e645a..3916df5e62 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -13,6 +13,7 @@ module.exports = { 'uk', 'ca', 'zh-CN', + 'it', ], catalogs: [ { diff --git a/modules/react-native-ui-text-view/ios/RNUITextViewManager.m b/modules/react-native-ui-text-view/ios/RNUITextViewManager.m index 9a6f0285cb..32dfb3b285 100644 --- a/modules/react-native-ui-text-view/ios/RNUITextViewManager.m +++ b/modules/react-native-ui-text-view/ios/RNUITextViewManager.m @@ -4,6 +4,7 @@ RCT_REMAP_SHADOW_PROPERTY(numberOfLines, numberOfLines, NSInteger) RCT_REMAP_SHADOW_PROPERTY(allowsFontScaling, allowsFontScaling, BOOL) +RCT_EXPORT_VIEW_PROPERTY(numberOfLines, NSInteger) RCT_EXPORT_VIEW_PROPERTY(onTextLayout, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(ellipsizeMode, NSString) RCT_EXPORT_VIEW_PROPERTY(selectable, BOOL) diff --git a/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift b/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift index 4f3eda43c9..5a462f6b62 100644 --- a/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift +++ b/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift @@ -40,19 +40,19 @@ class RNUITextViewShadow: RCTShadowView { self.setAttributedText() } - // Tell yoga not to use flexbox + // Returning true here will tell Yoga to not use flexbox and instead use our custom measure func. override func isYogaLeafNode() -> Bool { return true } - // We only need to insert text children + // We should only insert children that are UITextView shadows override func insertReactSubview(_ subview: RCTShadowView!, at atIndex: Int) { if subview.isKind(of: RNUITextViewChildShadow.self) { super.insertReactSubview(subview, at: atIndex) } } - // Whenever the subvies update, set the text + // Every time the subviews change, we need to reformat and render the text. override func didUpdateReactSubviews() { self.setAttributedText() } @@ -64,7 +64,7 @@ class RNUITextViewShadow: RCTShadowView { return } - // Update the text + // Since we are inside the shadow view here, we have to find the real view and update the text. self.bridge.uiManager.addUIBlock { uiManager, viewRegistry in guard let textView = viewRegistry?[self.reactTag] as? RNUITextView else { return @@ -100,18 +100,25 @@ class RNUITextViewShadow: RCTShadowView { // Create the attributed string with the generic attributes let string = NSMutableAttributedString(string: child.text, attributes: attributes) - // Set the paragraph style attributes if necessary + // Set the paragraph style attributes if necessary. We can check this by seeing if the provided + // line height is not 0.0. let paragraphStyle = NSMutableParagraphStyle() if child.lineHeight != 0.0 { - paragraphStyle.minimumLineHeight = child.lineHeight - paragraphStyle.maximumLineHeight = child.lineHeight + // Whenever we change the line height for the text, we are also removing the DynamicType + // adjustment for line height. We need to get the multiplier and apply that to the + // line height. + let scaleMultiplier = scaledFontSize / child.fontSize + paragraphStyle.minimumLineHeight = child.lineHeight * scaleMultiplier + paragraphStyle.maximumLineHeight = child.lineHeight * scaleMultiplier + string.addAttribute( NSAttributedString.Key.paragraphStyle, value: paragraphStyle, range: NSMakeRange(0, string.length) ) - // Store that height + // To calcualte the size of the text without creating a new UILabel or UITextView, we have + // to store this line height for later. self.lineHeight = child.lineHeight } else { self.lineHeight = font.lineHeight @@ -124,24 +131,22 @@ class RNUITextViewShadow: RCTShadowView { self.dirtyLayout() } - // Create a YGSize based on the max width + // To create the needed size we need to: + // 1. Get the max size that we can use for the view + // 2. Calculate the height of the text based on that max size + // 3. Determine how many lines the text is, and limit that number if it exceeds the max + // 4. Set the frame size and return the YGSize. YGSize requires Float values while CGSize needs CGFloat func getNeededSize(maxWidth: Float) -> YGSize { - // Create the max size and figure out the size of the entire text let maxSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(MAXFLOAT)) let textSize = self.attributedText.boundingRect(with: maxSize, options: .usesLineFragmentOrigin, context: nil) - // Figure out how many total lines there are - let totalLines = Int(ceil(textSize.height / self.lineHeight)) + var totalLines = Int(ceil(textSize.height / self.lineHeight)) - // Default to the text size - var neededSize: CGSize = textSize.size - - // If the total lines > max number, return size with the max if self.numberOfLines != 0, totalLines > self.numberOfLines { - neededSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(CGFloat(self.numberOfLines) * self.lineHeight)) + totalLines = self.numberOfLines } - self.frameSize = neededSize - return YGSize(width: Float(neededSize.width), height: Float(neededSize.height)) + self.frameSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(CGFloat(totalLines) * self.lineHeight)) + return YGSize(width: Float(self.frameSize.width), height: Float(self.frameSize.height)) } } diff --git a/package.json b/package.json index 837a8d0e45..5c31f10f05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.68.0", + "version": "1.69.0", "private": true, "engines": { "node": ">=18" @@ -12,8 +12,12 @@ "android": "expo run:android", "ios": "expo run:ios", "web": "expo start --web", + "use-build-number": "./scripts/useBuildNumberEnv.sh", "build-web": "expo export:web && node ./scripts/post-web-build.js && cp -v ./web-build/static/js/*.* ./bskyweb/static/js/", - "build-all": "yarn intl:build && eas build --platform all", + "build-all": "yarn intl:build && yarn use-build-number eas build --platform all", + "build-ios": "yarn use-build-number eas build -p ios", + "build-android": "yarn use-build-number eas build -p android", + "build": "yarn use-build-number eas build", "start": "expo start --dev-client", "start:prod": "expo start --dev-client --no-dev --minify", "clean-cache": "rm -rf node_modules/.cache/babel-loader/*", @@ -36,10 +40,7 @@ "intl:check": "yarn intl:extract && git diff-index -G'(^[^\\*# /])|(^#\\w)|(^\\s+[^\\*#/])' HEAD || (echo '\nāš ļø i18n detected un-extracted translations\n' && exit 1)", "intl:extract": "lingui extract", "intl:compile": "lingui compile", - "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android", - "bump": "./scripts/bumpIosBuildNumber.sh && ./scripts/bumpAndroidBuildNumber.sh", - "bump:ios": "./scripts/bumpIosBuildNumber.sh", - "bump:android": "./scripts/bumpAndroidBuildNumber.sh" + "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android" }, "dependencies": { "@atproto/api": "^0.9.5", @@ -123,7 +124,6 @@ "js-sha256": "^0.9.0", "jwt-decode": "^4.0.0", "lande": "^1.0.10", - "libphonenumber-js": "^1.10.53", "lodash.chunk": "^4.2.0", "lodash.debounce": "^4.0.8", "lodash.isequal": "^4.5.0", @@ -137,7 +137,7 @@ "mobx": "^6.6.1", "mobx-react-lite": "^3.4.0", "mobx-utils": "^6.0.6", - "nanoid": "^5.0.2", + "nanoid": "^5.0.5", "normalize-url": "^8.0.0", "patch-package": "^6.5.1", "postinstall-postinstall": "^2.1.0", @@ -164,6 +164,7 @@ "react-native-safe-area-context": "4.8.2", "react-native-screens": "~3.29.0", "react-native-svg": "14.1.0", + "react-native-ui-text-view": "link:./modules/react-native-ui-text-view", "react-native-url-polyfill": "^1.3.0", "react-native-uuid": "^2.0.1", "react-native-version-number": "^0.3.6", @@ -178,8 +179,7 @@ "tlds": "^1.234.0", "use-deep-compare": "^1.1.0", "zeego": "^1.6.2", - "zod": "^3.20.2", - "react-native-ui-text-view": "link:./modules/react-native-ui-text-view" + "zod": "^3.20.2" }, "devDependencies": { "@atproto/dev-env": "^0.2.28", diff --git a/patches/@react-navigation+native+6.1.7.patch b/patches/@react-navigation+native+6.1.7.patch new file mode 100644 index 0000000000..b604e2c1aa --- /dev/null +++ b/patches/@react-navigation+native+6.1.7.patch @@ -0,0 +1,56 @@ +diff --git a/node_modules/@react-navigation/native/lib/commonjs/useLinking.js b/node_modules/@react-navigation/native/lib/commonjs/useLinking.js +index ef4f368..2b0da35 100644 +--- a/node_modules/@react-navigation/native/lib/commonjs/useLinking.js ++++ b/node_modules/@react-navigation/native/lib/commonjs/useLinking.js +@@ -273,8 +273,12 @@ function useLinking(ref, _ref) { + }); + const currentIndex = history.index; + try { +- if (nextIndex !== -1 && nextIndex < currentIndex) { +- // An existing entry for this path exists and it's less than current index, go back to that ++ if ( ++ nextIndex !== -1 && ++ nextIndex < currentIndex && ++ // We should only go back if the entry exists and it's less than current index ++ history.get(nextIndex - currentIndex) ++ ) { // An existing entry for this path exists and it's less than current index, go back to that + await history.go(nextIndex - currentIndex); + } else { + // We couldn't find an existing entry to go back to, so we'll go back by the delta +diff --git a/node_modules/@react-navigation/native/lib/module/useLinking.js b/node_modules/@react-navigation/native/lib/module/useLinking.js +index 62a3b43..11a5a28 100644 +--- a/node_modules/@react-navigation/native/lib/module/useLinking.js ++++ b/node_modules/@react-navigation/native/lib/module/useLinking.js +@@ -264,8 +264,12 @@ export default function useLinking(ref, _ref) { + }); + const currentIndex = history.index; + try { +- if (nextIndex !== -1 && nextIndex < currentIndex) { +- // An existing entry for this path exists and it's less than current index, go back to that ++ if ( ++ nextIndex !== -1 && ++ nextIndex < currentIndex && ++ // We should only go back if the entry exists and it's less than current index ++ history.get(nextIndex - currentIndex) ++ ) { // An existing entry for this path exists and it's less than current index, go back to that + await history.go(nextIndex - currentIndex); + } else { + // We couldn't find an existing entry to go back to, so we'll go back by the delta +diff --git a/node_modules/@react-navigation/native/src/useLinking.tsx b/node_modules/@react-navigation/native/src/useLinking.tsx +index 3db40b7..9ba4ecd 100644 +--- a/node_modules/@react-navigation/native/src/useLinking.tsx ++++ b/node_modules/@react-navigation/native/src/useLinking.tsx +@@ -381,7 +381,12 @@ export default function useLinking( + const currentIndex = history.index; + + try { +- if (nextIndex !== -1 && nextIndex < currentIndex) { ++ if ( ++ nextIndex !== -1 && ++ nextIndex < currentIndex && ++ // We should only go back if the entry exists and it's less than current index ++ history.get(nextIndex - currentIndex) ++ ) { + // An existing entry for this path exists and it's less than current index, go back to that + await history.go(nextIndex - currentIndex); + } else { diff --git a/patches/@react-navigation+native+6.1.7.patch.md b/patches/@react-navigation+native+6.1.7.patch.md new file mode 100644 index 0000000000..60b0d4e140 --- /dev/null +++ b/patches/@react-navigation+native+6.1.7.patch.md @@ -0,0 +1,5 @@ +# React Navigation history bug patch + +This patches react-navigation to fix the issues in https://github.com/bluesky-social/social-app/issues/710. + +This is based on the PR found at https://github.com/react-navigation/react-navigation/pull/11833 diff --git a/scripts/bumpAndroidBuildNumber.sh b/scripts/bumpAndroidBuildNumber.sh deleted file mode 100755 index 105f1296d4..0000000000 --- a/scripts/bumpAndroidBuildNumber.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# The number here should always be the line number the iOS build variable is on -line=$(sed "30q;d" ./app.config.js) -currentBuildNumber=$(echo "$line" | grep -oE '[0-9]+([.][0-9]+)?') -newBuildNumber=$((currentBuildNumber+1)) -newBuildVariable="const ANDROID_VERSION_CODE = '$newBuildNumber'" -sed -i.bak "30s/.*/ $newBuildVariable/" ./app.config.js -rm -rf ./app.config.js.bak - -echo "Android build number bumped to $newBuildNumber" diff --git a/scripts/bumpIosBuildNumber.sh b/scripts/bumpIosBuildNumber.sh deleted file mode 100755 index b78d2e69db..0000000000 --- a/scripts/bumpIosBuildNumber.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# The number here should always be the line number the iOS build variable is on -line=$(sed "24q;d" ./app.config.js) -currentBuildNumber=$(echo "$line" | grep -oE '[0-9]+([.][0-9]+)?') -newBuildNumber=$((currentBuildNumber+1)) -newBuildVariable="const IOS_BUILD_NUMBER = '$newBuildNumber'" -sed -i.bak "24s/.*/ $newBuildVariable/" ./app.config.js -rm -rf ./app.config.js.bak - -echo "iOS build number bumped to $newBuildNumber" diff --git a/scripts/useBuildNumberEnv.sh b/scripts/useBuildNumberEnv.sh new file mode 100755 index 0000000000..fe273d3948 --- /dev/null +++ b/scripts/useBuildNumberEnv.sh @@ -0,0 +1,11 @@ +#!/bin/bash +outputIos=$(eas build:version:get -p ios) +outputAndroid=$(eas build:version:get -p android) +currentIosVersion=${outputIos#*buildNumber - } +currentAndroidVersion=${outputAndroid#*versionCode - } + +BSKY_IOS_BUILD_NUMBER=$((currentIosVersion+1)) +BSKY_ANDROID_VERSION_CODE=$((currentAndroidVersion+1)) + +bash -c "BSKY_IOS_BUILD_NUMBER=$BSKY_IOS_BUILD_NUMBER BSKY_ANDROID_VERSION_CODE=$BSKY_ANDROID_VERSION_CODE $*" + diff --git a/src/Navigation.tsx b/src/Navigation.tsx index f4960f51b9..728930a81b 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -72,7 +72,7 @@ import {AppPasswords} from 'view/screens/AppPasswords' import {ModerationMutedAccounts} from 'view/screens/ModerationMutedAccounts' import {ModerationBlockedAccounts} from 'view/screens/ModerationBlockedAccounts' import {SavedFeeds} from 'view/screens/SavedFeeds' -import {PreferencesHomeFeed} from 'view/screens/PreferencesHomeFeed' +import {PreferencesFollowingFeed} from 'view/screens/PreferencesFollowingFeed' import {PreferencesThreads} from 'view/screens/PreferencesThreads' import {PreferencesExternalEmbeds} from '#/view/screens/PreferencesExternalEmbeds' import {createNativeStackNavigatorWithAuth} from './view/shell/createNativeStackNavigatorWithAuth' @@ -248,9 +248,12 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { options={{title: title(msg`Edit My Feeds`), requireAuth: true}} /> PreferencesHomeFeed} - options={{title: title(msg`Home Feed Preferences`), requireAuth: true}} + name="PreferencesFollowingFeed" + getComponent={() => PreferencesFollowingFeed} + options={{ + title: title(msg`Following Feed Preferences`), + requireAuth: true, + }} /> ) { isLayoutReady && reduceMotion !== undefined - const {colorMode} = useThemePrefs() const colorScheme = useColorScheme() - const themeName = colorMode === 'system' ? colorScheme : colorMode - const isDarkMode = themeName === 'dark' + const isDarkMode = colorScheme === 'dark' const logoAnimation = useAnimatedStyle(() => { return { @@ -263,7 +260,12 @@ export function Splash(props: React.PropsWithChildren) { )} diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index 6969803bd6..b849010039 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -176,43 +176,59 @@ export const atoms = { }, text_2xs: { fontSize: tokens.fontSize._2xs, + letterSpacing: 0.25, }, text_xs: { fontSize: tokens.fontSize.xs, + letterSpacing: 0.25, }, text_sm: { fontSize: tokens.fontSize.sm, + letterSpacing: 0.25, }, text_md: { fontSize: tokens.fontSize.md, + letterSpacing: 0.25, }, text_lg: { fontSize: tokens.fontSize.lg, + letterSpacing: 0.25, }, text_xl: { fontSize: tokens.fontSize.xl, + letterSpacing: 0.25, }, text_2xl: { fontSize: tokens.fontSize._2xl, + letterSpacing: 0.25, }, text_3xl: { fontSize: tokens.fontSize._3xl, + letterSpacing: 0.25, }, text_4xl: { fontSize: tokens.fontSize._4xl, + letterSpacing: 0.25, }, text_5xl: { fontSize: tokens.fontSize._5xl, + letterSpacing: 0.25, }, leading_tight: { lineHeight: 1.15, }, leading_snug: { - lineHeight: 1.25, + lineHeight: 1.3, }, leading_normal: { lineHeight: 1.5, }, + tracking_normal: { + letterSpacing: 0, + }, + tracking_wide: { + letterSpacing: 0.25, + }, font_normal: { fontWeight: tokens.fontWeight.normal, }, diff --git a/src/alf/themes.ts b/src/alf/themes.ts index 72e08e8941..da96f6eff6 100644 --- a/src/alf/themes.ts +++ b/src/alf/themes.ts @@ -73,19 +73,19 @@ export const darkPalette: Palette = { white: tokens.color.gray_0, black: tokens.color.trueBlack, - contrast_25: tokens.color.gray_1000, - contrast_50: tokens.color.gray_975, - contrast_100: tokens.color.gray_950, - contrast_200: tokens.color.gray_900, - contrast_300: tokens.color.gray_800, - contrast_400: tokens.color.gray_700, - contrast_500: tokens.color.gray_600, - contrast_600: tokens.color.gray_500, - contrast_700: tokens.color.gray_400, - contrast_800: tokens.color.gray_300, - contrast_900: tokens.color.gray_200, - contrast_950: tokens.color.gray_100, - contrast_975: tokens.color.gray_50, + contrast_25: `hsl(211, 28%, 8%)`, + contrast_50: `hsl(211, 28%, 11%)`, + contrast_100: `hsl(211, 28%, 16%)`, + contrast_200: `hsl(211, 28%, 24%)`, + contrast_300: `hsl(211, 24%, 31%)`, + contrast_400: `hsl(211, 24%, 38%)`, + contrast_500: `hsl(211, 20%, 44%)`, + contrast_600: `hsl(211, 20%, 55%)`, + contrast_700: `hsl(211, 20%, 63%)`, + contrast_800: `hsl(211, 20%, 71%)`, + contrast_900: `hsl(211, 20%, 79%)`, + contrast_950: `hsl(211, 20%, 87%)`, + contrast_975: `hsl(211, 20%, 95%)`, primary_25: tokens.color.blue_25, primary_50: tokens.color.blue_50, @@ -132,21 +132,28 @@ export const darkPalette: Palette = { export const dimPalette: Palette = { ...darkPalette, - black: tokens.color.gray_1000, + black: `hsl(211, 28%, 12%)`, - contrast_25: tokens.color.gray_975, - contrast_50: tokens.color.gray_950, - contrast_100: tokens.color.gray_900, - contrast_200: tokens.color.gray_800, - contrast_300: tokens.color.gray_700, - contrast_400: tokens.color.gray_600, - contrast_500: tokens.color.gray_500, - contrast_600: tokens.color.gray_400, - contrast_700: tokens.color.gray_300, - contrast_800: tokens.color.gray_200, - contrast_900: tokens.color.gray_100, - contrast_950: tokens.color.gray_50, - contrast_975: tokens.color.gray_25, + contrast_25: `hsl(211, 28%, 15%)`, + contrast_50: `hsl(211, 28%, 18%)`, + contrast_100: `hsl(211, 28%, 24%)`, + contrast_200: `hsl(211, 28%, 27%)`, + contrast_300: `hsl(211, 24%, 34%)`, + contrast_400: `hsl(211, 24%, 41%)`, + contrast_500: `hsl(211, 20%, 52%)`, + contrast_600: `hsl(211, 20%, 55%)`, + contrast_700: `hsl(211, 20%, 67%)`, + contrast_800: `hsl(211, 20%, 71%)`, + contrast_900: `hsl(211, 20%, 79%)`, + contrast_950: `hsl(211, 20%, 87%)`, + contrast_975: `hsl(211, 20%, 95%)`, + + primary_600: `hsl(211, 95%, 39%)`, + primary_700: `hsl(211, 90%, 30%)`, + primary_800: `hsl(211, 90%, 23%)`, + primary_900: `hsl(211, 80%, 16%)`, + primary_950: `hsl(211, 80%, 13%)`, + primary_975: `hsl(211, 80%, 10%)`, } as const export const light = { @@ -325,6 +332,7 @@ export const dark: Theme = { export const dim: Theme = { ...dark, name: 'dim', + palette: dimPalette, atoms: { ...dark.atoms, text: { @@ -393,5 +401,20 @@ export const dim: Theme = { border_contrast_high: { borderColor: dimPalette.contrast_300, }, + shadow_sm: { + ...atoms.shadow_sm, + shadowOpacity: 0.7, + shadowColor: `hsl(211, 28%, 3%)`, + }, + shadow_md: { + ...atoms.shadow_md, + shadowOpacity: 0.7, + shadowColor: `hsl(211, 28%, 3%)`, + }, + shadow_lg: { + ...atoms.shadow_lg, + shadowOpacity: 0.7, + shadowColor: `hsl(211, 28%, 3%)`, + }, }, } diff --git a/src/alf/util/useColorModeTheme.ts b/src/alf/util/useColorModeTheme.ts index 48cf904fe1..4f8921bf9b 100644 --- a/src/alf/util/useColorModeTheme.ts +++ b/src/alf/util/useColorModeTheme.ts @@ -13,7 +13,7 @@ export function useColorModeTheme(): ThemeName { React.useLayoutEffect(() => { const theme = getThemeName(colorScheme, colorMode, darkTheme) updateDocument(theme) - updateSystemBackground(theme) + SystemUI.setBackgroundColorAsync(getBackgroundColor(theme)) }, [colorMode, colorScheme, darkTheme]) return React.useMemo( @@ -42,23 +42,24 @@ function updateDocument(theme: ThemeName) { if (isWeb && typeof window !== 'undefined') { // @ts-ignore web only const html = window.document.documentElement + // @ts-ignore web only + const meta = window.document.querySelector('meta[name="theme-color"]') + // remove any other color mode classes html.className = html.className.replace(/(theme)--\w+/g, '') - html.classList.add(`theme--${theme}`) + // set color to 'theme-color' meta tag + meta?.setAttribute('content', getBackgroundColor(theme)) } } -function updateSystemBackground(theme: ThemeName) { +function getBackgroundColor(theme: ThemeName): string { switch (theme) { case 'light': - SystemUI.setBackgroundColorAsync(light.atoms.bg.backgroundColor) - break + return light.atoms.bg.backgroundColor case 'dark': - SystemUI.setBackgroundColorAsync(dark.atoms.bg.backgroundColor) - break + return dark.atoms.bg.backgroundColor case 'dim': - SystemUI.setBackgroundColorAsync(dim.atoms.bg.backgroundColor) - break + return dim.atoms.bg.backgroundColor } } diff --git a/src/components/Button.tsx b/src/components/Button.tsx index b9820e29a1..4addd28a3b 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -55,6 +55,8 @@ export type ButtonState = { disabled: boolean } +export type ButtonContext = VariantProps & ButtonState + export type ButtonProps = Pick< PressableProps, 'disabled' | 'onPress' | 'testID' @@ -67,7 +69,7 @@ export type ButtonProps = Pick< children: | React.ReactNode | string - | ((state: VariantProps & ButtonState) => React.ReactNode | string) + | ((context: ButtonContext) => React.ReactNode | string) } export type ButtonTextProps = TextProps & VariantProps & {disabled?: boolean} @@ -351,7 +353,7 @@ export function Button({ } }, [variant, color]) - const context = React.useMemo( + const context = React.useMemo( () => ({ ...state, variant, diff --git a/src/components/Dialog/context.ts b/src/components/Dialog/context.ts index b28b9f5a25..f0c7c983a9 100644 --- a/src/components/Dialog/context.ts +++ b/src/components/Dialog/context.ts @@ -1,7 +1,11 @@ import React from 'react' import {useDialogStateContext} from '#/state/dialogs' -import {DialogContextProps, DialogControlProps} from '#/components/Dialog/types' +import { + DialogContextProps, + DialogControlProps, + DialogOuterProps, +} from '#/components/Dialog/types' export const Context = React.createContext({ close: () => {}, @@ -11,7 +15,7 @@ export function useDialogContext() { return React.useContext(Context) } -export function useDialogControl() { +export function useDialogControl(): DialogOuterProps['control'] { const id = React.useId() const control = React.useRef({ open: () => {}, @@ -30,6 +34,6 @@ export function useDialogControl() { return { ref: control, open: () => control.current.open(), - close: () => control.current.close(), + close: cb => control.current.close(cb), } } diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 692bd4b0ab..27f43afd3a 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -8,7 +8,7 @@ import BottomSheet, { } from '@gorhom/bottom-sheet' import {useSafeAreaInsets} from 'react-native-safe-area-context' -import {useTheme, atoms as a} from '#/alf' +import {useTheme, atoms as a, flatten} from '#/alf' import {Portal} from '#/components/Portal' import {createInput} from '#/components/forms/TextField' @@ -29,19 +29,36 @@ export function Outer({ control, onClose, nativeOptions, - defaultOpen, }: React.PropsWithChildren) { const t = useTheme() const sheet = React.useRef(null) const sheetOptions = nativeOptions?.sheet || {} const hasSnapPoints = !!sheetOptions.snapPoints const insets = useSafeAreaInsets() + const closeCallback = React.useRef<() => void>() - const open = React.useCallback(({index} = {}) => { - sheet.current?.snapToIndex(index || 0) - }, []) + /* + * Used to manage open/closed, but index is otherwise handled internally by `BottomSheet` + */ + const [openIndex, setOpenIndex] = React.useState(-1) - const close = React.useCallback(() => { + /* + * `openIndex` is the index of the snap point to open the bottom sheet to. If >0, the bottom sheet is open. + */ + const isOpen = openIndex > -1 + + const open = React.useCallback( + ({index} = {}) => { + // can be set to any index of `snapPoints`, but `0` is the first i.e. "open" + setOpenIndex(index || 0) + }, + [setOpenIndex], + ) + + const close = React.useCallback(cb => { + if (cb) { + closeCallback.current = cb + } sheet.current?.close() }, []) @@ -57,60 +74,66 @@ export function Outer({ const onChange = React.useCallback( (index: number) => { if (index === -1) { + closeCallback.current?.() + closeCallback.current = undefined onClose?.() + setOpenIndex(-1) } }, - [onClose], + [onClose, setOpenIndex], ) const context = React.useMemo(() => ({close}), [close]) return ( - - ( - - )} - handleIndicatorStyle={{backgroundColor: t.palette.primary_500}} - handleStyle={{display: 'none'}} - onChange={onChange}> - - - {children} - - - + isOpen && ( + + ( + + )} + handleIndicatorStyle={{backgroundColor: t.palette.primary_500}} + handleStyle={{display: 'none'}} + onChange={onChange}> + + + {children} + + + + ) ) } -// TODO a11y props here, or is that handled by the sheet? -export function Inner(props: DialogInnerProps) { +export function Inner({children, style}: DialogInnerProps) { const insets = useSafeAreaInsets() return ( - {props.children} + {children} ) } -export function ScrollableInner(props: DialogInnerProps) { +export function ScrollableInner({children, style}: DialogInnerProps) { const insets = useSafeAreaInsets() return ( - {props.children} + {children} ) diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 94e0891819..79441fb5e1 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -5,7 +5,7 @@ import Animated, {FadeInDown, FadeIn} from 'react-native-reanimated' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useTheme, atoms as a, useBreakpoints, web} from '#/alf' +import {useTheme, atoms as a, useBreakpoints, web, flatten} from '#/alf' import {Portal} from '#/components/Portal' import {DialogOuterProps, DialogInnerProps} from '#/components/Dialog/types' @@ -23,12 +23,11 @@ export function Outer({ children, control, onClose, - defaultOpen, }: React.PropsWithChildren) { const {_} = useLingui() const t = useTheme() const {gtMobile} = useBreakpoints() - const [isOpen, setIsOpen] = React.useState(defaultOpen) + const [isOpen, setIsOpen] = React.useState(false) const [isVisible, setIsVisible] = React.useState(true) const open = React.useCallback(() => { @@ -159,7 +158,7 @@ export function Inner({ shadowOpacity: t.name === 'light' ? 0.1 : 0.4, shadowRadius: 30, }, - ...(Array.isArray(style) ? style : [style || {}]), + flatten(style), ]}> {children} diff --git a/src/components/Dialog/types.ts b/src/components/Dialog/types.ts index 9ea477a2f7..75ba825ac9 100644 --- a/src/components/Dialog/types.ts +++ b/src/components/Dialog/types.ts @@ -1,27 +1,34 @@ import React from 'react' -import type {ViewStyle, AccessibilityProps} from 'react-native' +import type {AccessibilityProps} from 'react-native' import {BottomSheetProps} from '@gorhom/bottom-sheet' +import {ViewStyleProp} from '#/alf' + type A11yProps = Required export type DialogContextProps = { close: () => void } -export type DialogControlOpenOptions = {index?: number} +export type DialogControlOpenOptions = { + /** + * NATIVE ONLY + * + * Optional index of the snap point to open the bottom sheet to. Defaults to + * 0, which is the first snap point (i.e. "open"). + */ + index?: number +} export type DialogControlProps = { open: (options?: DialogControlOpenOptions) => void - close: () => void + close: (callback?: () => void) => void } export type DialogOuterProps = { - defaultOpen?: boolean control: { ref: React.RefObject - open: (index?: number) => void - close: () => void - } + } & DialogControlProps onClose?: () => void nativeOptions?: { sheet?: Omit @@ -29,10 +36,7 @@ export type DialogOuterProps = { webOptions?: {} } -type DialogInnerPropsBase = React.PropsWithChildren<{ - style?: ViewStyle -}> & - T +type DialogInnerPropsBase = React.PropsWithChildren & T export type DialogInnerProps = | DialogInnerPropsBase<{ label?: undefined diff --git a/src/screens/Onboarding/IconCircle.tsx b/src/components/IconCircle.tsx similarity index 91% rename from src/screens/Onboarding/IconCircle.tsx rename to src/components/IconCircle.tsx index a54c8b4e4e..aa779e37f3 100644 --- a/src/screens/Onboarding/IconCircle.tsx +++ b/src/components/IconCircle.tsx @@ -30,8 +30,8 @@ export function IconCircle({ a.align_center, a.rounded_full, { - width: 64, - height: 64, + width: size === 'lg' ? 52 : 64, + height: size === 'lg' ? 52 : 64, backgroundColor: t.name === 'light' ? t.palette.primary_50 : t.palette.primary_950, }, diff --git a/src/components/Link.tsx b/src/components/Link.tsx index 0cd68d014c..0a654fed28 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -1,9 +1,5 @@ import React from 'react' -import { - GestureResponderEvent, - Linking, - TouchableWithoutFeedback, -} from 'react-native' +import {GestureResponderEvent} from 'react-native' import { useLinkProps, useNavigation, @@ -23,7 +19,8 @@ import { } from '#/lib/strings/url-helpers' import {useModalControls} from '#/state/modals' import {router} from '#/routes' -import {Text} from '#/components/Typography' +import {Text, TextProps} from '#/components/Typography' +import {useOpenLink} from 'state/preferences/in-app-browser' /** * Only available within a `Link`, since that inherits from `Button`. @@ -37,6 +34,11 @@ type BaseLinkProps = Pick< > & { testID?: string + /** + * Label for a11y. Defaults to the href. + */ + label?: string + /** * The React Navigation `StackAction` to perform when the link is pressed. */ @@ -50,11 +52,17 @@ type BaseLinkProps = Pick< warnOnMismatchingTextChild?: boolean /** - * Callback for when the link is pressed. + * Callback for when the link is pressed. Prevent default and return `false` + * to exit early and prevent navigation. * * DO NOT use this for navigation, that's what the `to` prop is for. */ - onPress?: (e: GestureResponderEvent) => void + onPress?: (e: GestureResponderEvent) => void | false + + /** + * Web-only attribute. Sets `download` attr on web. + */ + download?: string } export function useLink({ @@ -73,10 +81,13 @@ export function useLink({ }) const isExternal = isExternalUrl(href) const {openModal, closeModal} = useModalControls() + const openLink = useOpenLink() const onPress = React.useCallback( (e: GestureResponderEvent) => { - outerOnPress?.(e) + const exitEarlyIfFalse = outerOnPress?.(e) + + if (exitEarlyIfFalse === false) return const requiresWarning = Boolean( warnOnMismatchingTextChild && @@ -97,7 +108,7 @@ export function useLink({ e.preventDefault() if (isExternal) { - Linking.openURL(href) + openLink(href) } else { /** * A `GestureResponderEvent`, but cast to `any` to avoid using a bunch @@ -115,7 +126,7 @@ export function useLink({ href.startsWith('http') || href.startsWith('mailto') ) { - Linking.openURL(href) + openLink(href) } else { closeModal() // close any active modals @@ -136,15 +147,16 @@ export function useLink({ } }, [ - href, - isExternal, - warnOnMismatchingTextChild, - navigation, - action, - displayText, - closeModal, - openModal, outerOnPress, + warnOnMismatchingTextChild, + displayText, + isExternal, + href, + openModal, + openLink, + closeModal, + action, + navigation, ], ) @@ -156,12 +168,7 @@ export function useLink({ } export type LinkProps = Omit & - Omit & { - /** - * Label for a11y. Defaults to the href. - */ - label?: string - } + Omit /** * A interactive element that renders as a `` tag on the web. On mobile it @@ -176,6 +183,7 @@ export function Link({ to, action = 'push', onPress: outerOnPress, + download, ...rest }: LinkProps) { const {href, isExternal, onPress} = useLink({ @@ -193,14 +201,15 @@ export function Link({ role="link" accessibilityRole="link" href={href} - onPress={onPress} + onPress={download ? undefined : onPress} {...web({ hrefAttrs: { - target: isExternal ? 'blank' : undefined, + target: download ? undefined : isExternal ? 'blank' : undefined, rel: isExternal ? 'noopener noreferrer' : undefined, + download, }, dataSet: { - // default to no underline, apply this ourselves + // no underline, only `InlineLink` has underlines noUnderline: '1', }, })}> @@ -210,13 +219,7 @@ export function Link({ } export type InlineLinkProps = React.PropsWithChildren< - BaseLinkProps & - TextStyleProp & { - /** - * Label for a11y. Defaults to the href. - */ - label?: string - } + BaseLinkProps & TextStyleProp & Pick > export function InlineLink({ @@ -226,6 +229,8 @@ export function InlineLink({ warnOnMismatchingTextChild, style, onPress: outerOnPress, + download, + selectable, ...rest }: InlineLinkProps) { const t = useTheme() @@ -237,44 +242,55 @@ export function InlineLink({ warnOnMismatchingTextChild, onPress: outerOnPress, }) + const { + state: hovered, + onIn: onHoverIn, + onOut: onHoverOut, + } = useInteractionState() const {state: focused, onIn: onFocus, onOut: onBlur} = useInteractionState() const { state: pressed, onIn: onPressIn, onOut: onPressOut, } = useInteractionState() + const flattenedStyle = flatten(style) return ( - - - {children} - - + onBlur={onBlur} + onMouseEnter={onHoverIn} + onMouseLeave={onHoverOut} + accessibilityRole="link" + href={href} + {...web({ + hrefAttrs: { + target: download ? undefined : isExternal ? 'blank' : undefined, + rel: isExternal ? 'noopener noreferrer' : undefined, + download, + }, + dataSet: { + // default to no underline, apply this ourselves + noUnderline: '1', + }, + })}> + {children} + ) } diff --git a/src/components/Loader.tsx b/src/components/Loader.tsx index 031af03775..b9f399f953 100644 --- a/src/components/Loader.tsx +++ b/src/components/Loader.tsx @@ -7,7 +7,7 @@ import Animated, { withTiming, } from 'react-native-reanimated' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useTheme, flatten} from '#/alf' import {Props, useCommonSVGProps} from '#/components/icons/common' import {Loader_Stroke2_Corner0_Rounded as Icon} from '#/components/icons/Loader' @@ -38,7 +38,12 @@ export function Loader(props: Props) { ]}> ) diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index 2c79d27cf1..411679102b 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -41,7 +41,7 @@ export function Outer({ + style={[{width: 'auto', maxWidth: 400}]}> {children} diff --git a/src/components/RichText.tsx b/src/components/RichText.tsx index 068ee99e07..c72fcabdd8 100644 --- a/src/components/RichText.tsx +++ b/src/components/RichText.tsx @@ -1,9 +1,9 @@ import React from 'react' import {RichText as RichTextAPI, AppBskyRichtextFacet} from '@atproto/api' -import {atoms as a, TextStyleProp} from '#/alf' +import {atoms as a, TextStyleProp, flatten} from '#/alf' import {InlineLink} from '#/components/Link' -import {Text} from '#/components/Typography' +import {Text, TextProps} from '#/components/Typography' import {toShortUrl} from 'lib/strings/url-helpers' import {getAgent} from '#/state/session' @@ -16,18 +16,20 @@ export function RichText({ numberOfLines, disableLinks, resolveFacets = false, -}: TextStyleProp & { - value: RichTextAPI | string - testID?: string - numberOfLines?: number - disableLinks?: boolean - resolveFacets?: boolean -}) { + selectable, +}: TextStyleProp & + Pick & { + value: RichTextAPI | string + testID?: string + numberOfLines?: number + disableLinks?: boolean + resolveFacets?: boolean + }) { const detected = React.useRef(false) const [richText, setRichText] = React.useState(() => value instanceof RichTextAPI ? value : new RichTextAPI({text: value}), ) - const styles = [a.leading_normal, style] + const styles = [a.leading_snug, flatten(style)] React.useEffect(() => { if (!resolveFacets) return @@ -50,6 +52,7 @@ export function RichText({ if (text.length <= 5 && /^\p{Extended_Pictographic}+$/u.test(text)) { return ( + return selectable && isIOS ? ( + + ) : ( + + ) } export function createHeadingElement({level}: {level: number}) { return function HeadingElement({style, ...rest}: TextProps) { - const t = useTheme() const attr = web({ role: 'heading', 'aria-level': level, }) || {} - return ( - - ) + return } } @@ -78,21 +84,15 @@ export const H4 = createHeadingElement({level: 4}) export const H5 = createHeadingElement({level: 5}) export const H6 = createHeadingElement({level: 6}) export function P({style, ...rest}: TextProps) { - const t = useTheme() const attr = web({ role: 'paragraph', }) || {} return ( - ) } diff --git a/src/components/forms/DateField/index.android.tsx b/src/components/forms/DateField/index.android.tsx index 83fa285f5f..cddb643d61 100644 --- a/src/components/forms/DateField/index.android.tsx +++ b/src/components/forms/DateField/index.android.tsx @@ -98,7 +98,7 @@ export function DateField({ timeZoneName={'Etc/UTC'} display="spinner" // @ts-ignore applies in iOS only -prf - themeVariant={t.name === 'dark' ? 'dark' : 'light'} + themeVariant={t.name === 'light' ? 'light' : 'dark'} value={new Date(value)} onChange={onChangeInternal} /> diff --git a/src/components/forms/DateField/index.tsx b/src/components/forms/DateField/index.tsx index c359a9d460..e65936e0ea 100644 --- a/src/components/forms/DateField/index.tsx +++ b/src/components/forms/DateField/index.tsx @@ -47,7 +47,7 @@ export function DateField({ mode="date" timeZoneName={'Etc/UTC'} display="spinner" - themeVariant={t.name === 'dark' ? 'dark' : 'light'} + themeVariant={t.name === 'light' ? 'light' : 'dark'} value={new Date(value)} onChange={onChangeInternal} /> diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 93f40ba5a4..ebf2e47506 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -5,15 +5,13 @@ import { TextInputProps, TextStyle, ViewStyle, - Pressable, StyleSheet, AccessibilityProps, } from 'react-native' import {HITSLOP_20} from 'lib/constants' -import {isWeb} from '#/platform/detection' -import {useTheme, atoms as a, web, tokens, android, flatten} from '#/alf' -import {Text, leading} from '#/components/Typography' +import {useTheme, atoms as a, web, tokens, android} from '#/alf' +import {Text} from '#/components/Typography' import {useInteractionState} from '#/components/hooks/useInteractionState' import {Props as SVGIconProps} from '#/components/icons/common' @@ -41,7 +39,6 @@ export type RootProps = React.PropsWithChildren<{isInvalid?: boolean}> export function Root({children, isInvalid = false}: RootProps) { const inputRef = React.useRef(null) - const rootRef = React.useRef(null) const { state: hovered, onIn: onHoverIn, @@ -72,35 +69,17 @@ export function Root({children, isInvalid = false}: RootProps) { ], ) - React.useLayoutEffect(() => { - const root = rootRef.current - if (!root || !isWeb) return - // @ts-ignore web only - root.tabIndex = -1 - }, []) - return ( - inputRef.current?.focus()} - onHoverIn={onHoverIn} - onHoverOut={onHoverOut}> + inputRef.current?.focus(), + onMouseOver: onHoverIn, + onMouseOut: onHoverOut, + })}> {children} - + ) } @@ -149,7 +128,6 @@ export type InputProps = Omit & { value: string onChangeText: (value: string) => void isInvalid?: boolean - disabled?: boolean } export function createInput(Component: typeof TextInput) { @@ -188,7 +166,6 @@ export function createInput(Component: typeof TextInput) { @@ -317,7 +294,6 @@ export function Suffix({ const ctx = React.useContext(Context) return ( void] { - const [enabled, setEnabled] = useState(false) - - useEffect(() => { - async function check() { - if (await isEnabled()) { - setEnabled(true) - } - } - check() - }, []) - - const toggle = useCallback(() => { - if (!enabled) { - Storage.saveString('set-header-x-appview-proxy', 'yes') - agent.api.xrpc.setHeader('x-appview-proxy', 'true') - setEnabled(true) - } else { - Storage.remove('set-header-x-appview-proxy') - agent.api.xrpc.unsetHeader('x-appview-proxy') - setEnabled(false) - } - }, [setEnabled, enabled, agent]) - - return [enabled, toggle] -} - -export function setDebugHeader(agent: BskyAgent, enabled: boolean) { - if (enabled) { - Storage.saveString('set-header-x-appview-proxy', 'yes') - agent.api.xrpc.setHeader('x-appview-proxy', 'true') - } else { - Storage.remove('set-header-x-appview-proxy') - agent.api.xrpc.unsetHeader('x-appview-proxy') - } -} - -export async function applyDebugHeader(agent: BskyAgent) { - if (await isEnabled()) { - agent.api.xrpc.setHeader('x-appview-proxy', 'true') - } -} - -async function isEnabled() { - return (await Storage.loadString('set-header-x-appview-proxy')) === 'yes' -} diff --git a/src/lib/constants.ts b/src/lib/constants.ts index aec8338d03..c8e5273d47 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -3,9 +3,8 @@ import {Insets, Platform} from 'react-native' export const LOCAL_DEV_SERVICE = Platform.OS === 'android' ? 'http://10.0.2.2:2583' : 'http://localhost:2583' export const STAGING_SERVICE = 'https://staging.bsky.dev' -export const PROD_SERVICE = 'https://bsky.social' -export const DEFAULT_SERVICE = PROD_SERVICE - +export const BSKY_SERVICE = 'https://bsky.social' +export const DEFAULT_SERVICE = BSKY_SERVICE const HELP_DESK_LANG = 'en-us' export const HELP_DESK_URL = `https://blueskyweb.zendesk.com/hc/${HELP_DESK_LANG}` @@ -36,92 +35,12 @@ export const MAX_GRAPHEME_LENGTH = 300 // but increasing limit per user feedback export const MAX_ALT_TEXT = 1000 -export function IS_LOCAL_DEV(url: string) { - return url.includes('localhost') +export function IS_PROD_SERVICE(url?: string) { + return url && url !== STAGING_SERVICE && url !== LOCAL_DEV_SERVICE } -export function IS_STAGING(url: string) { - return url.startsWith('https://staging.bsky.dev') -} - -export function IS_PROD(url: string) { - // NOTE - // until open federation, "production" is defined as the main server - // this definition will not work once federation is enabled! - // -prf - return ( - url.startsWith('https://bsky.social') || - url.startsWith('https://api.bsky.app') || - /bsky\.network\/?$/.test(url) - ) -} - -export const PROD_TEAM_HANDLES = [ - 'jay.bsky.social', - 'pfrazee.com', - 'divy.zone', - 'dholms.xyz', - 'why.bsky.world', - 'iamrosewang.bsky.social', -] -export const STAGING_TEAM_HANDLES = [ - 'arcalinea.staging.bsky.dev', - 'paul.staging.bsky.dev', - 'paul2.staging.bsky.dev', -] -export const DEV_TEAM_HANDLES = ['alice.test', 'bob.test', 'carla.test'] - -export function TEAM_HANDLES(serviceUrl: string) { - if (serviceUrl.includes('localhost')) { - return DEV_TEAM_HANDLES - } else if (serviceUrl.includes('staging')) { - return STAGING_TEAM_HANDLES - } else { - return PROD_TEAM_HANDLES - } -} - -export const STAGING_DEFAULT_FEED = (rkey: string) => - `at://did:plc:wqzurwm3kmaig6e6hnc2gqwo/app.bsky.feed.generator/${rkey}` export const PROD_DEFAULT_FEED = (rkey: string) => `at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.generator/${rkey}` -export async function DEFAULT_FEEDS( - serviceUrl: string, - resolveHandle: (name: string) => Promise, -) { - // TODO: remove this when the test suite no longer relies on it - if (IS_LOCAL_DEV(serviceUrl)) { - // local dev - const aliceDid = await resolveHandle('alice.test') - return { - pinned: [ - `at://${aliceDid}/app.bsky.feed.generator/alice-favs`, - `at://${aliceDid}/app.bsky.feed.generator/alice-favs2`, - ], - saved: [ - `at://${aliceDid}/app.bsky.feed.generator/alice-favs`, - `at://${aliceDid}/app.bsky.feed.generator/alice-favs2`, - ], - } - } else if (IS_STAGING(serviceUrl)) { - // staging - return { - pinned: [STAGING_DEFAULT_FEED('whats-hot')], - saved: [ - STAGING_DEFAULT_FEED('bsky-team'), - STAGING_DEFAULT_FEED('with-friends'), - STAGING_DEFAULT_FEED('whats-hot'), - STAGING_DEFAULT_FEED('hot-classic'), - ], - } - } else { - // production - return { - pinned: [PROD_DEFAULT_FEED('whats-hot')], - saved: [PROD_DEFAULT_FEED('whats-hot')], - } - } -} export const POST_IMG_MAX = { width: 2000, @@ -135,13 +54,11 @@ export const STAGING_LINK_META_PROXY = export const PROD_LINK_META_PROXY = 'https://cardyb.bsky.app/v1/extract?url=' export function LINK_META_PROXY(serviceUrl: string) { - if (IS_LOCAL_DEV(serviceUrl)) { - return STAGING_LINK_META_PROXY - } else if (IS_STAGING(serviceUrl)) { - return STAGING_LINK_META_PROXY - } else { + if (IS_PROD_SERVICE(serviceUrl)) { return PROD_LINK_META_PROXY } + + return STAGING_LINK_META_PROXY } export const STATUS_PAGE_URL = 'https://status.bsky.app/' diff --git a/src/lib/country-codes.ts b/src/lib/country-codes.ts deleted file mode 100644 index 9c9da84cff..0000000000 --- a/src/lib/country-codes.ts +++ /dev/null @@ -1,256 +0,0 @@ -import {CountryCode} from 'libphonenumber-js' - -// ISO 3166-1 alpha-2 codes - -export interface CountryCodeMap { - code2: CountryCode - name: string -} - -export const COUNTRY_CODES: CountryCodeMap[] = [ - {code2: 'AF', name: 'Afghanistan (+93)'}, - {code2: 'AX', name: 'ƅland Islands (+358)'}, - {code2: 'AL', name: 'Albania (+355)'}, - {code2: 'DZ', name: 'Algeria (+213)'}, - {code2: 'AS', name: 'American Samoa (+1)'}, - {code2: 'AD', name: 'Andorra (+376)'}, - {code2: 'AO', name: 'Angola (+244)'}, - {code2: 'AI', name: 'Anguilla (+1)'}, - {code2: 'AG', name: 'Antigua and Barbuda (+1)'}, - {code2: 'AR', name: 'Argentina (+54)'}, - {code2: 'AM', name: 'Armenia (+374)'}, - {code2: 'AW', name: 'Aruba (+297)'}, - {code2: 'AU', name: 'Australia (+61)'}, - {code2: 'AT', name: 'Austria (+43)'}, - {code2: 'AZ', name: 'Azerbaijan (+994)'}, - {code2: 'BS', name: 'Bahamas (+1)'}, - {code2: 'BH', name: 'Bahrain (+973)'}, - {code2: 'BD', name: 'Bangladesh (+880)'}, - {code2: 'BB', name: 'Barbados (+1)'}, - {code2: 'BY', name: 'Belarus (+375)'}, - {code2: 'BE', name: 'Belgium (+32)'}, - {code2: 'BZ', name: 'Belize (+501)'}, - {code2: 'BJ', name: 'Benin (+229)'}, - {code2: 'BM', name: 'Bermuda (+1)'}, - {code2: 'BT', name: 'Bhutan (+975)'}, - {code2: 'BO', name: 'Bolivia (Plurinational State of) (+591)'}, - {code2: 'BQ', name: 'Bonaire, Sint Eustatius and Saba (+599)'}, - {code2: 'BA', name: 'Bosnia and Herzegovina (+387)'}, - {code2: 'BW', name: 'Botswana (+267)'}, - {code2: 'BR', name: 'Brazil (+55)'}, - {code2: 'IO', name: 'British Indian Ocean Territory (+246)'}, - {code2: 'BN', name: 'Brunei Darussalam (+673)'}, - {code2: 'BG', name: 'Bulgaria (+359)'}, - {code2: 'BF', name: 'Burkina Faso (+226)'}, - {code2: 'BI', name: 'Burundi (+257)'}, - {code2: 'CV', name: 'Cabo Verde (+238)'}, - {code2: 'KH', name: 'Cambodia (+855)'}, - {code2: 'CM', name: 'Cameroon (+237)'}, - {code2: 'CA', name: 'Canada (+1)'}, - {code2: 'KY', name: 'Cayman Islands (+1)'}, - {code2: 'CF', name: 'Central African Republic (+236)'}, - {code2: 'TD', name: 'Chad (+235)'}, - {code2: 'CL', name: 'Chile (+56)'}, - {code2: 'CN', name: 'China (+86)'}, - {code2: 'CX', name: 'Christmas Island (+61)'}, - {code2: 'CC', name: 'Cocos (Keeling) Islands (+61)'}, - {code2: 'CO', name: 'Colombia (+57)'}, - {code2: 'KM', name: 'Comoros (+269)'}, - {code2: 'CG', name: 'Congo (+242)'}, - {code2: 'CD', name: 'Congo, Democratic Republic of the (+243)'}, - {code2: 'CK', name: 'Cook Islands (+682)'}, - {code2: 'CR', name: 'Costa Rica (+506)'}, - {code2: 'CI', name: "CĆ“te d'Ivoire (+225)"}, - {code2: 'HR', name: 'Croatia (+385)'}, - {code2: 'CU', name: 'Cuba (+53)'}, - {code2: 'CW', name: 'CuraƧao (+599)'}, - {code2: 'CY', name: 'Cyprus (+357)'}, - {code2: 'CZ', name: 'Czechia (+420)'}, - {code2: 'DK', name: 'Denmark (+45)'}, - {code2: 'DJ', name: 'Djibouti (+253)'}, - {code2: 'DM', name: 'Dominica (+1)'}, - {code2: 'DO', name: 'Dominican Republic (+1)'}, - {code2: 'EC', name: 'Ecuador (+593)'}, - {code2: 'EG', name: 'Egypt (+20)'}, - {code2: 'SV', name: 'El Salvador (+503)'}, - {code2: 'GQ', name: 'Equatorial Guinea (+240)'}, - {code2: 'ER', name: 'Eritrea (+291)'}, - {code2: 'EE', name: 'Estonia (+372)'}, - {code2: 'SZ', name: 'Eswatini (+268)'}, - {code2: 'ET', name: 'Ethiopia (+251)'}, - {code2: 'FK', name: 'Falkland Islands (Malvinas) (+500)'}, - {code2: 'FO', name: 'Faroe Islands (+298)'}, - {code2: 'FJ', name: 'Fiji (+679)'}, - {code2: 'FI', name: 'Finland (+358)'}, - {code2: 'FR', name: 'France (+33)'}, - {code2: 'GF', name: 'French Guiana (+594)'}, - {code2: 'PF', name: 'French Polynesia (+689)'}, - {code2: 'GA', name: 'Gabon (+241)'}, - {code2: 'GM', name: 'Gambia (+220)'}, - {code2: 'GE', name: 'Georgia (+995)'}, - {code2: 'DE', name: 'Germany (+49)'}, - {code2: 'GH', name: 'Ghana (+233)'}, - {code2: 'GI', name: 'Gibraltar (+350)'}, - {code2: 'GR', name: 'Greece (+30)'}, - {code2: 'GL', name: 'Greenland (+299)'}, - {code2: 'GD', name: 'Grenada (+1)'}, - {code2: 'GP', name: 'Guadeloupe (+590)'}, - {code2: 'GU', name: 'Guam (+1)'}, - {code2: 'GT', name: 'Guatemala (+502)'}, - {code2: 'GG', name: 'Guernsey (+44)'}, - {code2: 'GN', name: 'Guinea (+224)'}, - {code2: 'GW', name: 'Guinea-Bissau (+245)'}, - {code2: 'GY', name: 'Guyana (+592)'}, - {code2: 'HT', name: 'Haiti (+509)'}, - {code2: 'VA', name: 'Holy See (+39)'}, - {code2: 'HN', name: 'Honduras (+504)'}, - {code2: 'HK', name: 'Hong Kong (+852)'}, - {code2: 'HU', name: 'Hungary (+36)'}, - {code2: 'IS', name: 'Iceland (+354)'}, - {code2: 'IN', name: 'India (+91)'}, - {code2: 'ID', name: 'Indonesia (+62)'}, - {code2: 'IR', name: 'Iran (Islamic Republic of) (+98)'}, - {code2: 'IQ', name: 'Iraq (+964)'}, - {code2: 'IE', name: 'Ireland (+353)'}, - {code2: 'IM', name: 'Isle of Man (+44)'}, - {code2: 'IL', name: 'Israel (+972)'}, - {code2: 'IT', name: 'Italy (+39)'}, - {code2: 'JM', name: 'Jamaica (+1)'}, - {code2: 'JP', name: 'Japan (+81)'}, - {code2: 'JE', name: 'Jersey (+44)'}, - {code2: 'JO', name: 'Jordan (+962)'}, - {code2: 'KZ', name: 'Kazakhstan (+7)'}, - {code2: 'KE', name: 'Kenya (+254)'}, - {code2: 'KI', name: 'Kiribati (+686)'}, - {code2: 'KP', name: "Korea (Democratic People's Republic of) (+850)"}, - {code2: 'KR', name: 'Korea, Republic of (+82)'}, - {code2: 'KW', name: 'Kuwait (+965)'}, - {code2: 'KG', name: 'Kyrgyzstan (+996)'}, - {code2: 'LA', name: "Lao People's Democratic Republic (+856)"}, - {code2: 'LV', name: 'Latvia (+371)'}, - {code2: 'LB', name: 'Lebanon (+961)'}, - {code2: 'LS', name: 'Lesotho (+266)'}, - {code2: 'LR', name: 'Liberia (+231)'}, - {code2: 'LY', name: 'Libya (+218)'}, - {code2: 'LI', name: 'Liechtenstein (+423)'}, - {code2: 'LT', name: 'Lithuania (+370)'}, - {code2: 'LU', name: 'Luxembourg (+352)'}, - {code2: 'MO', name: 'Macao (+853)'}, - {code2: 'MG', name: 'Madagascar (+261)'}, - {code2: 'MW', name: 'Malawi (+265)'}, - {code2: 'MY', name: 'Malaysia (+60)'}, - {code2: 'MV', name: 'Maldives (+960)'}, - {code2: 'ML', name: 'Mali (+223)'}, - {code2: 'MT', name: 'Malta (+356)'}, - {code2: 'MH', name: 'Marshall Islands (+692)'}, - {code2: 'MQ', name: 'Martinique (+596)'}, - {code2: 'MR', name: 'Mauritania (+222)'}, - {code2: 'MU', name: 'Mauritius (+230)'}, - {code2: 'YT', name: 'Mayotte (+262)'}, - {code2: 'MX', name: 'Mexico (+52)'}, - {code2: 'FM', name: 'Micronesia (Federated States of) (+691)'}, - {code2: 'MD', name: 'Moldova, Republic of (+373)'}, - {code2: 'MC', name: 'Monaco (+377)'}, - {code2: 'MN', name: 'Mongolia (+976)'}, - {code2: 'ME', name: 'Montenegro (+382)'}, - {code2: 'MS', name: 'Montserrat (+1)'}, - {code2: 'MA', name: 'Morocco (+212)'}, - {code2: 'MZ', name: 'Mozambique (+258)'}, - {code2: 'MM', name: 'Myanmar (+95)'}, - {code2: 'NA', name: 'Namibia (+264)'}, - {code2: 'NR', name: 'Nauru (+674)'}, - {code2: 'NP', name: 'Nepal (+977)'}, - {code2: 'NL', name: 'Netherlands, Kingdom of the (+31)'}, - {code2: 'NC', name: 'New Caledonia (+687)'}, - {code2: 'NZ', name: 'New Zealand (+64)'}, - {code2: 'NI', name: 'Nicaragua (+505)'}, - {code2: 'NE', name: 'Niger (+227)'}, - {code2: 'NG', name: 'Nigeria (+234)'}, - {code2: 'NU', name: 'Niue (+683)'}, - {code2: 'NF', name: 'Norfolk Island (+672)'}, - {code2: 'MK', name: 'North Macedonia (+389)'}, - {code2: 'MP', name: 'Northern Mariana Islands (+1)'}, - {code2: 'NO', name: 'Norway (+47)'}, - {code2: 'OM', name: 'Oman (+968)'}, - {code2: 'PK', name: 'Pakistan (+92)'}, - {code2: 'PW', name: 'Palau (+680)'}, - {code2: 'PS', name: 'Palestine, State of (+970)'}, - {code2: 'PA', name: 'Panama (+507)'}, - {code2: 'PG', name: 'Papua New Guinea (+675)'}, - {code2: 'PY', name: 'Paraguay (+595)'}, - {code2: 'PE', name: 'Peru (+51)'}, - {code2: 'PH', name: 'Philippines (+63)'}, - {code2: 'PL', name: 'Poland (+48)'}, - {code2: 'PT', name: 'Portugal (+351)'}, - {code2: 'PR', name: 'Puerto Rico (+1)'}, - {code2: 'QA', name: 'Qatar (+974)'}, - {code2: 'RE', name: 'RĆ©union (+262)'}, - {code2: 'RO', name: 'Romania (+40)'}, - {code2: 'RU', name: 'Russian Federation (+7)'}, - {code2: 'RW', name: 'Rwanda (+250)'}, - {code2: 'BL', name: 'Saint BarthĆ©lemy (+590)'}, - {code2: 'SH', name: 'Saint Helena, Ascension and Tristan da Cunha (+290)'}, - {code2: 'KN', name: 'Saint Kitts and Nevis (+1)'}, - {code2: 'LC', name: 'Saint Lucia (+1)'}, - {code2: 'MF', name: 'Saint Martin (French part) (+590)'}, - {code2: 'PM', name: 'Saint Pierre and Miquelon (+508)'}, - {code2: 'VC', name: 'Saint Vincent and the Grenadines (+1)'}, - {code2: 'WS', name: 'Samoa (+685)'}, - {code2: 'SM', name: 'San Marino (+378)'}, - {code2: 'ST', name: 'Sao Tome and Principe (+239)'}, - {code2: 'SA', name: 'Saudi Arabia (+966)'}, - {code2: 'SN', name: 'Senegal (+221)'}, - {code2: 'RS', name: 'Serbia (+381)'}, - {code2: 'SC', name: 'Seychelles (+248)'}, - {code2: 'SL', name: 'Sierra Leone (+232)'}, - {code2: 'SG', name: 'Singapore (+65)'}, - {code2: 'SX', name: 'Sint Maarten (Dutch part) (+1)'}, - {code2: 'SK', name: 'Slovakia (+421)'}, - {code2: 'SI', name: 'Slovenia (+386)'}, - {code2: 'SB', name: 'Solomon Islands (+677)'}, - {code2: 'SO', name: 'Somalia (+252)'}, - {code2: 'ZA', name: 'South Africa (+27)'}, - {code2: 'SS', name: 'South Sudan (+211)'}, - {code2: 'ES', name: 'Spain (+34)'}, - {code2: 'LK', name: 'Sri Lanka (+94)'}, - {code2: 'SD', name: 'Sudan (+249)'}, - {code2: 'SR', name: 'Suriname (+597)'}, - {code2: 'SJ', name: 'Svalbard and Jan Mayen (+47)'}, - {code2: 'SE', name: 'Sweden (+46)'}, - {code2: 'CH', name: 'Switzerland (+41)'}, - {code2: 'SY', name: 'Syrian Arab Republic (+963)'}, - {code2: 'TW', name: 'Taiwan (+886)'}, - {code2: 'TJ', name: 'Tajikistan (+992)'}, - {code2: 'TZ', name: 'Tanzania, United Republic of (+255)'}, - {code2: 'TH', name: 'Thailand (+66)'}, - {code2: 'TL', name: 'Timor-Leste (+670)'}, - {code2: 'TG', name: 'Togo (+228)'}, - {code2: 'TK', name: 'Tokelau (+690)'}, - {code2: 'TO', name: 'Tonga (+676)'}, - {code2: 'TT', name: 'Trinidad and Tobago (+1)'}, - {code2: 'TN', name: 'Tunisia (+216)'}, - {code2: 'TR', name: 'Türkiye (+90)'}, - {code2: 'TM', name: 'Turkmenistan (+993)'}, - {code2: 'TC', name: 'Turks and Caicos Islands (+1)'}, - {code2: 'TV', name: 'Tuvalu (+688)'}, - {code2: 'UG', name: 'Uganda (+256)'}, - {code2: 'UA', name: 'Ukraine (+380)'}, - {code2: 'AE', name: 'United Arab Emirates (+971)'}, - { - code2: 'GB', - name: 'United Kingdom of Great Britain and Northern Ireland (+44)', - }, - {code2: 'US', name: 'United States of America (+1)'}, - {code2: 'UY', name: 'Uruguay (+598)'}, - {code2: 'UZ', name: 'Uzbekistan (+998)'}, - {code2: 'VU', name: 'Vanuatu (+678)'}, - {code2: 'VE', name: 'Venezuela (Bolivarian Republic of) (+58)'}, - {code2: 'VN', name: 'Viet Nam (+84)'}, - {code2: 'VG', name: 'Virgin Islands (British) (+1)'}, - {code2: 'VI', name: 'Virgin Islands (U.S.) (+1)'}, - {code2: 'WF', name: 'Wallis and Futuna (+681)'}, - {code2: 'EH', name: 'Western Sahara (+212)'}, - {code2: 'YE', name: 'Yemen (+967)'}, - {code2: 'ZM', name: 'Zambia (+260)'}, - {code2: 'ZW', name: 'Zimbabwe (+263)'}, -] diff --git a/src/lib/link-meta/link-meta.ts b/src/lib/link-meta/link-meta.ts index c7c8d4130a..fa951432e8 100644 --- a/src/lib/link-meta/link-meta.ts +++ b/src/lib/link-meta/link-meta.ts @@ -26,7 +26,7 @@ export interface LinkMeta { export async function getLinkMeta( agent: BskyAgent, url: string, - timeout = 5e3, + timeout = 15e3, ): Promise { if (isBskyAppUrl(url)) { return extractBskyMeta(agent, url) diff --git a/src/lib/media/picker.e2e.tsx b/src/lib/media/picker.e2e.tsx index 0966674795..d7b6080417 100644 --- a/src/lib/media/picker.e2e.tsx +++ b/src/lib/media/picker.e2e.tsx @@ -5,12 +5,13 @@ import {compressIfNeeded} from './manip' let _imageCounter = 0 async function getFile() { - const files = await RNFS.readDir( + let files = await RNFS.readDir( RNFS.LibraryDirectoryPath.split('/') .slice(0, -5) .concat(['Media', 'DCIM', '100APPLE']) .join('/'), ) + files = files.filter(file => file.path.endsWith('.JPG')) const file = files[_imageCounter++ % files.length] return await compressIfNeeded({ path: file.path, diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 6bac031c4d..c4bf4dd0c2 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -31,7 +31,7 @@ export type CommonNavigatorParams = { CopyrightPolicy: undefined AppPasswords: undefined SavedFeeds: undefined - PreferencesHomeFeed: undefined + PreferencesFollowingFeed: undefined PreferencesThreads: undefined PreferencesExternalEmbeds: undefined } diff --git a/src/lib/strings/embed-player.ts b/src/lib/strings/embed-player.ts index 21a575b91c..1cf3b12937 100644 --- a/src/lib/strings/embed-player.ts +++ b/src/lib/strings/embed-player.ts @@ -343,45 +343,45 @@ export function parseEmbedPlayerFromUrl( } } -export function getPlayerHeight({ +export function getPlayerAspect({ type, - width, hasThumb, + width, }: { type: EmbedPlayerParams['type'] - width: number hasThumb: boolean -}) { - if (!hasThumb) return (width / 16) * 9 + width: number +}): {aspectRatio?: number; height?: number} { + if (!hasThumb) return {aspectRatio: 16 / 9} switch (type) { case 'youtube_video': case 'twitch_video': case 'vimeo_video': - return (width / 16) * 9 + return {aspectRatio: 16 / 9} case 'youtube_short': if (SCREEN_HEIGHT < 600) { - return ((width / 9) * 16) / 1.75 + return {aspectRatio: (9 / 16) * 1.75} } else { - return ((width / 9) * 16) / 1.5 + return {aspectRatio: (9 / 16) * 1.5} } case 'spotify_album': case 'apple_music_album': case 'apple_music_playlist': case 'spotify_playlist': case 'soundcloud_set': - return 380 + return {height: 380} case 'spotify_song': if (width <= 300) { - return 155 + return {height: 155} } - return 232 + return {height: 232} case 'soundcloud_track': - return 165 + return {height: 165} case 'apple_music_song': - return 150 + return {height: 150} default: - return width + return {aspectRatio: 16 / 9} } } diff --git a/src/lib/strings/handles.ts b/src/lib/strings/handles.ts index 6ce4624357..a18fef453e 100644 --- a/src/lib/strings/handles.ts +++ b/src/lib/strings/handles.ts @@ -1,3 +1,8 @@ +// Regex from the go implementation +// https://github.com/bluesky-social/indigo/blob/main/atproto/syntax/handle.go#L10 +const VALIDATE_REGEX = + /^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$/ + export function makeValidHandle(str: string): string { if (str.length > 20) { str = str.slice(0, 20) @@ -19,3 +24,27 @@ export function isInvalidHandle(handle: string): boolean { export function sanitizeHandle(handle: string, prefix = ''): string { return isInvalidHandle(handle) ? '⚠Invalid Handle' : `${prefix}${handle}` } + +export interface IsValidHandle { + handleChars: boolean + frontLength: boolean + totalLength: boolean + overall: boolean +} + +// More checks from https://github.com/bluesky-social/atproto/blob/main/packages/pds/src/handle/index.ts#L72 +export function validateHandle(str: string, userDomain: string): IsValidHandle { + const fullHandle = createFullHandle(str, userDomain) + + const results = { + handleChars: + !str || (VALIDATE_REGEX.test(fullHandle) && !str.includes('.')), + frontLength: str.length >= 3, + totalLength: fullHandle.length <= 253, + } + + return { + ...results, + overall: !Object.values(results).includes(false), + } +} diff --git a/src/lib/strings/time.ts b/src/lib/strings/time.ts index 05a60e94bc..3e162af1a2 100644 --- a/src/lib/strings/time.ts +++ b/src/lib/strings/time.ts @@ -23,7 +23,7 @@ export function ago(date: number | string | Date): string { } else if (diffSeconds < DAY) { return `${Math.floor(diffSeconds / HOUR)}h` } else if (diffSeconds < MONTH) { - return `${Math.floor(diffSeconds / DAY)}d` + return `${Math.round(diffSeconds / DAY)}d` } else if (diffSeconds < YEAR) { return `${Math.floor(diffSeconds / MONTH)}mo` } else { diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index 8a71718c8d..ef341154df 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 {PROD_SERVICE} from 'lib/constants' +import {BSKY_SERVICE} from 'lib/constants' import TLDs from 'tlds' import psl from 'psl' @@ -28,7 +28,7 @@ export function makeRecordUri( export function toNiceDomain(url: string): string { try { const urlp = new URL(url) - if (`https://${urlp.host}` === PROD_SERVICE) { + if (`https://${urlp.host}` === BSKY_SERVICE) { return 'Bluesky Social' } return urlp.host ? urlp.host : url diff --git a/src/lib/themes.ts b/src/lib/themes.ts index 9a3880b92c..135d50ab66 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -306,7 +306,7 @@ export const darkTheme: Theme = { // non-standard textVeryLight: darkPalette.contrast_400, - replyLine: darkPalette.contrast_100, + replyLine: darkPalette.contrast_200, replyLineDot: darkPalette.contrast_200, unreadNotifBg: darkPalette.primary_975, unreadNotifBorder: darkPalette.primary_900, @@ -344,6 +344,25 @@ export const dimTheme: Theme = { default: { ...darkTheme.palette.default, background: dimPalette.black, + backgroundLight: dimPalette.contrast_50, + text: dimPalette.white, + textLight: dimPalette.contrast_700, + textInverted: dimPalette.black, + link: dimPalette.primary_500, + border: dimPalette.contrast_100, + borderDark: dimPalette.contrast_200, + icon: dimPalette.contrast_500, + + // non-standard + textVeryLight: dimPalette.contrast_400, + replyLine: dimPalette.contrast_200, + replyLineDot: dimPalette.contrast_200, + unreadNotifBg: `hsl(211, 48%, 17%)`, + unreadNotifBorder: `hsl(211, 48%, 30%)`, + postCtrl: dimPalette.contrast_500, + brandText: dimPalette.primary_500, + emptyStateIcon: dimPalette.contrast_300, + borderLinkHover: dimPalette.contrast_300, }, }, } diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index c345e8a825..c73242e707 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -140,6 +140,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.ca case 'zh-CN': return AppLanguage.zh_CN + case 'it': + return AppLanguage.it default: continue } diff --git a/src/locale/i18n.ts b/src/locale/i18n.ts index 89e6f8c5ee..e8addb0b4f 100644 --- a/src/locale/i18n.ts +++ b/src/locale/i18n.ts @@ -14,6 +14,7 @@ import {messages as messagesPt_BR} from '#/locale/locales/pt-BR/messages' import {messages as messagesUk} from '#/locale/locales/uk/messages' import {messages as messagesCa} from '#/locale/locales/ca/messages' import {messages as messagesZh_CN} from '#/locale/locales/zh-CN/messages' +import {messages as messagesIt} from '#/locale/locales/it/messages' import {sanitizeAppLanguageSetting} from '#/locale/helpers' import {AppLanguage} from '#/locale/languages' @@ -65,6 +66,11 @@ export async function dynamicActivate(locale: AppLanguage) { } case AppLanguage.zh_CN: { i18n.loadAndActivate({locale, messages: messagesZh_CN}) + break + } + case AppLanguage.it: { + i18n.loadAndActivate({locale, messages: messagesIt}) + break } default: { i18n.loadAndActivate({locale, messages: messagesEn}) diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts index 42cff16d96..d8e51723ff 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -56,6 +56,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/zh-CN/messages`) break } + case AppLanguage.it: { + mod = await import(`./locales/it/messages`) + break + } default: { mod = await import(`./locales/en/messages`) break diff --git a/src/locale/languages.ts b/src/locale/languages.ts index b9a8f5cee4..3fdabd02ec 100644 --- a/src/locale/languages.ts +++ b/src/locale/languages.ts @@ -17,6 +17,7 @@ export enum AppLanguage { uk = 'uk', ca = 'ca', zh_CN = 'zh-CN', + it = 'it', } interface AppLanguageConfig { @@ -37,6 +38,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [ {code2: AppLanguage.uk, name: 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° – Ukrainian'}, {code2: AppLanguage.ca, name: 'CatalĆ  – Catalan'}, {code2: AppLanguage.zh_CN, name: 'ē®€ä½“äø­ę–‡ļ¼ˆäø­å›½ļ¼‰ – Chinese (Simplified)'}, + {code2: AppLanguage.it, name: 'Italiano - Italian'}, ] export const LANGUAGES: Language[] = [ diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 1cf10a5bbe..9f7f853c59 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -21,8 +21,8 @@ msgid "(no email)" msgstr "(sense correu)" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {# codi d'invitació disponible} other {# codis d'invitació disponibles}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# codi d'invitació disponible} other {# codis d'invitació disponibles}}" #: src/view/com/modals/Repost.tsx:44 #~ msgid "{0}" @@ -32,29 +32,29 @@ msgstr "{0, plural, one {# codi d'invitació disponible} other {# codis d'invita #~ msgid "{0} {purposeLabel} List" #~ msgstr "Llista {purposeLabel} {0}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} seguint" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {Codis d'invitació: # available} other {Codi d'invitació: # available}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Codis d'invitació: # available} other {Codi d'invitació: # available}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} codi d'invitació disponible" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} codi d'invitació disponible" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} codis d'invitació disponibles" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} codis d'invitació disponibles" #: src/view/screens/Search/Search.tsx:87 #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} no llegides" @@ -62,7 +62,7 @@ msgstr "{numUnreadNotifications} no llegides" msgid "<0/> members" msgstr "<0/> membres" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following} <1>seguint" @@ -78,7 +78,7 @@ msgstr "<0>Segueix alguns<1>usuaris<2>recomanats" msgid "<0>Welcome to<1>Bluesky" msgstr "<0>Benvingut a<1>Bluesky" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "⚠Identificador invĆ lid" @@ -95,26 +95,26 @@ msgstr "Hi ha una nova versió d'aquesta aplicació. Actualitza-la per continuar msgid "Access navigation links and settings" msgstr "Accedeix als enllaƧos de navegació i configuració" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Accedeix al perfil i altres enllaƧos de navegació" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "Accessibilitat" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "Compte" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Compte bloquejat" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Compte silenciat" @@ -134,11 +134,11 @@ msgstr "Opcions del compte" msgid "Account removed from quick access" msgstr "Compte eliminat de l'accĆ©s rĆ pid" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Compte desbloquejat" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Compte no silenciat" @@ -157,8 +157,8 @@ msgstr "Afegeix una advertĆØncia de contingut" msgid "Add a user to this list" msgstr "Afegeix un usuari a aquesta llista" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "Afegeix un compte" @@ -195,12 +195,12 @@ msgstr "Afegeix una targeta a l'enllaƧ:" msgid "Add the following DNS record to your domain:" msgstr "Afegeix el següent registre DNS al teu domini:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Afegeix a les llistes" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Afegeix als meus canals" @@ -213,11 +213,11 @@ msgstr "Afegit" msgid "Added to list" msgstr "Afegit a la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Afegit als meus canals" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per aparĆØixer al teu canal." @@ -225,15 +225,19 @@ msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per aparĆØi msgid "Adult Content" msgstr "Contingut per a adults" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "El contingut per a adults nomĆ©s es pot habilitar via web a <0/>." -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "AvanƧat" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -292,7 +296,7 @@ msgstr "La contrasenya de l'aplicació nomĆ©s pot estar formada per lletres, nĆŗ msgid "App Password names must be at least 4 characters long." msgstr "La contrasenya de l'aplicació ha de ser d'almenys 4 carĆ cters" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "Configuració de la contrasenya d'aplicació" @@ -300,13 +304,13 @@ msgstr "Configuració de la contrasenya d'aplicació" #~ msgid "App passwords" #~ msgstr "Contrasenyes de l'aplicació" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "AdvertĆØncia d'apelĀ·lació sobre el contingut" @@ -325,7 +329,7 @@ msgstr "ApelĀ·la aquesta decisió" msgid "Appeal this decision." msgstr "ApelĀ·la aquesta decisió." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "AparenƧa" @@ -337,11 +341,11 @@ msgstr "Confirmes que vols eliminar la contrasenya de l'aplicació \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Confirmes que vols descartar aquest esborrany?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Ho confirmes?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Ho confirmes? Aquesta acció no es pot desfer." @@ -357,21 +361,21 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Nuesa artĆ­stica o no eròtica." -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Endarrere" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "Endarrere" @@ -380,42 +384,42 @@ msgstr "Endarrere" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "Conceptes bĆ sics" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "Aniversari" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "Aniversari:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloqueja el compte" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloqueja comptes" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Bloqueja una llista" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Vols bloquejar aquests comptes?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Bloqueja la llista" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Bloquejada" @@ -428,7 +432,7 @@ msgstr "Comptes bloquejats" msgid "Blocked Accounts" msgstr "Comptes bloquejats" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera." @@ -436,22 +440,29 @@ msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera. No veurĆ s mai el seu contingut ni ells el teu." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Publicació bloquejada." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloqueig Ć©s pĆŗblic. Els comptes bloquejats no poden respondre els teus fils, ni mencionar-te ni interactuar amb tu de cap manera." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Blog" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -476,24 +487,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a 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/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Versió {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "Negocis" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "Botó deshabilitat. Entra el domini personalitzat per continuar." +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "Botó deshabilitat. Entra el domini personalitzat per continuar." #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -512,8 +524,8 @@ msgid "by you" msgstr "per tu" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "CĆ mera" @@ -521,7 +533,7 @@ msgstr "CĆ mera" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "NomĆ©s pot tenir lletres, nĆŗmeros, espais, guions i guions baixos. Ha de tenir almenys 4 carĆ cters i no mĆ©s de 32." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -585,7 +597,7 @@ msgstr "CancelĀ·la la cerca" msgid "Cancel waitlist signup" msgstr "CancelĀ·la la inscripció a la llista d'espera" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "Canvia" @@ -594,12 +606,12 @@ msgstr "Canvia" #~ msgid "Change" #~ msgstr "Canvia" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Canvia l'identificador" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Canvia l'identificador" @@ -607,11 +619,11 @@ msgstr "Canvia l'identificador" msgid "Change my email" msgstr "Canvia el meu correu" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -619,7 +631,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "Canvia l'idioma de la publicació a {0}" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -627,8 +639,8 @@ msgstr "" msgid "Change Your Email" msgstr "Canvia el teu correu" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -648,11 +660,11 @@ msgstr "Comprova el teu correu per rebre el codi de confirmació i entra'l aquĆ­ msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "Tria \"Tothom\" or \"NingĆŗ\"" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "Tria un nou nom d'usuari de Bluesky o crea'l" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Tria un servei" @@ -669,29 +681,29 @@ msgstr "Tria els algoritmes que potenciaran la teva experiĆØncia amb els canals msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "Tria la teva contrasenya" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "Esborra totes les dades antigues emmagatzemades" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "Esborra totes les dades antigues emmagatzemades (i desprĆ©s reinicia)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "Esborra totes les dades emmagatzemades" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "Esborra totes les dades emmagatzemades (i desprĆ©s reinicia)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "Esborra la cerca" @@ -709,7 +721,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "Tanca el diĆ leg actiu" @@ -761,7 +774,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -770,6 +783,10 @@ msgstr "Directrius de la comunitat" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Crea publicacions de fins a {MAX_GRAPHEME_LENGTH} carĆ cters" @@ -782,12 +799,12 @@ msgstr "Redacta una resposta" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirma" @@ -811,7 +828,7 @@ msgstr "Confirma la configuració de l'idioma del contingut" msgid "Confirm delete account" msgstr "Confirma l'eliminació del compte" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "Confirma la teva edat per habilitar el contingut per a adults" @@ -825,12 +842,12 @@ msgstr "Codi de confirmació" msgid "Confirms signing up {email} to the waitlist" msgstr "Confirma afegir {email} a la llista d'espera" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Connectant…" -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "Contacta amb suport" @@ -860,11 +877,11 @@ msgstr "AdvertĆØncia del contingut" msgid "Content warnings" msgstr "AdvertĆØncies del contingut" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -873,15 +890,15 @@ msgstr "Continua" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -894,13 +911,13 @@ msgstr "" msgid "Copied" msgstr "Copiat" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "NĆŗmero de versió copiat en memòria" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Copiat en memòria" @@ -912,28 +929,28 @@ msgstr "Copia la contrasenya d'aplicació" msgid "Copy" msgstr "Copia" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copia l'enllaƧ a la llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copia l'enllaƧ a la publicació" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copia l'enllaƧ al perfil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copia el text de la publicació" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "PolĆ­tica de drets d'autor" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "No es pot carregar el canal" @@ -942,20 +959,20 @@ msgid "Could not load list" msgstr "No es pot carregar la llista" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "PaĆ­s" +#~ msgid "Country" +#~ msgstr "PaĆ­s" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "Crea un nou compte" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "Crea un nou compte de Bluesky" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Crea un compte" @@ -964,7 +981,7 @@ msgid "Create App Password" msgstr "Crea una contrasenya d'aplicació" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "Crea un nou compte" @@ -988,12 +1005,17 @@ msgstr "Crea una targeta amb una minuatura. La targeta enllaƧa a {url}" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "Domini personalitzat" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1005,8 +1027,8 @@ msgstr "Personalitza el contingut dels llocs externs" #~ msgid "Danger Zone" #~ msgstr "Zona de perill" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "Fosc" @@ -1014,7 +1036,7 @@ msgstr "Fosc" msgid "Dark mode" msgstr "Mode fosc" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1022,7 +1044,7 @@ msgstr "" msgid "Debug panel" msgstr "Panell de depuració" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "Elimina el compte" @@ -1035,8 +1057,8 @@ msgstr "Elimina el compte" msgid "Delete app password" msgstr "Elimina la contrasenya d'aplicació" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Elimina la llista" @@ -1048,23 +1070,23 @@ msgstr "Elimina el meu compte" #~ msgid "Delete my account…" #~ msgstr "Elimina el meu compte…" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Elimina la publicació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicació?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "Eliminat" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "Publicació eliminada." @@ -1080,14 +1102,14 @@ msgstr "Descripció" #~ msgstr "Servidor de desenvolupament" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Eines de desenvolupador" +#~ msgid "Developer Tools" +#~ msgstr "Eines de desenvolupador" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "Vols dir alguna cosa?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1108,9 +1130,13 @@ msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectat msgid "Discover new custom feeds" msgstr "Descobreix nous canals personalitzats" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "Descobreix nous canals" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "Descobreix nous canals" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1124,7 +1150,7 @@ msgstr "Nom mostrat" msgid "Domain verified!" msgstr "Domini verificat!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "No tens un codi d'invitació?" @@ -1141,6 +1167,8 @@ msgctxt "action" msgid "Done" msgstr "Fet" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1149,7 +1177,9 @@ msgstr "Fet" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "Fet" @@ -1161,7 +1191,16 @@ msgstr "Fet{extraText}" msgid "Double tap to sign in" msgstr "Fes doble toc per iniciar la sessió" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1207,7 +1246,7 @@ msgstr "Edita" msgid "Edit image" msgstr "Edita la imatge" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Edita els detalls de la llista" @@ -1215,8 +1254,8 @@ msgstr "Edita els detalls de la llista" msgid "Edit Moderation List" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Edita els meus canals" @@ -1225,15 +1264,15 @@ msgstr "Edita els meus canals" msgid "Edit my profile" msgstr "Edita el meu perfil" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Edita el perfil" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Edita el perfil" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Edita els meus canals guardats" @@ -1253,17 +1292,15 @@ msgstr "Edita la descripció del teu perfil" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "Correu" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "AdreƧa de correu" @@ -1280,7 +1317,7 @@ msgstr "Correu actualitzat" msgid "Email verified" msgstr "Correu verificat" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "Correu:" @@ -1288,7 +1325,7 @@ msgstr "Correu:" msgid "Enable {0} only" msgstr "Habilita nomĆ©s {0}" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "Habilita el contingut per a adults" @@ -1305,11 +1342,11 @@ msgstr "Habilita el contingut extern" msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Activa aquesta opció per veure nomĆ©s les respostes entre els comptes que segueixes." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "Fi del canal" @@ -1333,11 +1370,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "Introdueix el domini que vols utilitzar" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "Introdueix el correu que vas fer servir per crear el teu compte. T'enviarem un \"codi de restabliment\" perquĆØ puguis posar una nova contrasenya." -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "Introdueix la teva data de naixement" @@ -1346,7 +1383,7 @@ msgstr "Introdueix la teva data de naixement" msgid "Enter your email" msgstr "Introdueix el teu correu" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Introdueix el teu correu" @@ -1359,13 +1396,17 @@ msgid "Enter your new email address below." msgstr "Introdueix el teu nou correu a continuació." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "Introdueix el teu telĆØfon" +#~ msgid "Enter your phone number" +#~ msgstr "Introdueix el teu telĆØfon" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Introdueix el teu usuari i contrasenya" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Error:" @@ -1400,6 +1441,15 @@ msgstr "Expandeix el text alternatiu" msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicació completa a la qual estĆ s responent" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "Contingut extern" @@ -1409,13 +1459,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "PreferĆØncia del contingut extern" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "Configuració del contingut extern" @@ -1428,7 +1478,7 @@ msgstr "No s'ha pogut crear la contrasenya d'aplicació" msgid "Failed to create the list. Check your internet connection and try again." msgstr "No s'ha pogut crear la llista. Comprova la teva connexió a internet i torna-ho a provar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" @@ -1437,15 +1487,15 @@ msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" msgid "Failed to load recommended feeds" msgstr "Error en carregar els canals recomanats" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "Canal" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Canal per {0}" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Canal fora de lĆ­nia" @@ -1453,18 +1503,19 @@ msgstr "Canal fora de lĆ­nia" msgid "Feed Preferences" msgstr "PreferĆØncies del canal" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "Comentaris" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Canals" @@ -1476,7 +1527,7 @@ msgstr "Els canals són creats pels usuaris per curar contingut. Tria els canals msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixen una mica de codi. <0/> per a mĆ©s informació." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1502,9 +1553,13 @@ msgstr "Troba usuaris amb l'eina de cerca de la dreta" msgid "Finding similar accounts..." msgstr "Troba comptes similars…" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ajusta el contingut que es veu a la teva pantalla d'inici." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ajusta el contingut que es veu a la teva pantalla d'inici." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1527,21 +1582,24 @@ msgstr "Gira horitzontalment" msgid "Flip vertically" msgstr "Gira verticalment" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Segueix" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "Segueix" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "Segueix" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Segueix {0}" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1561,7 +1619,7 @@ msgstr "Seguit per {0}" msgid "Followed users" msgstr "Usuaris seguits" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "NomĆ©s els usuaris seguits" @@ -1577,16 +1635,24 @@ msgstr "Seguidors" #~ msgid "following" #~ msgstr "seguint" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Seguint" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Seguint {0}" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Et segueix" @@ -1606,11 +1672,11 @@ msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmació al msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Per motius de seguretat no podrĆ s tornar-la a veure. Si perds aquesta contrasenya necessitarĆ s generar-ne una de nova." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "L'he oblidat" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "He oblidat la contrasenya" @@ -1619,7 +1685,7 @@ msgstr "He oblidat la contrasenya" msgid "Forgot Password" msgstr "He oblidat la contrasenya" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -1640,8 +1706,8 @@ msgstr "ComenƧa" msgid "Go back" msgstr "Ves enrere" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1657,9 +1723,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "VĆ©s a @{queryMaybeHandle}" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1669,12 +1735,12 @@ msgstr "Ves al següent" msgid "Handle" msgstr "Identificador" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "Tens problemes?" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "Ajuda" @@ -1682,11 +1748,11 @@ msgstr "Ajuda" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1695,19 +1761,19 @@ msgid "Here is your app password." msgstr "AquĆ­ tens la teva contrasenya d'aplicació." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "Amaga" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "Amaga" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Amaga l'entrada" @@ -1716,7 +1782,7 @@ msgstr "Amaga l'entrada" msgid "Hide the content" msgstr "Amaga el contingut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" @@ -1724,7 +1790,7 @@ msgstr "Vols amagar aquesta entrada?" msgid "Hide user list" msgstr "Amaga la llista d'usuaris" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Amaga les publicacions de {0} al teu canal" @@ -1748,22 +1814,23 @@ msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propiet msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenim problemes per trobar aquest canal. Potser ha estat eliminat." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "Inici" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "PreferĆØncies dels canals a l'inici" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "PreferĆØncies dels canals a l'inici" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "ProveĆÆdor d'allotjament" @@ -1808,8 +1875,8 @@ msgstr "Imatge" msgid "Image alt text" msgstr "Text alternatiu de la imatge" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "Opcions de la imatge" @@ -1821,11 +1888,11 @@ msgstr "Introdueix el codi que s'ha enviat al teu correu per restablir la contra msgid "Input confirmation code for account deletion" msgstr "Introdueix el codi de confirmació per eliminar el compte" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "Introdueix el correu del compte de Bluesky" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "Introdueix el codi d'invitació per continuar" @@ -1842,56 +1909,55 @@ msgid "Input password for account deletion" msgstr "Introdueix la contrasenya per elimiar el compte" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "Introdueix el telĆØfon per la verificació per SMS" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "Introdueix el telĆØfon per la verificació per SMS" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "Introdueix la contrasenya lligada a {identifier}" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "Introdueix el nom d'usuari o correu que vas utilitzar per registrar-te" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "Introdueix el codi de verificació que t'hem enviat" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "Introdueix el codi de verificació que t'hem enviat" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "Introdueix el teu correu per afegir-te a la llista d'espera de Bluesky" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "Introdueix la teva contrasenya" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Introdueix el teu identificador d'usuari" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Registre de publicació no vĆ lid o no admĆØs" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "Nom d'usuari o contrasenya incorrectes" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Convida" +#~ msgid "Invite" +#~ msgstr "Convida" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Convida un amic" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "Codi d'invitació" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 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." @@ -1900,8 +1966,8 @@ msgid "Invite codes: {0} available" msgstr "Codis d'invitació: {0} disponible" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "Codis d'invitació: {invitesAvailable} disponibles" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Codis d'invitació: {invitesAvailable} disponibles" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1912,6 +1978,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Feines" @@ -1919,8 +1986,8 @@ msgstr "Feines" msgid "Join the waitlist" msgstr "Uneix-te a la llista d'espera" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "Uneix-te a la llista d'espera." @@ -1936,7 +2003,7 @@ msgstr "" msgid "Language selection" msgstr "Tria l'idioma" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "Configuració d'idioma" @@ -1945,7 +2012,7 @@ msgstr "Configuració d'idioma" msgid "Language Settings" msgstr "Configuració d'idioma" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Idiomes" @@ -1983,11 +2050,11 @@ msgstr "Deixa'ls tots sense marcar per veure tots els idiomes." msgid "Leaving Bluesky" msgstr "Sortint de Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara." @@ -2000,16 +2067,17 @@ msgstr "Restablirem la teva contrasenya!" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "Biblioteca" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "Clar" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "M'agrada" @@ -2017,7 +2085,7 @@ msgstr "M'agrada" msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "Li ha agradat a" @@ -2026,7 +2094,7 @@ msgstr "Li ha agradat a" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Li ha agradat a {0} {1}" @@ -2046,15 +2114,15 @@ msgstr "" msgid "liked your post" msgstr "li ha agradat la teva publicació" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "M'agrades" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "Llista" @@ -2062,19 +2130,19 @@ msgstr "Llista" msgid "List Avatar" msgstr "Avatar de la llista" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Llista bloquejada" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Llista per {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Llista eliminada" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Llista silenciada" @@ -2082,35 +2150,35 @@ msgstr "Llista silenciada" msgid "List Name" msgstr "Nom de la llista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Llista desbloquejada" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Llista no silenciada" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Llistes" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Carrega mĆ©s publicacions" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Carrega noves notificacions" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Carrega noves publicacions" @@ -2119,17 +2187,17 @@ msgid "Loading..." msgstr "Carregant…" #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Servidor de desenvolupament local" +#~ msgid "Local dev server" +#~ msgstr "Servidor de desenvolupament local" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "Registre" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2148,7 +2216,15 @@ msgstr "Accedeix a un compte que no estĆ  llistat" msgid "Make sure this is where you intend to go!" msgstr "Assegura't que Ć©s aquĆ­ on vols anar!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Contingut" @@ -2175,14 +2251,14 @@ msgstr "Missatge del servidor: {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "Moderació" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Llista de moderació per {0}" @@ -2191,7 +2267,7 @@ msgstr "Llista de moderació per {0}" msgid "Moderation list by <0/>" msgstr "Llista de moderació per <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2214,7 +2290,7 @@ msgstr "Llistes de moderació" msgid "Moderation Lists" msgstr "Llistes de moderació" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "Configuració de moderació" @@ -2222,17 +2298,17 @@ msgstr "Configuració de moderació" msgid "Moderator has chosen to set a general warning on the content." msgstr "El moderador ha decidit establir un advertiment general sobre el contingut" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "MĆ©s canals" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "MĆ©s opcions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "MĆ©s opcions de publicació" @@ -2240,31 +2316,35 @@ msgstr "MĆ©s opcions de publicació" msgid "Most-liked replies first" msgstr "Respostes amb mĆ©s m'agrada primer" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenciar el compte" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silencia els comptes" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Silencia la llista" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Vols silenciar aquests comptes?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Silencia aquesta llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Silenciada" @@ -2281,7 +2361,7 @@ msgstr "Comptes silenciats" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i de les teves notificacions. Silenciar comptes Ć©s completament privat." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar Ć©s privat. Els comptes silenciats poden interactuar amb tu, però tu no veurĆ s les seves publicacions ni rebrĆ s notificacions seves." @@ -2289,7 +2369,7 @@ msgstr "Silenciar Ć©s privat. Els comptes silenciats poden interactuar amb tu, p msgid "My Birthday" msgstr "El meu aniversari" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "Els meus canals" @@ -2297,10 +2377,14 @@ msgstr "Els meus canals" msgid "My Profile" msgstr "El meu perfil" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "Els meus canals desats" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2314,15 +2398,15 @@ msgstr "Es requereix un nom" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "Navega a la pantalla següent" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "Navega al teu perfil" @@ -2361,16 +2445,17 @@ msgstr "Nova contrasenya" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "Nova publicació" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Nova publicació" @@ -2396,10 +2481,10 @@ msgstr "Les respostes mĆ©s noves primer" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2417,10 +2502,10 @@ msgstr "Següent" msgid "Next image" msgstr "Següent imatge" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2431,7 +2516,7 @@ msgstr "No" msgid "No description" msgstr "Cap descripció" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" @@ -2444,7 +2529,7 @@ msgstr "Encara no tens cap notificació" msgid "No result" msgstr "Cap resultat" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" @@ -2467,6 +2552,7 @@ msgid "Not Applicable." msgstr "No aplicable." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "No s'ha trobat" @@ -2479,13 +2565,13 @@ msgstr "Ara mateix no" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky Ć©s una xarxa oberta i pĆŗblica. Aquesta configuració tan sols limita el teu contingut a l'aplicació de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "Notificacions" @@ -2509,7 +2595,7 @@ msgstr "D'acord" msgid "Oldest replies first" msgstr "Respostes mĆ©s antigues primer" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "Restableix la incorporació" @@ -2521,9 +2607,8 @@ msgstr "Falta el text alternatiu a una o mĆ©s imatges." msgid "Only {0} can reply." msgstr "NomĆ©s {0} poden respondre." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "Ostres!" @@ -2536,15 +2621,15 @@ msgstr "" msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "Obre els enllaƧos al navegador de l'aplicació" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Obre la navegació" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "" @@ -2568,7 +2653,7 @@ msgstr "Obre la cĆ mera del dispositiu" msgid "Opens composer" msgstr "Obre el compositor" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "Obre la configuració d'idioma" @@ -2576,33 +2661,31 @@ msgstr "Obre la configuració d'idioma" msgid "Opens device photo gallery" msgstr "Obre la galeria fotogrĆ fica del dispositiu" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Obre l'editor del perfil per editar el nom, avatar, imatge de fons i descripció" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "Obre la configuració per les incrustacions externes" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Obre la llista de seguidors" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Obre la llista de seguits" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "Obre la llista de codis d'invitació" +#~ msgid "Opens invite code list" +#~ msgstr "Obre la llista de codis d'invitació" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "Obre la llista de codis d'invitació" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "Obre el modal per confirmar l'eliminació del compte. Requereix un codi de correu" @@ -2610,39 +2693,39 @@ msgstr "Obre el modal per confirmar l'eliminació del compte. Requereix un codi msgid "Opens modal for using custom domain" msgstr "Obre el modal per a utilitzar un domini personalitzat" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "Obre la configuració de la moderació" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "Obre el formulari de restabliment de la contrasenya" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "Obre pantalla per editar els canals desats" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "Obre la pantalla amb tots els canals desats" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "Obre la pĆ gina de configuració de les contrasenyes d'aplicació" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "Obre les preferĆØncies de canals de l'inici" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "Obre la pĆ gina de l'historial" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "Obre la pĆ gina de registres del sistema" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "Obre les preferĆØncies dels fils de debat" @@ -2659,8 +2742,8 @@ msgid "Other account" msgstr "Un altre compte" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Un altre servei" +#~ msgid "Other service" +#~ msgstr "Un altre servei" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2674,9 +2757,9 @@ msgstr "PĆ gina no trobada" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2690,11 +2773,11 @@ msgstr "Contrasenya actualitzada" msgid "Password updated!" msgstr "Contrasenya actualitzada!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "Persones seguint a @{0}" @@ -2711,15 +2794,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "TelĆØfon" +#~ msgid "Phone number" +#~ msgstr "TelĆØfon" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Fixa a l'inici" @@ -2740,14 +2823,18 @@ msgstr "Reprodueix el vĆ­deo" msgid "Plays the GIF" msgstr "Reprodueix el GIF" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Tria el teu identificador." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Tria la teva contrasenya." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Confirma el teu correu abans de canviar-lo. Aquest Ć©s un requisit temporal mentre no s'afegeixin eines per actualitzar el correu. Aviat no serĆ  necessari," @@ -2757,22 +2844,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Introdueix un nom per a la contrasenya de la vostra aplicació. No es permeten tot en espais." #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "Introdueix un telĆØfon que pugui rebre missatges SMS" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "Introdueix un telĆØfon que pugui rebre missatges SMS" #: src/view/com/modals/AddAppPasswords.tsx:145 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/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "Introdueix el codi que has rebut per SMS" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "Introdueix el codi que has rebut per SMS" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "Introdueix el codi de verificació enviat a {phoneNumberFormatted}" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "Introdueix el codi de verificació enviat a {phoneNumberFormatted}" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Introdueix el teu correu." @@ -2810,7 +2897,7 @@ msgctxt "action" msgid "Post" msgstr "Publica" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "Publicació" @@ -2821,21 +2908,21 @@ msgstr "Publicació" #~ msgid "Post" #~ msgstr "Publicació" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Publicació per {0}" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "Publicació per @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Publicació eliminada" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "Publicació oculta" @@ -2847,11 +2934,11 @@ msgstr "Idioma de la publicació" msgid "Post Languages" msgstr "Idiomes de les publicacions" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "Publicació no trobada" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "Publicacions" @@ -2875,27 +2962,27 @@ msgstr "Idioma principal" msgid "Prioritize Your Follows" msgstr "Prioritza els usuaris que segueixes" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "Privacitat" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "PolĆ­tica de privacitat" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "Processant…" #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "Perfil" @@ -2903,7 +2990,7 @@ msgstr "Perfil" msgid "Profile updated" msgstr "Perfil actualitzat" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "Protegeix el teu compte verificant el teu correu." @@ -2964,12 +3051,12 @@ msgstr "Usuaris recomanats" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Elimina" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Vols eliminar {0} dels teus canals?" @@ -2982,11 +3069,11 @@ msgstr "Elimina el compte" msgid "Remove feed" msgstr "Elimina el canal" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" @@ -3002,7 +3089,7 @@ msgstr "Elimina la visualització prĆØvia de la imatge" msgid "Remove repost" msgstr "Elimina la republicació" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Vols eliminar aquest canal dels meus canals?" @@ -3015,8 +3102,8 @@ msgstr "Vols eliminar aquest canal dels teus canals desats?" msgid "Removed from list" msgstr "Elimina de la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Eliminat dels meus canals" @@ -3024,7 +3111,7 @@ msgstr "Eliminat dels meus canals" msgid "Removes default thumbnail from {0}" msgstr "Elimina la miniatura per defecte de {0}" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "Respostes" @@ -3037,12 +3124,12 @@ msgctxt "action" msgid "Reply" msgstr "Respon" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtres de resposta" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Resposta a <0/>" @@ -3051,20 +3138,20 @@ msgstr "Resposta a <0/>" msgid "Report {collectionName}" msgstr "Informa de {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Informa del compte" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Informa del canal" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Informa de la llista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Informa de la publicació" @@ -3093,7 +3180,7 @@ msgstr "Republica o cita la publicació" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3101,7 +3188,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "Republicada per {0}" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Republicada per <0/>" @@ -3109,7 +3196,7 @@ msgstr "Republicada per <0/>" msgid "reposted your post" msgstr "ha republicat la teva publicació" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicació" @@ -3119,19 +3206,19 @@ msgid "Request Change" msgstr "Demana un canvi" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "Demana un codi" +#~ msgid "Request code" +#~ msgstr "Demana un codi" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "Requereix un text alternatiu abans de publicar" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Requerit per aquest proveĆÆdor" @@ -3144,66 +3231,65 @@ msgstr "Codi de restabliment" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "Restableix la incorporació" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "Restableix l'estat de la incorporació" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "Restableix la contrasenya" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "Restableix les preferĆØncies" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "Restableix l'estat de les preferĆØncies" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "Restableix l'estat de la incorporació" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "Restableix l'estat de les preferĆØncies" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "Torna a intentar iniciar sessió" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "Torna a intentar l'Ćŗltima acció, que ha donat error" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Torna-ho a provar" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "Torna-ho a provar" +#~ msgid "Retry." +#~ msgstr "Torna-ho a provar" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "Torna a la pĆ gina anterior" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "ENTORN DE PROVES. Les publicacions i els comptes no són permanents." +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "ENTORN DE PROVES. Les publicacions i els comptes no són permanents." #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3216,7 +3302,7 @@ msgstr "Desa" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Desa" @@ -3256,11 +3342,11 @@ msgstr "" msgid "Scroll to top" msgstr "DesplaƧa't cap a dalt" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3268,8 +3354,8 @@ msgstr "DesplaƧa't cap a dalt" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Cerca" @@ -3301,8 +3387,8 @@ msgid "Select {item}" msgstr "Selecciona {item}" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Selecciona Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "Selecciona Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3312,8 +3398,8 @@ msgstr "Selecciona d'un compte existent" msgid "Select option {i} of {numItems}" msgstr "Selecciona l'opció {i} de {numItems}" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "Selecciona el servei" @@ -3321,7 +3407,11 @@ msgstr "Selecciona el servei" msgid "Select some accounts below to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3342,8 +3432,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "Selecciona el paĆ­s del teu telĆØfon" +#~ msgid "Select your phone's country" +#~ msgstr "Selecciona el paĆ­s del teu telĆØfon" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3353,7 +3443,7 @@ msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal." msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3375,8 +3465,8 @@ msgstr "Envia correu" #~ msgid "Send Email" #~ msgstr "Envia correu" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "Envia comentari" @@ -3388,33 +3478,37 @@ msgstr "Envia informe" msgid "Sends email with confirmation code for account deletion" msgstr "Envia un correu amb el codi de confirmació per l'eliminació del compte" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "Estableix {value} per a la polĆ­tica de moderació de contingut {labelGroup}" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "Estableix l'edat" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "Estableix el tema de colors a fosc" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "Estableix el tema de colors a clar" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "Estableix el tema de colors a la configuració del sistema" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3422,19 +3516,19 @@ msgstr "" msgid "Set new password" msgstr "Estableix una nova contrasenya" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "Estableix una contrasenya" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Posa \"No\" a aquesta opció per amagar totes les publicacions citades del teu canal. Les republicacions encara seran visibles." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Posa \"No\" a aquesta opció per amagar totes les respostes del teu canal." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Posa \"No\" a aquesta opció per amagar totes les republicacions del teu canal." @@ -3443,8 +3537,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Posa \"SĆ­\" a aquesta opció per mostrar les respostes en vista de fil de debat. Aquesta Ć©s una opció experimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Posa \"SĆ­\" a aquesta opció per mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta Ć©s una opció experimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Posa \"SĆ­\" a aquesta opció per mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta Ć©s una opció experimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3454,24 +3552,24 @@ msgstr "" msgid "Sets Bluesky username" msgstr "Estableix un nom d'usuari de Bluesky" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "Estableix un correu per restablir la contrasenya" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "Estableix un proveĆÆdor d'allotjament per restablir la contrasenya" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "Estableix el servidor pel cient de Bluesky" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "Configuració" @@ -3484,25 +3582,25 @@ msgctxt "action" msgid "Share" msgstr "Comparteix" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Comparteix" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Comparteix el canal" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "Mostra" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Mostra totes les respostes" @@ -3514,21 +3612,21 @@ msgstr "Mostra igualment" msgid "Show embeds from {0}" msgstr "Mostra els incrustats de {0}" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Mostra seguidors semblants a {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Mostra mĆ©s" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostra les publicacions dels meus canals" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostra les publicacions citades" @@ -3544,7 +3642,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostra les respostes" @@ -3560,11 +3658,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Mostra respostes amb almenys {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostra republicacions" @@ -3581,17 +3679,18 @@ msgstr "Mostra el contingut" msgid "Show users" msgstr "Mostra usuaris" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Mostra una llista d'usuaris semblants a aquest" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Mostra les publicacions de {0} al teu canal" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3604,8 +3703,8 @@ msgid "Sign in" msgstr "Inicia sessió" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Inicia sessió" @@ -3618,14 +3717,14 @@ msgstr "Inicia sessió com a {0}" msgid "Sign in as..." msgstr "Inicia sessió com a …" -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Inicia sessió en" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "Tanca sessió" @@ -3649,7 +3748,7 @@ msgstr "Registra't o inicia sessió per unir-te a la conversa" msgid "Sign-in Required" msgstr "Es requereix iniciar sessió" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "S'ha iniciat sessió com a" @@ -3662,7 +3761,7 @@ msgid "Signs {0} out of Bluesky" msgstr "Tanca la sessió de Bluesky de {0}" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "Salta aquest pas" @@ -3672,22 +3771,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "Verificació per SMS" +#~ msgid "SMS verification" +#~ msgstr "Verificació per SMS" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "Alguna cosa ha fallat i no estem segurs de quĆØ." +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Alguna cosa ha fallat i no estem segurs de quĆØ." #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "Alguna cosa ha fallat. Comprova el teu correu i torna-ho a provar." -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "La teva sessió ha caducat. Torna a inciar-la." @@ -3708,10 +3807,10 @@ msgid "Square" msgstr "Quadrat" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "Posada en escena" +#~ msgid "Staging" +#~ msgstr "Posada en escena" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "PĆ gina d'estat" @@ -3719,12 +3818,12 @@ msgstr "PĆ gina d'estat" msgid "Step {0} of {numSteps}" msgstr "Pas {0} de {numSteps}" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara." -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "Historial" @@ -3732,7 +3831,7 @@ msgstr "Historial" msgid "Submit" msgstr "Envia" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Subscriure's" @@ -3741,7 +3840,7 @@ msgstr "Subscriure's" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Subscriure's a la llista" @@ -3757,35 +3856,35 @@ msgstr "Suggeriments per tu" msgid "Suggestive" msgstr "Suggerent" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Suport" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "Llisca cap amunt per veure'n mĆ©s" +#~ msgid "Swipe up to see more" +#~ msgstr "Llisca cap amunt per veure'n mĆ©s" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "Canvia el compte" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "Canvia a {0}" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "Canvia en compte amb el que tens iniciada la sessió" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "Registres del sistema" @@ -3801,14 +3900,14 @@ msgstr "Toca per veure-ho completament" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Condicions del servei" @@ -3817,7 +3916,11 @@ msgstr "Condicions del servei" msgid "Text input field" msgstr "Camp d'introducció de text" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "El compte podrĆ  interactuar amb tu desprĆ©s del desbloqueig." @@ -3833,7 +3936,7 @@ msgstr "La polĆ­tica de drets d'autoria ha estat traslladada a <0/>" msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "Ɖs possible que la publicació s'hagi esborrat." @@ -3853,11 +3956,11 @@ msgstr "El formulari de suport ha estat traslladat. Si necessites ajuda, <0/> o msgid "The Terms of Service have been moved to" msgstr "Les condicions del servei han estat traslladades a " -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Hi ha hagut un problema per contactar amb el servidor, comprova la teva connexió a internet i torna-ho a provar" @@ -3865,12 +3968,12 @@ msgstr "Hi ha hagut un problema per contactar amb el servidor, comprova la teva msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Hi ha hagut un problema per eliminar aquest canal, comprova la teva connexió a internet i torna-ho a provar" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Hi ha hagut un problema per actualitzar els teus canals, comprova la teva connexió a internet i torna-ho a provar" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3879,9 +3982,9 @@ msgstr "Hi ha hagut un problema per contactar amb el servidor" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Hi ha hagut un problema per contactar amb el teu servidor" @@ -3911,19 +4014,21 @@ msgstr "Hi ha hagut un problema en sincronitzar les teves preferĆØncies amb el s msgid "There was an issue with fetching your app passwords" msgstr "Hi ha hagut un problema en obtenir les teves contrasenyes d'aplicació" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Hi ha hagut un problema! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Hi ha hagut un problema. Comprova la teva connexió a internet i torna-ho a provar." @@ -3931,13 +4036,13 @@ msgstr "Hi ha hagut un problema. Comprova la teva connexió a internet i torna-h msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "S'ha produĆÆt un problema inesperat a l'aplicació. Fes-nos saber si això t'ha passat a tu!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "Aquest telĆØfon Ć©s erroni. Tria el teu paĆ­s i introdueix el teu telĆØfon complert" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "Aquest telĆØfon Ć©s erroni. Tria el teu paĆ­s i introdueix el teu telĆØfon complert" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3966,13 +4071,17 @@ msgstr "Aquest contingut no estĆ  disponible degut a que un dels usuaris involuc msgid "This content is not viewable without a Bluesky account." msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Aquest canal estĆ  rebent moltes visites actualment i estĆ  temporalment inactiu. Prova-ho mĆ©s tard." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Aquest canal estĆ  buit!" @@ -4004,7 +4113,7 @@ msgstr "Aquesta llista estĆ  buida!" msgid "This name is already in use" msgstr "Aquest nom ja estĆ  en Ćŗs" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Aquesta publicació ha estat esborrada." @@ -4028,12 +4137,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Aquesta advertĆØncia nomĆ©s estĆ  disponible per publicacions amb contingut adjuntat." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Això amagarĆ  aquesta publicació dels teus canals." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "PreferĆØncies dels fils de debat" @@ -4041,7 +4150,7 @@ msgstr "PreferĆØncies dels fils de debat" msgid "Threaded Mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "PreferĆØncies dels fils de debat" @@ -4053,13 +4162,13 @@ msgstr "Commuta el menĆŗ desplegable" msgid "Transformations" msgstr "Transformacions" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Tradueix" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "Torna-ho a provar" @@ -4068,34 +4177,34 @@ msgstr "Torna-ho a provar" #~ msgid "Try again" #~ msgstr "Torna-ho a provar" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Desbloqueja la llista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Deixa de silenciar la llista" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Desbloqueja" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Desbloqueja" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Desbloqueja el compte" @@ -4111,40 +4220,41 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixa de seguir" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "No compleixes les condicions per crear un compte." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "DesfĆ©s el m'agrada" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Deixa de silenciar" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Deixa de silenciar el compte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Deixa de fixar" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Desancora la llista de moderació" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "No desis" @@ -4187,8 +4297,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "Utilitza-ho per iniciar sessió a l'altra aplicació, juntament amb el teu identificador." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "Utilitza el teu domini com a client proveĆÆdor del servei de Bluesky" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Utilitza el teu domini com a client proveĆÆdor del servei de Bluesky" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4206,11 +4316,11 @@ msgstr "Usuari bloquejat per una llista" msgid "User Blocks You" msgstr "L'usuari t'ha bloquejat" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Identificador d'usuari" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Llista d'usuaris per {0}" @@ -4219,7 +4329,7 @@ msgstr "Llista d'usuaris per {0}" msgid "User list by <0/>" msgstr "Llista d'usuaris feta per <0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4237,8 +4347,8 @@ msgstr "Llista d'usuaris actualitzada" msgid "User Lists" msgstr "Llistes d'usuaris" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Nom d'usuari o correu" @@ -4255,18 +4365,18 @@ msgid "Users in \"{0}\"" msgstr "Usuaris a \"{0}\"" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "Codi de verificació" +#~ msgid "Verification code" +#~ msgstr "Codi de verificació" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "Verifica el correu" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "Verifica el meu correu" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "Verifica el meu correu" @@ -4283,7 +4393,7 @@ msgstr "Verifica el teu correu" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Veure l'avatar de {0}" @@ -4308,15 +4418,15 @@ msgid "Visit Site" msgstr "Visita el lloc web" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "Adverteix" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4328,7 +4438,7 @@ msgstr "" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "Ja no hi ha mĆ©s publicacions dels usuaris que segueixes. AquĆ­ n'hi ha altres de <0/>." -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4336,7 +4446,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4348,11 +4458,11 @@ msgstr "Analitzarem la teva apelĀ·lació rĆ pidament." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Ens fa molta ilĀ·lusió que t'uneixis a nosaltres!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua, posa't en contacte amb el creador de la llista, @{handleOrDid}." @@ -4379,7 +4489,7 @@ msgstr "Quin problema hi ha amb {collectionName}?" #~ msgid "What's next?" #~ msgstr "ĀæQuĆ© sigue?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "QuĆØ hi ha de nou" @@ -4415,20 +4525,20 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "XXXXXX" +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" msgstr "SĆ­" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4458,7 +4568,7 @@ msgstr "Encara no tens codis d'invitació! Te n'enviarem quan portis una mica m msgid "You don't have any pinned feeds." msgstr "No tens cap canal fixat." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "No tens cap canal desat!" @@ -4466,7 +4576,7 @@ msgstr "No tens cap canal desat!" msgid "You don't have any saved feeds." msgstr "No tens cap canal desat." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "Has bloquejat l'autor o has estat bloquejat per ell." @@ -4506,7 +4616,7 @@ msgstr "Encara no has creat cap contrasenya d'aplicació. Pots fer-ho amb el bot msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "Encara no has silenciat cap compte. Per fer-ho, vĆ©s al seu perfil i selecciona \"Silencia compte\" en el menĆŗ del seu compte." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "Has de tenir 18 anys o mĆ©s per habilitar el contingut per a adults." @@ -4514,11 +4624,11 @@ msgstr "Has de tenir 18 anys o mĆ©s per habilitar el contingut per a adults." msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Ja no rebrĆ s mĆ©s notificacions d'aquest debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Ara rebrĆ s notificacions d'aquest debat" @@ -4530,9 +4640,9 @@ msgstr "RebrĆ s un correu amb un \"codi de restabliment\". Introdueix aquĆ­ el c msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4544,7 +4654,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has arribat al final del vostre cabal! Cerca alguns comptes mĆ©s per seguir." -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "El teu compte" @@ -4552,7 +4662,11 @@ msgstr "El teu compte" msgid "Your account has been deleted" msgstr "El teu compte s'ha eliminat" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "La teva data de naixement" @@ -4564,7 +4678,7 @@ msgstr "La teva elecció es desarĆ , però es pot canviar mĆ©s endavant a la con msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4586,7 +4700,7 @@ msgstr "El teu correu encara no s'ha verificat. Et recomanem fer-ho per segureta msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "El teu canal de seguint estĆ  buit! Segueix a mĆ©s usuaris per saber quĆØ estĆ  passant." -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "El teu identificador complet serĆ " @@ -4601,8 +4715,8 @@ msgstr "El teu identificador complet serĆ  <0>@{0}" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Els teus codis d'invitació no es mostren quan has iniciat sessió amb una contrasenya d'aplicació" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Els teus codis d'invitació no es mostren quan has iniciat sessió amb una contrasenya d'aplicació" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4619,7 +4733,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Les teves publicacions, m'agrades i bloquejos són pĆŗblics. Els comptes silenciats són privats." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "El teu perfil" @@ -4627,6 +4741,6 @@ msgstr "El teu perfil" msgid "Your reply has been published" msgstr "S'ha publicat a teva resposta" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "El teu identificador d'usuari" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index f5bae98a93..a4b0a8cb3c 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} Einladungscode verfügbar" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} Einladungscode verfügbar" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} Einladungscodes verfügbar" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} Einladungscodes verfügbar" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "<0/> Mitglieder" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "" @@ -63,7 +63,7 @@ msgstr "<0>Folge einigen<1>empfohlenen<2>Nutzern" msgid "<0>Welcome to<1>Bluesky" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "" @@ -80,26 +80,26 @@ msgstr "Eine neue Version der App ist verfügbar. Bitte aktualisiere die App, um msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "Konto" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -119,11 +119,11 @@ msgstr "Kontoeinstellungen" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -142,8 +142,8 @@ msgstr "Eine Inhaltswarnung hinzufügen" msgid "Add a user to this list" msgstr "Einen Nutzer zu dieser Liste hinzufügen" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "Konto hinzufügen" @@ -180,12 +180,12 @@ msgstr "Link-Karte hinzufügen:" msgid "Add the following DNS record to your domain:" msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Zu Listen hinzufügen" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Zu meinen Feeds hinzufügen" @@ -198,11 +198,11 @@ msgstr "" msgid "Added to list" msgstr "Zur Liste hinzugefügt" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem Feed angezeigt zu werden." @@ -210,7 +210,7 @@ msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem msgid "Adult Content" msgstr "Inhalt für Erwachsene" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "" @@ -218,11 +218,15 @@ msgstr "" #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "Erweitert" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -281,7 +285,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "" @@ -289,13 +293,13 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "App-Passwƶrter" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "App-Passwƶrter" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "" @@ -311,7 +315,7 @@ msgstr "Einspruch gegen diese Entscheidung" msgid "Appeal this decision." msgstr "Einspruch gegen diese Entscheidung." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "Erscheinungsbild" @@ -323,11 +327,11 @@ msgstr "Bist du sicher, dass du das App-Passwort \"{name}\" lƶschen mƶchtest?" msgid "Are you sure you'd like to discard this draft?" msgstr "Bist du sicher, dass du diesen Entwurf verwerfen mƶchtest?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Bist du sicher?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Bist du sicher? Dies kann nicht rückgƤngig gemacht werden." @@ -343,65 +347,65 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Künstlerische oder nicht-erotische Nacktheit." -#: src/view/com/post-thread/PostThread.tsx:421 -msgctxt "action" -msgid "Back" -msgstr "" - -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Zurück" +#: src/view/com/post-thread/PostThread.tsx:479 +msgctxt "action" +msgid "Back" +msgstr "" + #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "Grundlagen" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "Geburtstag" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "Geburtstag:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Blockliste" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Diese Konten blockieren?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -414,7 +418,7 @@ msgstr "Blockierte Konten" msgid "Blocked Accounts" msgstr "Blockierte Konten" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockierte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤhnen oder anderweitig mit dir interagieren." @@ -422,22 +426,29 @@ msgstr "Blockierte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤh msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockierte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤhnen oder anderweitig mit dir interagieren. Du wirst ihre Inhalte nicht sehen und sie werden daran gehindert, deine zu sehen." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Gesperrter Beitrag." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Die Sperrung ist ƶffentlich. Gesperrte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤhnen oder anderweitig mit dir interagieren." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Blog" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -462,24 +473,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "Bluesky zeigt dein Profil und deine BeitrƤge nicht für abgemeldete Nutzer an. Andere Apps kommen dieser Aufforderung mƶglicherweise nicht nach." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Build-Version {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "Business" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -498,8 +510,8 @@ msgid "by you" msgstr "" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "Kamera" @@ -507,16 +519,7 @@ msgstr "Kamera" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten. Muss mindestens 4 Zeichen lang sein, darf aber nicht lƤnger als 32 Zeichen sein." -#: src/view/com/modals/Confirm.tsx:88 -#: src/view/com/modals/Confirm.tsx:91 -#: src/view/com/modals/CreateOrEditList.tsx:360 -#: src/view/com/modals/DeleteAccount.tsx:156 -#: src/view/com/modals/DeleteAccount.tsx:234 -msgctxt "action" -msgid "Cancel" -msgstr "" - -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -537,6 +540,15 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" +#: src/view/com/modals/Confirm.tsx:88 +#: src/view/com/modals/Confirm.tsx:91 +#: src/view/com/modals/CreateOrEditList.tsx:360 +#: src/view/com/modals/DeleteAccount.tsx:156 +#: src/view/com/modals/DeleteAccount.tsx:234 +msgctxt "action" +msgid "Cancel" +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:230 msgid "Cancel account deletion" @@ -567,17 +579,17 @@ msgstr "Suche abbrechen" msgid "Cancel waitlist signup" msgstr "Anmeldung zur Warteliste abbrechen" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "Ƅndern" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Handle Ƥndern" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Handle Ƥndern" @@ -585,11 +597,11 @@ msgstr "Handle Ƥndern" msgid "Change my email" msgstr "Meine E-Mail Ƥndern" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -597,7 +609,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -605,8 +617,8 @@ msgstr "" msgid "Change Your Email" msgstr "Deine E-Mail Ƥndern" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -626,11 +638,11 @@ msgstr "Überprüfe deinen Posteingang auf eine E-Mail mit dem BestƤtigungscode msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Service wƤhlen" @@ -651,29 +663,29 @@ msgstr "" msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "WƤhle dein Passwort" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "Alle alten Speicherdaten lƶschen" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "Alle alten Speicherdaten lƶschen (danach neu starten)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "Alle Speicherdaten lƶschen" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "Alle Speicherdaten lƶschen (danach neu starten)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "Suchanfrage lƶschen" @@ -691,7 +703,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -743,7 +756,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -752,6 +765,10 @@ msgstr "Community-Richtlinien" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -764,22 +781,22 @@ msgstr "Antwort verfassen" msgid "Configure content filtering setting for category: {0}" msgstr "" +#: src/components/Prompt.tsx:113 +#: src/view/com/modals/AppealLabel.tsx:98 +#: src/view/com/modals/SelfLabel.tsx:154 +#: src/view/com/modals/VerifyEmail.tsx:231 +#: src/view/com/modals/VerifyEmail.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 +#: src/view/screens/PreferencesThreads.tsx:159 +msgid "Confirm" +msgstr "BestƤtigen" + #: src/view/com/modals/Confirm.tsx:75 #: src/view/com/modals/Confirm.tsx:78 msgctxt "action" msgid "Confirm" msgstr "" -#: src/components/Prompt.tsx:114 -#: src/view/com/modals/AppealLabel.tsx:98 -#: src/view/com/modals/SelfLabel.tsx:154 -#: src/view/com/modals/VerifyEmail.tsx:231 -#: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 -#: src/view/screens/PreferencesThreads.tsx:159 -msgid "Confirm" -msgstr "BestƤtigen" - #: src/view/com/modals/ChangeEmail.tsx:193 #: src/view/com/modals/ChangeEmail.tsx:195 msgid "Confirm Change" @@ -793,7 +810,7 @@ msgstr "BestƤtige die Spracheinstellungen für den Inhalt" msgid "Confirm delete account" msgstr "BestƤtige das Lƶschen des Kontos" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "" @@ -807,12 +824,12 @@ msgstr "BestƤtigungscode" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Verbinden..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -842,11 +859,11 @@ msgstr "Inhaltswarnung" msgid "Content warnings" msgstr "Inhaltswarnungen" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -855,15 +872,15 @@ msgstr "Fortfahren" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -876,13 +893,13 @@ msgstr "" msgid "Copied" msgstr "Kopiert" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -894,28 +911,28 @@ msgstr "" msgid "Copy" msgstr "Kopieren" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Link zum Beitrag kopieren" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Link zum Profil kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" @@ -924,20 +941,20 @@ msgid "Could not load list" msgstr "Liste konnte nicht geladen werden" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "Ein neues Konto erstellen" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Konto erstellen" @@ -946,7 +963,7 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "Neues Konto erstellen" @@ -970,12 +987,17 @@ msgstr "" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "Benutzerdefinierte Domain" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -987,8 +1009,8 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "" @@ -996,7 +1018,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1004,7 +1026,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "Konto lƶschen" @@ -1017,8 +1039,8 @@ msgstr "Konto lƶschen" msgid "Delete app password" msgstr "App-Passwort lƶschen" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Liste lƶschen" @@ -1030,23 +1052,23 @@ msgstr "Mein Konto lƶschen" #~ msgid "Delete my account…" #~ msgstr "Mein Konto lƶschen…" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Beitrag lƶschen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Diesen Beitrag lƶschen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "Gelƶschter Beitrag." @@ -1058,14 +1080,14 @@ msgid "Description" msgstr "Beschreibung" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Entwickler-Tools" +#~ msgid "Developer Tools" +#~ msgstr "Entwickler-Tools" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1086,9 +1108,13 @@ msgstr "Apps daran hindern, abgemeldeten Nutzern mein Konto zu zeigen" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "Entdecke neue Feeds" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "Entdecke neue Feeds" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1102,7 +1128,7 @@ msgstr "Anzeigename" msgid "Domain verified!" msgstr "Domain verifiziert!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "" @@ -1119,6 +1145,8 @@ msgctxt "action" msgid "Done" msgstr "" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1127,7 +1155,9 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "Erledigt" @@ -1139,7 +1169,16 @@ msgstr "Erledigt{extraText}" msgid "Double tap to sign in" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1185,7 +1224,7 @@ msgstr "" msgid "Edit image" msgstr "Bild bearbeiten" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Details der Liste bearbeiten" @@ -1193,8 +1232,8 @@ msgstr "Details der Liste bearbeiten" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" @@ -1203,15 +1242,15 @@ msgstr "Meine Feeds bearbeiten" msgid "Edit my profile" msgstr "Mein Profil bearbeiten" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Profil bearbeiten" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Gespeicherte Feeds bearbeiten" @@ -1231,17 +1270,15 @@ msgstr "" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "E-Mail" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "E-Mail-Adresse" @@ -1258,7 +1295,7 @@ msgstr "E-Mail aktualisiert" msgid "Email verified" msgstr "" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "E-Mail:" @@ -1266,7 +1303,7 @@ msgstr "E-Mail:" msgid "Enable {0} only" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "" @@ -1283,11 +1320,11 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Aktiviere diese Einstellung, um nur Antworten von Personen zu sehen, denen du folgst." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "Ende des Feeds" @@ -1307,11 +1344,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "Gib die Domain ein, die du verwenden mƶchtest" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "Gib die E-Mail ein, die du zur Erstellung deines Kontos verwendet hast. Wir schicken dir einen \"Reset-Code\", damit du ein neues Passwort festlegen kannst." -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "" @@ -1320,7 +1357,7 @@ msgstr "" msgid "Enter your email" msgstr "" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Gib deine E-Mail-Adresse ein" @@ -1333,13 +1370,17 @@ msgid "Enter your new email address below." msgstr "Gib unten deine neue E-Mail-Adresse ein." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Gib deinen Benutzernamen und dein Passwort ein" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Fehler:" @@ -1374,6 +1415,15 @@ msgstr "Alt-Text erweitern" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "" @@ -1383,13 +1433,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "" @@ -1402,7 +1452,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1411,15 +1461,15 @@ msgstr "" msgid "Failed to load recommended feeds" msgstr "Empfohlene Feeds konnten nicht geladen werden" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Feed offline" @@ -1427,18 +1477,19 @@ msgstr "Feed offline" msgid "Feed Preferences" msgstr "Feed-Einstellungen" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Feeds" @@ -1458,7 +1509,7 @@ msgstr "Feeds werden von Nutzern erstellt, um Inhalte zu kuratieren. WƤhle eini msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds sind benutzerdefinierte Algorithmen, die Nutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1484,10 +1535,14 @@ msgstr "Finde Nutzer mit der Suchfunktion auf der rechten Seite" msgid "Finding similar accounts..." msgstr "Suche nach Ƥhnlichen Konten..." -#: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." msgstr "" +#: src/view/screens/PreferencesHomeFeed.tsx:111 +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "" + #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." msgstr "" @@ -1509,21 +1564,24 @@ msgstr "" msgid "Flip vertically" msgstr "" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Folgen" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "Folgen" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1543,7 +1601,7 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "" @@ -1555,16 +1613,24 @@ msgstr "" msgid "Followers" msgstr "Follower" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Folge ich" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Folgt dir" @@ -1584,11 +1650,11 @@ msgstr "Aus Sicherheitsgründen müssen wir dir einen BestƤtigungscode an deine msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Wenn du dieses Passwort verlierst, musst du ein neues generieren." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "Vergessen" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "Passwort vergessen" @@ -1597,7 +1663,7 @@ msgstr "Passwort vergessen" msgid "Forgot Password" msgstr "Passwort vergessen" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1618,8 +1684,8 @@ msgstr "Los geht's" msgid "Go back" msgstr "Gehe zurück" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1635,9 +1701,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1647,12 +1713,12 @@ msgstr "Gehe zum nƤchsten" msgid "Handle" msgstr "Handle" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "Hilfe" @@ -1660,11 +1726,11 @@ msgstr "Hilfe" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1672,20 +1738,20 @@ msgstr "" msgid "Here is your app password." msgstr "Hier ist dein App-Passwort." -#: src/view/com/modals/ContentFilteringSettings.tsx:219 -#: src/view/com/notifications/FeedItem.tsx:325 -msgctxt "action" -msgid "Hide" -msgstr "" - #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "Ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 +#: src/view/com/notifications/FeedItem.tsx:325 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Beitrag ausblenden" @@ -1694,7 +1760,7 @@ msgstr "Beitrag ausblenden" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Diesen Beitrag ausblenden?" @@ -1702,7 +1768,7 @@ msgstr "Diesen Beitrag ausblenden?" msgid "Hide user list" msgstr "Benutzerliste ausblenden" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1726,22 +1792,23 @@ msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informier msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hm, wir haben Probleme, diesen Feed zu finden. Mƶglicherweise wurde er gelƶscht." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "Home" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "Home-Feed-Einstellungen" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "Home-Feed-Einstellungen" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "Hosting-Anbieter" @@ -1781,8 +1848,8 @@ msgstr "" msgid "Image alt text" msgstr "Bild-Alt-Text" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "Bild-Optionen" @@ -1794,11 +1861,11 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "" @@ -1815,56 +1882,55 @@ msgid "Input password for account deletion" msgstr "" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "Ungültiger Benutzername oder Passwort" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Einladen" +#~ msgid "Invite" +#~ msgstr "Einladen" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Einen Freund einladen" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "Einladungscode" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 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." @@ -1873,8 +1939,8 @@ msgid "Invite codes: {0} available" msgstr "" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "Einladungscodes: {invitesAvailable} verfügbar" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Einladungscodes: {invitesAvailable} verfügbar" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1885,6 +1951,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Jobs" @@ -1892,8 +1959,8 @@ msgstr "Jobs" msgid "Join the waitlist" msgstr "Der Warteliste beitreten" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "Der Warteliste beitreten." @@ -1909,7 +1976,7 @@ msgstr "" msgid "Language selection" msgstr "Sprachauswahl" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "" @@ -1918,7 +1985,7 @@ msgstr "" msgid "Language Settings" msgstr "Spracheinstellungen" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Sprachen" @@ -1956,11 +2023,11 @@ msgstr "Lass alle KontrollkƤstchen deaktiviert, um alle Sprachen zu sehen." msgid "Leaving Bluesky" msgstr "Bluesky verlassen" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -1973,16 +2040,17 @@ msgstr "Lass uns dein Passwort zurücksetzen!" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "Bibliothek" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "" @@ -1990,7 +2058,7 @@ msgstr "" msgid "Like this feed" msgstr "" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "" @@ -1999,7 +2067,7 @@ msgstr "" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2015,15 +2083,15 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "" @@ -2031,19 +2099,19 @@ msgstr "" msgid "List Avatar" msgstr "" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2051,35 +2119,35 @@ msgstr "" msgid "List Name" msgstr "" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Listen" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Mehr BeitrƤge laden" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Neue Benachrichtigungen laden" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Neue BeitrƤge laden" @@ -2088,17 +2156,17 @@ msgid "Loading..." msgstr "Wird geladen..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Lokaler Entwicklungsserver" +#~ msgid "Local dev server" +#~ msgstr "Lokaler Entwicklungsserver" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2114,7 +2182,15 @@ msgstr "Anmeldung bei einem Konto, das nicht aufgelistet ist" msgid "Make sure this is where you intend to go!" msgstr "Vergewissere dich, dass du auch wirklich dorthin gehen willst!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Medien" @@ -2137,14 +2213,14 @@ msgstr "Nachricht vom Server: {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "Moderation" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2153,7 +2229,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2176,7 +2252,7 @@ msgstr "Moderationslisten" msgid "Moderation Lists" msgstr "Moderationslisten" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "" @@ -2184,17 +2260,17 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "Mehr Feeds" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Mehr Optionen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2202,31 +2278,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Konto stummschalten" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Konten stummschalten" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Diese Konten stummschalten?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2243,7 +2323,7 @@ msgstr "Stummgeschaltete Konten" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Bei stummgeschalteten Konten werden ihre BeitrƤge aus deinem Feed und deinen Benachrichtigungen entfernt. Stummschaltungen sind vƶllig privat." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Stummschaltung ist privat. Stummgeschaltete Konten kƶnnen mit dir interagieren, aber du siehst ihre BeitrƤge nicht und erhƤltst keine Benachrichtigungen von ihnen." @@ -2251,7 +2331,7 @@ msgstr "Stummschaltung ist privat. Stummgeschaltete Konten kƶnnen mit dir inter msgid "My Birthday" msgstr "Mein Geburtstag" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "Meine Feeds" @@ -2259,10 +2339,14 @@ msgstr "Meine Feeds" msgid "My Profile" msgstr "Mein Profil" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "Meine gespeicherten Feeds" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2276,15 +2360,15 @@ msgstr "" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "" @@ -2323,16 +2407,17 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Neuer Beitrag" @@ -2354,15 +2439,10 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 -msgctxt "action" -msgid "Next" -msgstr "" - -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2371,14 +2451,19 @@ msgstr "" msgid "Next" msgstr "NƤchste" +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 +msgctxt "action" +msgid "Next" +msgstr "" + #: src/view/com/lightbox/Lightbox.web.tsx:149 msgid "Next image" msgstr "NƤchstes Bild" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2389,7 +2474,7 @@ msgstr "Nein" msgid "No description" msgstr "Keine Beschreibung" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2402,7 +2487,7 @@ msgstr "" msgid "No result" msgstr "Kein Ergebnis" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse für \"{query}\" gefunden" @@ -2425,6 +2510,7 @@ msgid "Not Applicable." msgstr "Unzutreffend." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "" @@ -2437,13 +2523,13 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Hinweis: Bluesky ist ein offenes und ƶffentliches Netzwerk. Diese Einstellung schrƤnkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung mƶglicherweise nicht. Deine Inhalte werden abgemeldeten Nutzern mƶglicherweise weiterhin in anderen Apps und Websites angezeigt." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "Mitteilungen" @@ -2467,7 +2553,7 @@ msgstr "Okay" msgid "Oldest replies first" msgstr "" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "" @@ -2479,9 +2565,8 @@ msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." msgid "Only {0} can reply." msgstr "Nur {0} kann antworten." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "" @@ -2494,15 +2579,15 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Navigation ƶffnen" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "" @@ -2526,7 +2611,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "Ɩffnet die konfigurierbaren Spracheinstellungen" @@ -2534,33 +2619,31 @@ msgstr "Ɩffnet die konfigurierbaren Spracheinstellungen" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "" +#~ msgid "Opens invite code list" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "Ɩffnet die Liste der Einladungscodes" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "" @@ -2568,39 +2651,39 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Ɩffnet das Modal für die Verwendung einer benutzerdefinierten Domain" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "Ɩffnet die Moderationseinstellungen" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "Ɩffnet den Bildschirm mit allen gespeicherten Feeds" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "Ɩffnet die Einstellungsseite für das App-Passwort" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "Ɩffnet die Home-Feed-Einstellungen" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "Ɩffnet die Systemprotokollseite" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "Ɩffnet die Thread-Einstellungen" @@ -2617,8 +2700,8 @@ msgid "Other account" msgstr "Anderes Konto" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Anderer Service" +#~ msgid "Other service" +#~ msgstr "Anderer Service" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2632,9 +2715,9 @@ msgstr "Seite nicht gefunden" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2648,11 +2731,11 @@ msgstr "Passwort aktualisiert" msgid "Password updated!" msgstr "Passwort aktualisiert!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "" @@ -2669,15 +2752,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "Bilder, die für Erwachsene bestimmt sind." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2698,14 +2781,18 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Bitte wƤhle deinen Handle." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Bitte wƤhle dein Passwort." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Bitte bestƤtige deine E-Mail, bevor du sie Ƥnderst. Dies ist eine vorübergehende Anforderung, wƤhrend E-Mail-Aktualisierungstools hinzugefügt werden, und wird bald wieder entfernt." @@ -2715,22 +2802,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "" #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Bitte gib deine E-Mail ein." @@ -2765,26 +2852,26 @@ msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "Beitrag" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "Beitrag ausgeblendet" @@ -2796,11 +2883,11 @@ msgstr "Beitragssprache" msgid "Post Languages" msgstr "Beitragssprachen" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "Beitrag nicht gefunden" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "BeitrƤge" @@ -2824,27 +2911,27 @@ msgstr "PrimƤre Sprache" msgid "Prioritize Your Follows" msgstr "Priorisiere deine Follower" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "PrivatsphƤre" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "DatenschutzerklƤrung" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "Wird bearbeitet..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "Profil" @@ -2852,7 +2939,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "Schütze dein Konto, indem du deine E-Mail bestƤtigst." @@ -2909,12 +2996,12 @@ msgstr "Empfohlene Nutzer" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Entfernen" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "{0} aus meinen Feeds entfernen?" @@ -2927,11 +3014,11 @@ msgstr "Konto entfernen" msgid "Remove feed" msgstr "Feed entfernen" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" @@ -2947,7 +3034,7 @@ msgstr "Bildvorschau entfernen" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Diesen Feed aus meinen Feeds entfernen?" @@ -2960,8 +3047,8 @@ msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen?" msgid "Removed from list" msgstr "Aus der Liste entfernt" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -2969,7 +3056,7 @@ msgstr "" msgid "Removes default thumbnail from {0}" msgstr "" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "Antworten" @@ -2982,12 +3069,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Antwortfilter" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -2996,20 +3083,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "{collectionName} melden" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Konto melden" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Feed melden" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Liste melden" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Beitrag melden" @@ -3034,11 +3121,11 @@ msgstr "" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3046,7 +3133,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3056,19 +3143,19 @@ msgid "Request Change" msgstr "Ƅnderung anfordern" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Für diesen Anbieter erforderlich" @@ -3081,66 +3168,65 @@ msgstr "Code zurücksetzen" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "Passwort zurücksetzen" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Wiederholen" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3153,7 +3239,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Speichern" @@ -3193,11 +3279,11 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3205,8 +3291,8 @@ msgstr "" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Suche" @@ -3238,8 +3324,8 @@ msgid "Select {item}" msgstr "" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "WƤhle Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "WƤhle Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3249,8 +3335,8 @@ msgstr "Von einem bestehenden Konto auswƤhlen" msgid "Select option {i} of {numItems}" msgstr "" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "Service auswƤhlen" @@ -3258,11 +3344,15 @@ msgstr "Service auswƤhlen" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3283,8 +3373,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3294,7 +3384,7 @@ msgstr "WƤhle deine bevorzugte Sprache für die Übersetzungen in deinem Feed a msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3312,8 +3402,8 @@ msgctxt "action" msgid "Send Email" msgstr "E-Mail senden" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "Feedback senden" @@ -3325,33 +3415,37 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3359,19 +3453,19 @@ msgstr "" msgid "Set new password" msgstr "Neues Passwort festlegen" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Setze diese Einstellung auf \"Nein\", um alle ZitatbeitrƤge aus deinem Feed auszublenden. Reposts sind weiterhin sichtbar." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Antworten aus deinem Feed auszublenden." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Reposts aus deinem Feed auszublenden." @@ -3380,8 +3474,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Setze diese Einstellung auf \"Ja\", um Antworten in einer Thread-Ansicht anzuzeigen. Dies ist eine experimentelle Funktion." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem folgenden Feed anzuzeigen. Dies ist eine experimentelle Funktion." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem folgenden Feed anzuzeigen. Dies ist eine experimentelle Funktion." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3391,24 +3489,24 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "Einstellungen" @@ -3421,25 +3519,25 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Teilen" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Feed teilen" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "Anzeigen" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3451,21 +3549,21 @@ msgstr "Trotzdem anzeigen" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "BeitrƤge aus meinen Feeds anzeigen" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "" @@ -3481,7 +3579,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Antworten anzeigen" @@ -3497,11 +3595,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Reposts anzeigen" @@ -3518,17 +3616,18 @@ msgstr "" msgid "Show users" msgstr "Nutzer anzeigen" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3541,8 +3640,8 @@ msgid "Sign in" msgstr "Anmelden" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Anmelden" @@ -3555,14 +3654,14 @@ msgstr "Anmelden als {0}" msgid "Sign in as..." msgstr "Anmelden als..." -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Anmelden bei" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "Abmelden" @@ -3586,7 +3685,7 @@ msgstr "Registriere dich oder melden dich an, um an der Diskussion teilzunehmen" msgid "Sign-in Required" msgstr "Anmelden erforderlich" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "Angemeldet als" @@ -3599,7 +3698,7 @@ msgid "Signs {0} out of Bluesky" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "Überspringen" @@ -3609,22 +3708,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -3645,10 +3744,10 @@ msgid "Square" msgstr "" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "Staging" +#~ msgid "Staging" +#~ msgstr "Staging" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "Status-Seite" @@ -3656,12 +3755,12 @@ msgstr "Status-Seite" msgid "Step {0} of {numSteps}" msgstr "" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "" @@ -3669,7 +3768,7 @@ msgstr "" msgid "Submit" msgstr "Einreichen" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Abonnieren" @@ -3678,7 +3777,7 @@ msgstr "Abonnieren" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Abonniere diese Liste" @@ -3694,35 +3793,35 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Support" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "" +#~ msgid "Swipe up to see more" +#~ msgstr "" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "Konto wechseln" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "Systemprotokoll" @@ -3738,14 +3837,14 @@ msgstr "" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Bedingungen" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -3754,7 +3853,11 @@ msgstr "Nutzungsbedingungen" msgid "Text input field" msgstr "Text-Eingabefeld" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -3770,7 +3873,7 @@ msgstr "" msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "Mƶglicherweise wurde der Post gelƶscht." @@ -3786,11 +3889,11 @@ msgstr "Das Support-Formular wurde verschoben. Wenn du Hilfe benƶtigst, wende d msgid "The Terms of Service have been moved to" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3798,12 +3901,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3812,9 +3915,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3844,19 +3947,21 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3864,13 +3969,13 @@ msgstr "" msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3896,13 +4001,17 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "Dieser Inhalt ist ohne ein Bluesky-Konto nicht sichtbar." +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Dieser Feed wird derzeit stark frequentiert und ist vorübergehend nicht verfügbar. Bitte versuche es spƤter erneut." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -3930,7 +4039,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Dieser Beitrag wurde gelƶscht." @@ -3954,12 +4063,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Diese Warnung ist nur für BeitrƤge mit angehƤngten Medien verfügbar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Dadurch wird dieser Beitrag aus deinen Feeds ausgeblendet." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "Thread-Einstellungen" @@ -3967,7 +4076,7 @@ msgstr "Thread-Einstellungen" msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -3979,45 +4088,45 @@ msgstr "" msgid "Transformations" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Übersetzen" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "Erneut versuchen" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 +msgid "Unblock" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 -msgid "Unblock" -msgstr "" - -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "" @@ -4033,40 +4142,41 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "Leider erfüllst du nicht die Voraussetzungen, um einen Account zu erstellen." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4109,8 +4219,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "Verwenden dies, um dich mit deinem Handle bei der anderen App einzuloggen." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4128,11 +4238,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Benutzerhandle" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4141,7 +4251,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4159,8 +4269,8 @@ msgstr "" msgid "User Lists" msgstr "Benutzerlisten" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Benutzername oder E-Mail-Adresse" @@ -4177,18 +4287,18 @@ msgid "Users in \"{0}\"" msgstr "" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "E-Mail bestƤtigen" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "Meine E-Mail bestƤtigen" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "Meine E-Mail bestƤtigen" @@ -4205,7 +4315,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4230,15 +4340,15 @@ msgid "Visit Site" msgstr "Seite ansehen" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4254,7 +4364,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4262,7 +4372,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4274,11 +4384,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4302,7 +4412,7 @@ msgstr "" msgid "What is the issue with this {collectionName}?" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "Was gibt's?" @@ -4338,14 +4448,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4355,7 +4465,7 @@ msgstr "Ja" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4385,7 +4495,7 @@ msgstr "Du hast noch keine Einladungscodes! Wir schicken dir welche, wenn du sch msgid "You don't have any pinned feeds." msgstr "Du hast keine angehefteten Feeds." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "Du hast keine gespeicherten Feeds!" @@ -4393,7 +4503,7 @@ msgstr "Du hast keine gespeicherten Feeds!" msgid "You don't have any saved feeds." msgstr "Du hast keine gespeicherten Feeds." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "Du hast den Verfasser blockiert oder du wurdest vom Verfasser blockiert." @@ -4433,7 +4543,7 @@ msgstr "Du hast noch keine App-Passwƶrter erstellt. Du kannst eines erstellen, msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "" @@ -4441,11 +4551,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4457,9 +4567,9 @@ msgstr "Du erhƤltst eine E-Mail mit einem \"Reset-Code\". Gib diesen Code hier msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4471,7 +4581,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "Dein Konto" @@ -4479,7 +4589,11 @@ msgstr "Dein Konto" msgid "Your account has been deleted" msgstr "" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "Dein Geburtsdatum" @@ -4491,7 +4605,7 @@ msgstr "" msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4513,7 +4627,7 @@ msgstr "Deine E-Mail wurde noch nicht bestƤtigt. Dies ist ein wichtiger Sicherh msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "" @@ -4524,8 +4638,8 @@ msgstr "" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Deine Einladungscodes werden ausgeblendet, wenn du dich mit einem App-Passwort anmeldest" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Deine Einladungscodes werden ausgeblendet, wenn du dich mit einem App-Passwort anmeldest" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4542,7 +4656,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Deine BeitrƤge, Likes und Blockierungen sind ƶffentlich. Stummschaltungen sind privat." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "Dein Profil" @@ -4550,6 +4664,6 @@ msgstr "Dein Profil" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Dein Benutzerhandle" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index fed021c198..b944990551 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "<0>Welcome to<1>Bluesky" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "" @@ -80,26 +80,26 @@ msgstr "" msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -119,11 +119,11 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -142,8 +142,8 @@ msgstr "" msgid "Add a user to this list" msgstr "" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "" @@ -180,12 +180,12 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "" @@ -198,11 +198,11 @@ msgstr "" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "" @@ -210,7 +210,7 @@ msgstr "" msgid "Adult Content" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "" @@ -218,11 +218,15 @@ msgstr "" #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -281,7 +285,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "" @@ -289,13 +293,13 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "" @@ -311,7 +315,7 @@ msgstr "" msgid "Appeal this decision." msgstr "" -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "" @@ -323,11 +327,11 @@ msgstr "" msgid "Are you sure you'd like to discard this draft?" msgstr "" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "" @@ -343,21 +347,21 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "" @@ -366,42 +370,42 @@ msgstr "" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -414,7 +418,7 @@ msgstr "" msgid "Blocked Accounts" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -422,22 +426,29 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -462,24 +473,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "" #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "" +#~ msgid "Bluesky.Social" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -498,8 +510,8 @@ msgid "by you" msgstr "" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "" @@ -507,7 +519,7 @@ msgstr "" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "" -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -567,17 +579,17 @@ msgstr "" msgid "Cancel waitlist signup" msgstr "" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "" @@ -585,11 +597,11 @@ msgstr "" msgid "Change my email" msgstr "" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -597,7 +609,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -605,8 +617,8 @@ msgstr "" msgid "Change Your Email" msgstr "" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -626,11 +638,11 @@ msgstr "" msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "" @@ -651,29 +663,29 @@ msgstr "" msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "" @@ -691,7 +703,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -743,7 +756,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "" @@ -752,6 +765,10 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -764,12 +781,12 @@ msgstr "" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "" @@ -793,7 +810,7 @@ msgstr "" msgid "Confirm delete account" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "" @@ -807,12 +824,12 @@ msgstr "" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -842,11 +859,11 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -855,15 +872,15 @@ msgstr "" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -876,13 +893,13 @@ msgstr "" msgid "Copied" msgstr "" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -894,28 +911,28 @@ msgstr "" msgid "Copy" msgstr "" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "" @@ -924,20 +941,20 @@ msgid "Could not load list" msgstr "" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "" @@ -946,7 +963,7 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "" @@ -970,12 +987,17 @@ msgstr "" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -987,8 +1009,8 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "" @@ -996,7 +1018,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1004,7 +1026,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "" @@ -1017,8 +1039,8 @@ msgstr "" msgid "Delete app password" msgstr "" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "" @@ -1030,23 +1052,23 @@ msgstr "" #~ msgid "Delete my account…" #~ msgstr "" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "" @@ -1058,14 +1080,14 @@ msgid "Description" msgstr "" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "" +#~ msgid "Developer Tools" +#~ msgstr "" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1086,8 +1108,12 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" msgstr "" #: src/view/com/modals/EditProfile.tsx:192 @@ -1102,7 +1128,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "" @@ -1119,6 +1145,8 @@ msgctxt "action" msgid "Done" msgstr "" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1127,7 +1155,9 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "" @@ -1139,7 +1169,16 @@ msgstr "" msgid "Double tap to sign in" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1185,7 +1224,7 @@ msgstr "" msgid "Edit image" msgstr "" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "" @@ -1193,8 +1232,8 @@ msgstr "" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "" @@ -1203,15 +1242,15 @@ msgstr "" msgid "Edit my profile" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "" @@ -1231,17 +1270,15 @@ msgstr "" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "" @@ -1258,7 +1295,7 @@ msgstr "" msgid "Email verified" msgstr "" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "" @@ -1266,7 +1303,7 @@ msgstr "" msgid "Enable {0} only" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "" @@ -1283,11 +1320,11 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "" -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "" @@ -1307,11 +1344,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "" @@ -1320,7 +1357,7 @@ msgstr "" msgid "Enter your email" msgstr "" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "" @@ -1333,13 +1370,17 @@ msgid "Enter your new email address below." msgstr "" #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "" @@ -1374,6 +1415,15 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "" @@ -1383,13 +1433,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "" @@ -1402,7 +1452,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1411,15 +1461,15 @@ msgstr "" msgid "Failed to load recommended feeds" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "" @@ -1427,18 +1477,19 @@ msgstr "" msgid "Feed Preferences" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "" @@ -1458,7 +1509,7 @@ msgstr "" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1484,10 +1535,14 @@ msgstr "" msgid "Finding similar accounts..." msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." msgstr "" +#: src/view/screens/PreferencesHomeFeed.tsx:111 +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "" + #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." msgstr "" @@ -1509,21 +1564,24 @@ msgstr "" msgid "Flip vertically" msgstr "" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1543,7 +1601,7 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "" @@ -1555,16 +1613,24 @@ msgstr "" msgid "Followers" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "" @@ -1584,11 +1650,11 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "" @@ -1597,7 +1663,7 @@ msgstr "" msgid "Forgot Password" msgstr "" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1618,8 +1684,8 @@ msgstr "" msgid "Go back" msgstr "" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1635,9 +1701,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1647,12 +1713,12 @@ msgstr "" msgid "Handle" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "" @@ -1660,11 +1726,11 @@ msgstr "" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1673,19 +1739,19 @@ msgid "Here is your app password." msgstr "" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "" @@ -1694,7 +1760,7 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "" @@ -1702,7 +1768,7 @@ msgstr "" msgid "Hide user list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1726,22 +1792,23 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "" @@ -1781,8 +1848,8 @@ msgstr "" msgid "Image alt text" msgstr "" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "" @@ -1794,11 +1861,11 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "" @@ -1815,56 +1882,55 @@ msgid "Input password for account deletion" msgstr "" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "" +#~ msgid "Invite" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -1873,8 +1939,8 @@ msgid "Invite codes: {0} available" msgstr "" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1885,6 +1951,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "" @@ -1892,8 +1959,8 @@ msgstr "" msgid "Join the waitlist" msgstr "" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "" @@ -1909,7 +1976,7 @@ msgstr "" msgid "Language selection" msgstr "" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "" @@ -1918,7 +1985,7 @@ msgstr "" msgid "Language Settings" msgstr "" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "" @@ -1956,11 +2023,11 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -1973,16 +2040,17 @@ msgstr "" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "" @@ -1990,7 +2058,7 @@ msgstr "" msgid "Like this feed" msgstr "" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "" @@ -1999,7 +2067,7 @@ msgstr "" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2015,15 +2083,15 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "" @@ -2031,19 +2099,19 @@ msgstr "" msgid "List Avatar" msgstr "" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2051,35 +2119,35 @@ msgstr "" msgid "List Name" msgstr "" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "" @@ -2088,17 +2156,17 @@ msgid "Loading..." msgstr "" #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "" +#~ msgid "Local dev server" +#~ msgstr "" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2114,7 +2182,15 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "" @@ -2137,14 +2213,14 @@ msgstr "" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2153,7 +2229,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2176,7 +2252,7 @@ msgstr "" msgid "Moderation Lists" msgstr "" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "" @@ -2184,17 +2260,17 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2202,31 +2278,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2243,7 +2323,7 @@ msgstr "" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "" -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "" @@ -2251,7 +2331,7 @@ msgstr "" msgid "My Birthday" msgstr "" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "" @@ -2259,10 +2339,14 @@ msgstr "" msgid "My Profile" msgstr "" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2276,15 +2360,15 @@ msgstr "" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "" @@ -2323,16 +2407,17 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "" @@ -2354,10 +2439,10 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2375,10 +2460,10 @@ msgstr "" msgid "Next image" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2389,7 +2474,7 @@ msgstr "" msgid "No description" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2402,7 +2487,7 @@ msgstr "" msgid "No result" msgstr "" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "" @@ -2425,6 +2510,7 @@ msgid "Not Applicable." msgstr "" #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "" @@ -2437,13 +2523,13 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "" @@ -2467,7 +2553,7 @@ msgstr "" msgid "Oldest replies first" msgstr "" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "" @@ -2479,9 +2565,8 @@ msgstr "" msgid "Only {0} can reply." msgstr "" -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "" @@ -2494,15 +2579,15 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "" @@ -2526,7 +2611,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "" @@ -2534,33 +2619,31 @@ msgstr "" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "" +#~ msgid "Opens invite code list" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "" @@ -2568,39 +2651,39 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "" @@ -2617,8 +2700,8 @@ msgid "Other account" msgstr "" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "" +#~ msgid "Other service" +#~ msgstr "" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2632,9 +2715,9 @@ msgstr "" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2648,11 +2731,11 @@ msgstr "" msgid "Password updated!" msgstr "" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "" @@ -2669,15 +2752,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2698,14 +2781,18 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "" -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "" +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "" @@ -2715,22 +2802,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "" #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "" @@ -2770,26 +2857,26 @@ msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "" @@ -2801,11 +2888,11 @@ msgstr "" msgid "Post Languages" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "" @@ -2829,27 +2916,27 @@ msgstr "" msgid "Prioritize Your Follows" msgstr "" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "" @@ -2857,7 +2944,7 @@ msgstr "" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "" @@ -2914,12 +3001,12 @@ msgstr "" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "" @@ -2932,11 +3019,11 @@ msgstr "" msgid "Remove feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "" @@ -2952,7 +3039,7 @@ msgstr "" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "" @@ -2965,8 +3052,8 @@ msgstr "" msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -2974,7 +3061,7 @@ msgstr "" msgid "Removes default thumbnail from {0}" msgstr "" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "" @@ -2987,12 +3074,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3001,20 +3088,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "" @@ -3039,11 +3126,11 @@ msgstr "" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3051,7 +3138,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3061,19 +3148,19 @@ msgid "Request Change" msgstr "" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "" @@ -3086,66 +3173,65 @@ msgstr "" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3158,7 +3244,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "" @@ -3198,11 +3284,11 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3210,8 +3296,8 @@ msgstr "" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "" @@ -3243,8 +3329,8 @@ msgid "Select {item}" msgstr "" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "" +#~ msgid "Select Bluesky Social" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3254,8 +3340,8 @@ msgstr "" msgid "Select option {i} of {numItems}" msgstr "" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "" @@ -3263,11 +3349,15 @@ msgstr "" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3288,8 +3378,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3299,7 +3389,7 @@ msgstr "" msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3317,8 +3407,8 @@ msgctxt "action" msgid "Send Email" msgstr "" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "" @@ -3330,33 +3420,37 @@ msgstr "" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3364,19 +3458,19 @@ msgstr "" msgid "Set new password" msgstr "" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "" @@ -3385,7 +3479,11 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" #: src/screens/Onboarding/Layout.tsx:50 @@ -3396,24 +3494,24 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "" @@ -3426,25 +3524,25 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3456,21 +3554,21 @@ msgstr "" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "" @@ -3486,7 +3584,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "" @@ -3502,11 +3600,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "" @@ -3523,17 +3621,18 @@ msgstr "" msgid "Show users" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3546,8 +3645,8 @@ msgid "Sign in" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "" @@ -3560,14 +3659,14 @@ msgstr "" msgid "Sign in as..." msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "" @@ -3591,7 +3690,7 @@ msgstr "" msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "" @@ -3604,7 +3703,7 @@ msgid "Signs {0} out of Bluesky" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "" @@ -3614,22 +3713,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -3650,10 +3749,10 @@ msgid "Square" msgstr "" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "" +#~ msgid "Staging" +#~ msgstr "" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "" @@ -3661,12 +3760,12 @@ msgstr "" msgid "Step {0} of {numSteps}" msgstr "" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "" @@ -3674,7 +3773,7 @@ msgstr "" msgid "Submit" msgstr "Submit" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "" @@ -3683,7 +3782,7 @@ msgstr "" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "" @@ -3699,35 +3798,35 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "" +#~ msgid "Swipe up to see more" +#~ msgstr "" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "" @@ -3743,14 +3842,14 @@ msgstr "" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "" @@ -3759,7 +3858,11 @@ msgstr "" msgid "Text input field" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -3775,7 +3878,7 @@ msgstr "" msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "" @@ -3791,11 +3894,11 @@ msgstr "" msgid "The Terms of Service have been moved to" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3803,12 +3906,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3817,9 +3920,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3849,19 +3952,21 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3869,13 +3974,13 @@ msgstr "" msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3901,13 +4006,17 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -3935,7 +4044,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "" @@ -3959,12 +4068,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "" @@ -3972,7 +4081,7 @@ msgstr "" msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -3984,45 +4093,45 @@ msgstr "" msgid "Transformations" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "" @@ -4038,40 +4147,41 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4114,8 +4224,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "" #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4133,11 +4243,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4146,7 +4256,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4164,8 +4274,8 @@ msgstr "" msgid "User Lists" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "" @@ -4182,18 +4292,18 @@ msgid "Users in \"{0}\"" msgstr "" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "" @@ -4210,7 +4320,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4235,15 +4345,15 @@ msgid "Visit Site" msgstr "" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4259,7 +4369,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4267,7 +4377,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4279,11 +4389,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4307,7 +4417,7 @@ msgstr "" msgid "What is the issue with this {collectionName}?" msgstr "" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "" @@ -4343,14 +4453,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4360,7 +4470,7 @@ msgstr "" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4390,7 +4500,7 @@ msgstr "" msgid "You don't have any pinned feeds." msgstr "" -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "" @@ -4398,7 +4508,7 @@ msgstr "" msgid "You don't have any saved feeds." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "" @@ -4438,7 +4548,7 @@ msgstr "" msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "" @@ -4446,11 +4556,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4462,9 +4572,9 @@ msgstr "" msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4476,7 +4586,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "" @@ -4484,7 +4594,11 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "" @@ -4496,7 +4610,7 @@ msgstr "" msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4518,7 +4632,7 @@ msgstr "" msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "" @@ -4529,8 +4643,8 @@ msgstr "" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4547,7 +4661,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "" @@ -4555,6 +4669,6 @@ msgstr "" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 72949c0b08..b0689cb5a5 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# invite code available} other {# invite codes available}}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} código de invitación disponible" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} código de invitación disponible" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} códigos de invitación disponibles" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} códigos de invitación disponibles" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "<0/> miembros" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "" @@ -63,7 +63,7 @@ msgstr "<0>Sigue a algunos<1>usuarios<2>recomendados" msgid "<0>Welcome to<1>Bluesky" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "" @@ -80,26 +80,26 @@ msgstr "Ya estĆ” disponible una nueva versión de la aplicación. ActualĆ­zala p msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "Accesibilidad" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "Cuenta" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -119,11 +119,11 @@ msgstr "Opciones de la cuenta" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -142,8 +142,8 @@ msgstr "Agregar una advertencia de cuenta" msgid "Add a user to this list" msgstr "Agregar un usuario a esta lista" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "Agregar una cuenta" @@ -180,12 +180,12 @@ msgstr "Agregar una tarjeta de enlace:" msgid "Add the following DNS record to your domain:" msgstr "AƱade el siguiente registro DNS a tu dominio:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Agregar a listas" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Agregar a mis noticias" @@ -198,11 +198,11 @@ msgstr "" msgid "Added to list" msgstr "Agregar a una lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajusta el nĆŗmero de Me gusta que debe tener una respuesta para que se muestre en tus noticias." @@ -210,7 +210,7 @@ msgstr "Ajusta el nĆŗmero de Me gusta que debe tener una respuesta para que se m msgid "Adult Content" msgstr "Contenido para adultos" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "" @@ -218,11 +218,15 @@ msgstr "" #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "Avanzado" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -281,7 +285,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "" @@ -289,13 +293,13 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "ContraseƱas de la app" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "ContraseƱas de la app" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Aviso sobre el contenido del recurso" @@ -311,7 +315,7 @@ msgstr "Apelar esta decisión" msgid "Appeal this decision." msgstr "Apelar esta decisión." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "Aspecto exterior" @@ -323,11 +327,11 @@ msgstr "ĀæEstĆ”s seguro de que quieres eliminar la contraseƱa de la app \"{name msgid "Are you sure you'd like to discard this draft?" msgstr "ĀæEstĆ”s seguro de que quieres descartar este borrador?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ĀæEstĆ”s seguro?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ĀæEstĆ”s seguro? Esto no puede deshacerse." @@ -343,21 +347,21 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artĆ­stica o no erótica." -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Regresar" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "" @@ -366,42 +370,42 @@ msgstr "" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "Conceptos bĆ”sicos" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "CumpleaƱos" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "CumpleaƱos:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloquear una cuenta" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloquear cuentas" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Bloquear una lista" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ĀæBloquear estas cuentas?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -414,7 +418,7 @@ msgstr "Cuentas bloqueadas" msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni interactuar contigo de ninguna otra forma." @@ -422,22 +426,29 @@ msgstr "Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni interactuar contigo de ninguna otra forma. TĆŗ no verĆ”s su contenido y ellos no podrĆ”n ver el tuyo." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Publicación bloqueada." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloque es pĆŗblico. Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni interactuar contigo de ninguna otra forma." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Blog" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -462,24 +473,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "Bluesky no mostrarĆ” tu perfil ni tus publicaciones a los usuarios que hayan cerrado sesión. Es posible que otras aplicaciones no acepten esta solicitud. Esto no hace que tu cuenta sea privada." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Versión {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "Negocios" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -498,8 +510,8 @@ msgid "by you" msgstr "" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "CĆ”mara" @@ -507,7 +519,7 @@ msgstr "CĆ”mara" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Sólo puede contener letras, nĆŗmeros, espacios, guiones y guiones bajos. Debe tener al menos 4 caracteres, pero no mĆ”s de 32." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -567,17 +579,17 @@ msgstr "Cancelar bĆŗsqueda" msgid "Cancel waitlist signup" msgstr "Cancelar la inscripción en la lista de espera" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Cambiar el identificador" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Cambiar el identificador" @@ -585,11 +597,11 @@ msgstr "Cambiar el identificador" msgid "Change my email" msgstr "Cambiar mi correo electrónico" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -597,7 +609,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -605,8 +617,8 @@ msgstr "" msgid "Change Your Email" msgstr "Cambiar tu correo electrónico" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -626,11 +638,11 @@ msgstr "Consulta tu bandeja de entrada para recibir un correo electrónico con e msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Elige un Servicio" @@ -651,29 +663,29 @@ msgstr "Elige los algoritmos que potencian tu experiencia con publicaciones pers msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "Elige tu contraseƱa" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "Borrar todos los datos de almacenamiento heredados" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento heredados (reiniciar despuĆ©s de esto)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "Borrar todos los datos de almacenamiento" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento (reiniciar despuĆ©s de esto)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "Borrar consulta de bĆŗsqueda" @@ -691,7 +703,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -743,7 +756,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -752,6 +765,10 @@ msgstr "Directrices de la comunidad" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -764,12 +781,12 @@ msgstr "Redactar la respuesta" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirmar" @@ -793,7 +810,7 @@ msgstr "Confirmar la configuración del idioma del contenido" msgid "Confirm delete account" msgstr "Confirmar eliminación de cuenta" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "" @@ -807,12 +824,12 @@ msgstr "Código de confirmación" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Conectando..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -842,11 +859,11 @@ msgstr "Advertencia de contenido" msgid "Content warnings" msgstr "Advertencias de contenido" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -855,15 +872,15 @@ msgstr "Continuar" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -876,13 +893,13 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -894,28 +911,28 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copia el enlace a la publicación" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copia el enlace al perfil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copiar el texto de la publicación" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "PolĆ­tica de derechos de autor" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "No se ha podido cargar las publicaciones" @@ -924,20 +941,20 @@ msgid "Could not load list" msgstr "No se ha podido cargar la lista" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "Crear una cuenta nueva" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Crear una cuenta" @@ -946,7 +963,7 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "Crear una cuenta nueva" @@ -970,12 +987,17 @@ msgstr "" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "Dominio personalizado" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -987,8 +1009,8 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "Zona de peligro" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "" @@ -996,7 +1018,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1004,7 +1026,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "Borrar la cuenta" @@ -1017,8 +1039,8 @@ msgstr "Borrar la cuenta" msgid "Delete app password" msgstr "Borrar la contraseƱa de la app" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Borrar la lista" @@ -1030,23 +1052,23 @@ msgstr "Borrar mi cuenta" #~ msgid "Delete my account…" #~ msgstr "Borrar mi cuenta..." -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Borrar una publicación" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ĀæBorrar esta publicación?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "Se borró la publicación." @@ -1058,14 +1080,14 @@ msgid "Description" msgstr "Descripción" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Herramientas de desarrollador" +#~ msgid "Developer Tools" +#~ msgstr "Herramientas de desarrollador" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "ĀæQuieres decir algo?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1086,9 +1108,13 @@ msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconecta msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "Descubrir nuevas publicaciones" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "Descubrir nuevas publicaciones" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1102,7 +1128,7 @@ msgstr "Mostrar el nombre" msgid "Domain verified!" msgstr "Ā”Dominio verificado!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "" @@ -1119,6 +1145,8 @@ msgctxt "action" msgid "Done" msgstr "" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1127,7 +1155,9 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "Listo" @@ -1139,7 +1169,16 @@ msgstr "Listo{extraText}" msgid "Double tap to sign in" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1185,7 +1224,7 @@ msgstr "" msgid "Edit image" msgstr "Editar la imagen" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Editar los detalles de la lista" @@ -1193,8 +1232,8 @@ msgstr "Editar los detalles de la lista" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Editar mis noticias" @@ -1203,15 +1242,15 @@ msgstr "Editar mis noticias" msgid "Edit my profile" msgstr "Editar mi perfil" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Editar el perfil" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Editar el perfil" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Editar mis noticias guardadas" @@ -1231,17 +1270,15 @@ msgstr "" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "Correo electrónico" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "Dirección de correo electrónico" @@ -1258,7 +1295,7 @@ msgstr "Correo electrónico actualizado" msgid "Email verified" msgstr "" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "Correo electrónico:" @@ -1266,7 +1303,7 @@ msgstr "Correo electrónico:" msgid "Enable {0} only" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "" @@ -1283,11 +1320,11 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Activa esta opción para ver sólo las respuestas de las personas a las que sigues." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "Fin de noticias" @@ -1307,11 +1344,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "Introduce el dominio que quieres utilizar" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "Introduce el correo electrónico que utilizaste para crear tu cuenta. Te enviaremos un \"código de restablecimiento\" para que puedas establecer una nueva contraseƱa." -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "" @@ -1320,7 +1357,7 @@ msgstr "" msgid "Enter your email" msgstr "" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Introduce la dirección de correo electrónico" @@ -1333,13 +1370,17 @@ msgid "Enter your new email address below." msgstr "Introduce tu nueva dirección de correo electrónico a continuación." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Introduce tu nombre de usuario y contraseƱa" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Error:" @@ -1374,6 +1415,15 @@ msgstr "Expandir el texto alt" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "" @@ -1383,13 +1433,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "" @@ -1402,7 +1452,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1411,15 +1461,15 @@ msgstr "" msgid "Failed to load recommended feeds" msgstr "Error al cargar las noticias recomendadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Noticias fuera de lĆ­nea" @@ -1427,18 +1477,19 @@ msgstr "Noticias fuera de lĆ­nea" msgid "Feed Preferences" msgstr "Preferencias de noticias" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "Comentarios" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Noticias" @@ -1458,7 +1509,7 @@ msgstr "Se crean las noticias por los usuarios para crear colecciones de conteni msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Las noticias son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0/> para mĆ”s información." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1484,9 +1535,13 @@ msgstr "Encuentra usuarios con la herramienta de bĆŗsqueda de la derecha" msgid "Finding similar accounts..." msgstr "Encontrar cuentas similares..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ajusta el contenido que ves en tu pantalla de inicio." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ajusta el contenido que ves en tu pantalla de inicio." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1509,21 +1564,24 @@ msgstr "" msgid "Flip vertically" msgstr "" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Seguir" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "Seguir" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1543,7 +1601,7 @@ msgstr "" msgid "Followed users" msgstr "Usuarios seguidos" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Solo usuarios seguidos" @@ -1555,16 +1613,24 @@ msgstr "" msgid "Followers" msgstr "Seguidores" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Siguiendo" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Te siguen" @@ -1584,11 +1650,11 @@ msgstr "Por razones de seguridad, tendremos que enviarte un código de confirmac msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Por razones de seguridad, no podrĆ”s volver a verla. Si pierdes esta contraseƱa, tendrĆ”s que generar una nueva." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "Lo olvidĆ©" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "OlvidĆ© mi contraseƱa" @@ -1597,7 +1663,7 @@ msgstr "OlvidĆ© mi contraseƱa" msgid "Forgot Password" msgstr "OlvidĆ© mi contraseƱa" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1618,8 +1684,8 @@ msgstr "Comenzar" msgid "Go back" msgstr "Regresar" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1635,9 +1701,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1647,12 +1713,12 @@ msgstr "Ir al siguiente" msgid "Handle" msgstr "Identificador" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "Ayuda" @@ -1660,11 +1726,11 @@ msgstr "Ayuda" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1673,19 +1739,19 @@ msgid "Here is your app password." msgstr "AquĆ­ tienes tu contraseƱa de la app." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "Ocultar" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Ocultar publicación" @@ -1694,7 +1760,7 @@ msgstr "Ocultar publicación" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ĀæOcultar esta publicación?" @@ -1702,7 +1768,7 @@ msgstr "ĀæOcultar esta publicación?" msgid "Hide user list" msgstr "Ocultar la lista de usuarios" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1726,22 +1792,23 @@ msgstr "El servidor de noticias ha respondido de forma incorrecta. Por favor, in msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenemos problemas para encontrar esta noticia. Puede que la hayan borrado." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "PĆ”gina inicial" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "Preferencias de noticias de la pĆ”gina inicial" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferencias de noticias de la pĆ”gina inicial" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "Proveedor de alojamiento" @@ -1781,8 +1848,8 @@ msgstr "" msgid "Image alt text" msgstr "Texto alt de la imagen" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "Opciones de la imagen" @@ -1794,11 +1861,11 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "" @@ -1815,56 +1882,55 @@ msgid "Input password for account deletion" msgstr "" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "Nombre de usuario o contraseƱa no vĆ”lidos" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Invitar" +#~ msgid "Invite" +#~ msgstr "Invitar" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Invitar a un amigo" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "Código de invitación" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 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." @@ -1873,8 +1939,8 @@ msgid "Invite codes: {0} available" msgstr "" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "Códigos de invitación: {invitesAvailable} disponibles" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Códigos de invitación: {invitesAvailable} disponibles" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1885,6 +1951,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Tareas" @@ -1892,8 +1959,8 @@ msgstr "Tareas" msgid "Join the waitlist" msgstr "Únete a la lista de espera" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "Únete a la lista de espera." @@ -1909,7 +1976,7 @@ msgstr "" msgid "Language selection" msgstr "Escoger el idioma" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "" @@ -1918,7 +1985,7 @@ msgstr "" msgid "Language Settings" msgstr "Configuración del idioma" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Idiomas" @@ -1956,11 +2023,11 @@ msgstr "DĆ©jalos todos sin marcar para ver cualquier idioma." msgid "Leaving Bluesky" msgstr "Salir de Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -1973,16 +2040,17 @@ msgstr "Ā”Vamos a restablecer tu contraseƱa!" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "LibrerĆ­a" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "" @@ -1990,7 +2058,7 @@ msgstr "" msgid "Like this feed" msgstr "Dar Ā«me gustaĀ» a esta noticia" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "Le ha gustado a" @@ -1999,7 +2067,7 @@ msgstr "Le ha gustado a" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2015,15 +2083,15 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "Cantidad de Ā«Me gustaĀ»" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "" @@ -2031,19 +2099,19 @@ msgstr "" msgid "List Avatar" msgstr "Avatar de la lista" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2051,35 +2119,35 @@ msgstr "" msgid "List Name" msgstr "Nombre de la lista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Listas" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Cargar mĆ”s publicaciones" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Cargar publicaciones nuevas" @@ -2088,17 +2156,17 @@ msgid "Loading..." msgstr "Cargando..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Servidor de desarrollo local" +#~ msgid "Local dev server" +#~ msgstr "Servidor de desarrollo local" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2114,7 +2182,15 @@ msgstr "Acceder a una cuenta que no estĆ” en la lista" msgid "Make sure this is where you intend to go!" msgstr "Ā”AsegĆŗrate de que es aquĆ­ a donde pretendes ir!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Medios" @@ -2137,14 +2213,14 @@ msgstr "Mensaje del servidor: {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "Moderación" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2153,7 +2229,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2176,7 +2252,7 @@ msgstr "Listas de moderación" msgid "Moderation Lists" msgstr "Listas de moderación" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "" @@ -2184,17 +2260,17 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "MĆ”s canales de noticias" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "MĆ”s opciones" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2202,31 +2278,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenciar la cuenta" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silenciar las cuentas" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Silenciar la lista" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ĀæSilenciar estas cuentas?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silenciar el hilo" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2243,7 +2323,7 @@ msgstr "Cuentas silenciadas" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Las cuentas silenciadas eliminan sus publicaciones de tu canal de noticias y de tus notificaciones. Las cuentas silenciadas son completamente privadas." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar es privado. Las cuentas silenciadas pueden interactuar contigo, pero no verĆ”s sus publicaciones ni recibirĆ”s notificaciones suyas." @@ -2251,7 +2331,7 @@ msgstr "Silenciar es privado. Las cuentas silenciadas pueden interactuar contigo msgid "My Birthday" msgstr "Mi cumpleaƱos" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "Mis canales de noticias" @@ -2259,10 +2339,14 @@ msgstr "Mis canales de noticias" msgid "My Profile" msgstr "Mi perfil" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "Mis canales de noticias guardados" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2276,15 +2360,15 @@ msgstr "" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "" @@ -2323,16 +2407,17 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Publicación nueva" @@ -2354,10 +2439,10 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2375,10 +2460,10 @@ msgstr "" msgid "Next image" msgstr "Imagen nueva" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2389,7 +2474,7 @@ msgstr "No" msgid "No description" msgstr "Sin descripción" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2402,7 +2487,7 @@ msgstr "" msgid "No result" msgstr "Sin resultados" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" @@ -2425,6 +2510,7 @@ msgid "Not Applicable." msgstr "No aplicable." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "" @@ -2437,13 +2523,13 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es una red abierta y pĆŗblica. Esta configuración sólo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky, y es posible que otras aplicaciones no respeten esta configuración. Otras aplicaciones y sitios web pueden seguir mostrando tu contenido a los usuarios que hayan cerrado sesión." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "Notificaciones" @@ -2467,7 +2553,7 @@ msgstr "EstĆ” bien" msgid "Oldest replies first" msgstr "" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "" @@ -2479,9 +2565,8 @@ msgstr "Falta el texto alternativo en una o varias imĆ”genes." msgid "Only {0} can reply." msgstr "Solo {0} puede responder." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "" @@ -2494,15 +2579,15 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Abrir navegación" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "" @@ -2526,7 +2611,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "Abrir la configuración del idioma que se puede ajustar" @@ -2534,33 +2619,31 @@ msgstr "Abrir la configuración del idioma que se puede ajustar" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "" +#~ msgid "Opens invite code list" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "Abre la lista de códigos de invitación" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "" @@ -2568,39 +2651,39 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Abre el modal para usar el dominio personalizado" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "Abre la configuración de moderación" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "Abre la pantalla con todas las noticias guardadas" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "Abre la pĆ”gina de configuración de la contraseƱa de la app" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "Abre las preferencias de noticias de la pĆ”gina inicial" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "Abre la pĆ”gina del libro de cuentos" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "Abre la pĆ”gina de la bitĆ”cora del sistema" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "Abre las preferencias de hilos" @@ -2617,8 +2700,8 @@ msgid "Other account" msgstr "Otra cuenta" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Otro servicio" +#~ msgid "Other service" +#~ msgstr "Otro servicio" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2632,9 +2715,9 @@ msgstr "PĆ”gina no encontrada" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2648,11 +2731,11 @@ msgstr "ContraseƱa actualizada" msgid "Password updated!" msgstr "Ā”ContraseƱa actualizada!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "" @@ -2669,15 +2752,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "ImĆ”genes destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2698,14 +2781,18 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Por favor, elige tu identificador." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Por favor, elige tu contraseƱa." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Por favor, confirma tu correo electrónico antes de cambiarlo. Se trata de un requisito temporal mientras se aƱaden herramientas de actualización de correo electrónico, y pronto se eliminarĆ”." @@ -2715,22 +2802,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Introduce un nombre Ćŗnico para la contraseƱa de esta app o utiliza una generada aleatoriamente." #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Introduce tu correo electrónico." @@ -2765,26 +2852,26 @@ msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "Publicación" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "Publicación oculta" @@ -2796,11 +2883,11 @@ msgstr "Lenguaje de la publicación" msgid "Post Languages" msgstr "Lenguajes de la publicación" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "Publicación no encontrada" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "Publicaciones" @@ -2824,27 +2911,27 @@ msgstr "Lenguajes primarios" msgid "Prioritize Your Follows" msgstr "Priorizar los usuarios a los que sigue" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "Privacidad" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "PolĆ­tica de privacidad" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "Procesando..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "Perfil" @@ -2852,7 +2939,7 @@ msgstr "Perfil" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "Protege tu cuenta verificando tu correo electrónico." @@ -2909,12 +2996,12 @@ msgstr "Usuarios recomendados" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Eliminar" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ĀæEliminar {0} de mis canales de noticias?" @@ -2927,11 +3014,11 @@ msgstr "Eliminar la cuenta" msgid "Remove feed" msgstr "Eliminar el canal de noticias" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Eliminar de mis canales de noticias" @@ -2947,7 +3034,7 @@ msgstr "Eliminar la vista previa de la imagen" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ĀæEliminar este canal de mis canales de noticias?" @@ -2960,8 +3047,8 @@ msgstr "ĀæEliminar este canal de mis canales de noticias guardados?" msgid "Removed from list" msgstr "Eliminar de la lista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -2969,7 +3056,7 @@ msgstr "" msgid "Removes default thumbnail from {0}" msgstr "" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "Respuestas" @@ -2982,12 +3069,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtros de respuestas" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -2996,20 +3083,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "Informe de {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Informe de la cuenta" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Informe del canal de noticias" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Informe de la lista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Informe de la publicación" @@ -3034,11 +3121,11 @@ msgstr "Volver a publicar o citar publicación" msgid "Reposted By" msgstr "Vuelto a publicar por" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "Vuelto a publicar por {0}" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Vuelto a publicar por <0/>" @@ -3046,7 +3133,7 @@ msgstr "Vuelto a publicar por <0/>" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3056,19 +3143,19 @@ msgid "Request Change" msgstr "Solicitar un cambio" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Requerido para este proveedor" @@ -3081,66 +3168,65 @@ msgstr "Restablecer el código" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "Restablecer el estado de incorporación" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "Restablecer la contraseƱa" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "Restablecer el estado de preferencias" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "Restablece el estado de incorporación" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "Restablecer el estado de preferencias" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Volver a intentar" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3153,7 +3239,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Guardar" @@ -3193,11 +3279,11 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3205,8 +3291,8 @@ msgstr "" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Buscar" @@ -3238,8 +3324,8 @@ msgid "Select {item}" msgstr "" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Seleccionar Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "Seleccionar Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3249,8 +3335,8 @@ msgstr "Selecciona de una cuenta existente" msgid "Select option {i} of {numItems}" msgstr "" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "Selecciona el servicio" @@ -3258,11 +3344,15 @@ msgstr "Selecciona el servicio" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3283,8 +3373,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3294,7 +3384,7 @@ msgstr "Selecciona el idioma que prefieras para las traducciones de tus noticias msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3312,8 +3402,8 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar el mensaje" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "Enviar comentarios" @@ -3325,33 +3415,37 @@ msgstr "Enviar el informe" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3359,19 +3453,19 @@ msgstr "" msgid "Set new password" msgstr "Establecer la contraseƱa nueva" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Establece este ajuste en \"No\" para ocultar todas las publicaciones de citas de tus noticias. Las repeticiones seguirĆ”n siendo visibles." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las respuestas de tus noticias." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las veces que se han vuelto a publicar desde tus noticias." @@ -3380,8 +3474,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Establece este ajuste en \"SĆ­\" para mostrar las respuestas en una vista de hilos. Se trata de una función experimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Establece este ajuste en \"SĆ­\" para mostrar muestras de tus noticias guardadas en tu siguiente canal de noticias. Se trata de una función experimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Establece este ajuste en \"SĆ­\" para mostrar muestras de tus noticias guardadas en tu siguiente canal de noticias. Se trata de una función experimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3391,24 +3489,24 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "Configuraciones" @@ -3421,25 +3519,25 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Compartir" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Compartir las noticias" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "Mostrar" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3451,21 +3549,21 @@ msgstr "Mostrar de todas maneras" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostrar publicaciones de mis noticias" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostrar publicaciones de citas" @@ -3481,7 +3579,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostrar respuestas" @@ -3497,11 +3595,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostrar publicaciones que se han publicado nuevamente" @@ -3518,17 +3616,18 @@ msgstr "" msgid "Show users" msgstr "Mostrar usuarios" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3541,8 +3640,8 @@ msgid "Sign in" msgstr "Iniciar sesión" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Iniciar sesión" @@ -3555,14 +3654,14 @@ msgstr "Iniciar sesión como {0}" msgid "Sign in as..." msgstr "Iniciar sesión como ..." -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Iniciar sesión en" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "Cerrar sesión" @@ -3586,7 +3685,7 @@ msgstr "RegĆ­strate o inicia sesión para unirte a la conversación" msgid "Sign-in Required" msgstr "Se requiere iniciar sesión" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "Se inició sesión como" @@ -3599,7 +3698,7 @@ msgid "Signs {0} out of Bluesky" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "Saltarse este paso" @@ -3609,22 +3708,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -3645,10 +3744,10 @@ msgid "Square" msgstr "Cuadrado" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "Puesta en escena" +#~ msgid "Staging" +#~ msgstr "Puesta en escena" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "PĆ”gina de estado" @@ -3656,12 +3755,12 @@ msgstr "PĆ”gina de estado" msgid "Step {0} of {numSteps}" msgstr "" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "Libro de cuentos" @@ -3669,7 +3768,7 @@ msgstr "Libro de cuentos" msgid "Submit" msgstr "Enviar" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Suscribirse" @@ -3678,7 +3777,7 @@ msgstr "Suscribirse" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Suscribirse a esta lista" @@ -3694,35 +3793,35 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Soporte" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "" +#~ msgid "Swipe up to see more" +#~ msgstr "" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "Cambiar a otra cuenta" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "BitĆ”cora del sistema" @@ -3738,14 +3837,14 @@ msgstr "" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Condiciones" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Condiciones de servicio" @@ -3754,7 +3853,11 @@ msgstr "Condiciones de servicio" msgid "Text input field" msgstr "Campo de introducción de texto" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrĆ” interactuar contigo tras el desbloqueo." @@ -3770,7 +3873,7 @@ msgstr "La PolĆ­tica de derechos de autor se han trasladado a <0/>" msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "Es posible que se haya borrado la publicación." @@ -3786,11 +3889,11 @@ msgstr "Se ha movido el formulario de soporte. Si necesitas ayuda, por favor <0/ msgid "The Terms of Service have been moved to" msgstr "Las condiciones de servicio se han trasladado a" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3798,12 +3901,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3812,9 +3915,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3844,19 +3947,21 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3864,13 +3969,13 @@ msgstr "" msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Se ha producido un problema inesperado en la aplicación. Por favor, Ā”avĆ­sanos si te ha ocurrido esto!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3896,13 +4001,17 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "Este contenido no se puede ver sin una cuenta Bluesky." +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este canal de noticias estĆ” recibiendo mucho trĆ”fico y no estĆ” disponible temporalmente. Vuelve a intentarlo mĆ”s tarde." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -3930,7 +4039,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Esta publicación ha sido eliminada." @@ -3954,12 +4063,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Esta advertencia sólo estĆ” disponible para las publicaciones con medios adjuntos." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Esto ocultarĆ” esta entrada de tus contenidos." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "Preferencias de hilos" @@ -3967,7 +4076,7 @@ msgstr "Preferencias de hilos" msgid "Threaded Mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -3979,45 +4088,45 @@ msgstr "Conmutar el menĆŗ desplegable" msgid "Transformations" msgstr "Transformaciones" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Traducir" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "Intentar nuevamente" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Desbloquear una lista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Desactivar la opción de silenciar la lista" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "No se puede contactar con tu servicio. Comprueba tu conexión a Internet." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Desbloquear" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Desbloquear una cuenta" @@ -4033,40 +4142,41 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "Lamentablemente, no cumples los requisitos para crear una cuenta." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Desactivar la opción de silenciar la cuenta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Desactivar la opción de silenciar el hilo" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Desanclar la lista de moderación" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4109,8 +4219,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "UtilĆ­zalo para iniciar sesión en la otra aplicación junto con tu identificador." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4128,11 +4238,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Identificador del usuario" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4141,7 +4251,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4159,8 +4269,8 @@ msgstr "" msgid "User Lists" msgstr "Listas de usuarios" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Nombre de usuario o dirección de correo electrónico" @@ -4177,18 +4287,18 @@ msgid "Users in \"{0}\"" msgstr "Usuarios en Ā«{0}Ā»" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "Verificar el correo electrónico" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "Verificar mi correo electrónico" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "Verificar mi correo electrónico" @@ -4205,7 +4315,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4230,15 +4340,15 @@ msgid "Visit Site" msgstr "Visitar el sitio" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4254,7 +4364,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4262,7 +4372,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4274,11 +4384,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Ā”Nos hace mucha ilusión que te unas a nosotros!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4302,7 +4412,7 @@ msgstr "" msgid "What is the issue with this {collectionName}?" msgstr "ĀæCuĆ”l es el problema con esta {collectionName}?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "ĀæQuĆ© hay de nuevo?" @@ -4338,14 +4448,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4355,7 +4465,7 @@ msgstr "SĆ­" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4385,7 +4495,7 @@ msgstr "Ā”AĆŗn no tienes códigos de invitación! Te enviaremos algunos cuando l msgid "You don't have any pinned feeds." msgstr "No tienes ninguna noticia anclada." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "Ā”No tienes ninguna noticia guardada!" @@ -4393,7 +4503,7 @@ msgstr "Ā”No tienes ninguna noticia guardada!" msgid "You don't have any saved feeds." msgstr "No tienes ninguna noticia guardada." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "Has bloqueado al autor o has sido bloqueado por el autor." @@ -4433,7 +4543,7 @@ msgstr "AĆŗn no has creado ninguna contraseƱa de aplicación. Puedes crear una msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "AĆŗn no has silenciado ninguna cuenta. Para silenciar una cuenta, ve a su perfil y selecciona \"Silenciar cuenta\" en el menĆŗ de su cuenta." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "" @@ -4441,11 +4551,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4457,9 +4567,9 @@ msgstr "RecibirĆ”s un correo electrónico con un \"código de restablecimiento\" msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4471,7 +4581,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "Tu cuenta" @@ -4479,7 +4589,11 @@ msgstr "Tu cuenta" msgid "Your account has been deleted" msgstr "" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "Tu fecha de nacimiento" @@ -4491,7 +4605,7 @@ msgstr "" msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4513,7 +4627,7 @@ msgstr "Tu correo electrónico aĆŗn no ha sido verificado. Este es un paso de se msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Tu identificador completo serĆ”" @@ -4524,8 +4638,8 @@ msgstr "" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Tus códigos de invitación estĆ”n ocultos cuando inicias sesión con una contraseƱa de la app" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Tus códigos de invitación estĆ”n ocultos cuando inicias sesión con una contraseƱa de la app" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4542,7 +4656,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tus publicaciones, Me gustas y bloqueos son pĆŗblicos. Las cuentas silenciadas son privadas." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "Tu perfil" @@ -4550,6 +4664,6 @@ msgstr "Tu perfil" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Tu identificador del usuario" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 87338284a7..8a78424e22 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -18,32 +18,32 @@ msgid "(no email)" msgstr "(pas d’e-mail)" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {# code d’invitation disponible} other {# codes d’invitations disponibles}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# code d’invitation disponible} other {# codes d’invitations disponibles}}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} abonnements" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {Code d’invitation : # disponible} other {Codes d’invitation : # disponibles}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Code d’invitation : # disponible} other {Codes d’invitation : # disponibles}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} code d’invitation disponible" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} code d’invitation disponible" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} codes d’invitation disponibles" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} codes d’invitation disponibles" #: src/view/screens/Search/Search.tsx:87 #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non lus" @@ -51,7 +51,7 @@ msgstr "{numUnreadNotifications} non lus" msgid "<0/> members" msgstr "<0/> membres" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following} <1>abonnements" @@ -67,7 +67,7 @@ msgstr "<0>Suivre certains<1>comptes<2>recommandĆ©s" msgid "<0>Welcome to<1>Bluesky" msgstr "<0>Bienvenue sur<1>Bluesky" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "⚠Pseudo invalide" @@ -84,26 +84,26 @@ msgstr "Une nouvelle version de l’application est disponible. Veuillez faire l msgid "Access navigation links and settings" msgstr "AccĆØde aux liens de navigation et aux paramĆØtres" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "AccĆØde au profil et aux autres liens de navigation" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "AccessibilitĆ©" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "Compte" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Compte bloquĆ©" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Compte masquĆ©" @@ -123,11 +123,11 @@ msgstr "Options de compte" msgid "Account removed from quick access" msgstr "Compte supprimĆ© de l’accĆØs rapide" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Compte dĆ©bloquĆ©" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Compte dĆ©masquĆ©" @@ -146,8 +146,8 @@ msgstr "Ajouter un avertissement sur le contenu" msgid "Add a user to this list" msgstr "Ajouter un compte Ć  cette liste" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "Ajouter un compte" @@ -184,12 +184,12 @@ msgstr "Ajouter une carte de lien :" msgid "Add the following DNS record to your domain:" msgstr "Ajoutez l’enregistrement DNS suivant Ć  votre domaine :" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Ajouter aux listes" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Ajouter Ć  mes fils d’actu" @@ -202,11 +202,11 @@ msgstr "AjoutĆ©" msgid "Added to list" msgstr "AjoutĆ© Ć  la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "AjoutĆ© Ć  mes fils d’actu" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "DĆ©finissez le nombre de likes qu’une rĆ©ponse doit avoir pour ĆŖtre affichĆ©e dans votre fil d’actualitĆ©." @@ -214,7 +214,7 @@ msgstr "DĆ©finissez le nombre de likes qu’une rĆ©ponse doit avoir pour ĆŖtre a msgid "Adult Content" msgstr "Contenu pour adultes" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "Le contenu pour adultes ne peut ĆŖtre activĆ© que via le Web Ć  <0/>." @@ -222,11 +222,15 @@ msgstr "Le contenu pour adultes ne peut ĆŖtre activĆ© que via le Web Ć  <0/>." #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "AvancĆ©" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -285,7 +289,7 @@ msgstr "Les noms de mots de passe d’application ne peuvent contenir que des le msgid "App Password names must be at least 4 characters long." msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 caractĆØres." -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "ParamĆØtres de mot de passe d’application" @@ -293,13 +297,13 @@ msgstr "ParamĆØtres de mot de passe d’application" #~ msgid "App passwords" #~ msgstr "Mots de passe d’application" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "Mots de passe d’application" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Faire appel de l’avertissement sur le contenu" @@ -315,7 +319,7 @@ msgstr "Faire appel de cette dĆ©cision" msgid "Appeal this decision." msgstr "Faire appel de cette dĆ©cision." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "Affichage" @@ -327,11 +331,11 @@ msgstr "Êtes-vous sĆ»r de vouloir supprimer le mot de passe de l’application msgid "Are you sure you'd like to discard this draft?" msgstr "Êtes-vous sĆ»r de vouloir rejeter ce brouillon ?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Vous confirmez ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Vous confirmez ? Cela ne pourra pas ĆŖtre annulĆ©." @@ -347,21 +351,21 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "NuditĆ© artistique ou non Ć©rotique." -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ArriĆØre" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "Retour" @@ -370,42 +374,42 @@ msgstr "Retour" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "Principes de base" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "Date de naissance" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "Date de naissance :" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloquer ce compte" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloquer ces comptes" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Liste de blocage" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Bloquer ces comptes ?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Bloquer cette liste" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "BloquĆ©" @@ -418,7 +422,7 @@ msgstr "Comptes bloquĆ©s" msgid "Blocked Accounts" msgstr "Comptes bloquĆ©s" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć  vos discussions, vous mentionner ou interagir avec vous." @@ -426,22 +430,29 @@ msgstr "Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć  vos discussions, vous m msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć  vos discussions, vous mentionner ou interagir avec vous. Vous ne verrez pas leur contenu et ils ne pourront pas voir le vĆ“tre." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Post bloquĆ©." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Le blocage est public. Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć  vos discussions, vous mentionner ou interagir avec vous." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Blog" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -466,24 +477,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "Bluesky n’affichera pas votre profil et vos messages Ć  des personnes non connectĆ©es. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Version Build {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "Affaires" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "Bouton dĆ©sactivĆ©. Saisissez un domaine personnalisĆ© pour continuer." +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "Bouton dĆ©sactivĆ©. Saisissez un domaine personnalisĆ© pour continuer." #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -502,8 +514,8 @@ msgid "by you" msgstr "par vous" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "CamĆ©ra" @@ -511,7 +523,7 @@ msgstr "CamĆ©ra" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets et des tirets bas. La longueur doit ĆŖtre d’au moins 4 caractĆØres, mais pas plus de 32." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -571,17 +583,17 @@ msgstr "Annuler la recherche" msgid "Cancel waitlist signup" msgstr "Annuler l’inscription sur la liste d’attente" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Modifier le pseudo" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Modifier le pseudo" @@ -589,11 +601,11 @@ msgstr "Modifier le pseudo" msgid "Change my email" msgstr "Modifier mon e-mail" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -601,7 +613,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -609,8 +621,8 @@ msgstr "" msgid "Change Your Email" msgstr "Modifier votre e-mail" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -630,11 +642,11 @@ msgstr "Consultez votre boĆ®te de rĆ©ception, vous avez du recevoir un e-mail co msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "Choisir Ā« Tout le monde Ā» ou Ā« Personne Ā»" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "Choisir un nouveau pseudo Bluesky ou en crĆ©er un" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Choisir un service" @@ -655,29 +667,29 @@ msgstr "Choisissez les algorithmes qui alimentent votre expĆ©rience avec des fil msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "Effacer toutes les donnĆ©es de stockage existantes" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "Effacer toutes les donnĆ©es de stockage existantes (redĆ©marrer ensuite)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "Effacer toutes les donnĆ©es de stockage" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "Effacer toutes les donnĆ©es de stockage (redĆ©marrer ensuite)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "Effacer la recherche" @@ -695,7 +707,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -747,7 +760,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directives communautaires" @@ -756,6 +769,10 @@ msgstr "Directives communautaires" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Permet d’écrire des messages de {MAX_GRAPHEME_LENGTH} caractĆØres maximum" @@ -768,12 +785,12 @@ msgstr "RĆ©diger une rĆ©ponse" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirmer" @@ -797,7 +814,7 @@ msgstr "Confirmer les paramĆØtres de langue" msgid "Confirm delete account" msgstr "Confirmer la suppression du compte" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "Confirmez votre Ć¢ge pour activer le contenu pour adultes." @@ -811,12 +828,12 @@ msgstr "Code de confirmation" msgid "Confirms signing up {email} to the waitlist" msgstr "Confirme l’inscription de {email} sur la liste d’attente" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Connexion…" -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -846,11 +863,11 @@ msgstr "Avertissement sur le contenu" msgid "Content warnings" msgstr "Avertissements sur le contenu" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -859,15 +876,15 @@ msgstr "Continuer" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -880,13 +897,13 @@ msgstr "" msgid "Copied" msgstr "CopiĆ©" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "Version de build copiĆ©e dans le presse-papier" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "CopiĆ© dans le presse-papier" @@ -898,28 +915,28 @@ msgstr "Copie le mot de passe d’application" msgid "Copy" msgstr "Copie" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copier le lien vers le post" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copier le lien vers le profil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copier le texte du post" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Impossible de charger le fil d’actu" @@ -928,20 +945,20 @@ msgid "Could not load list" msgstr "Impossible de charger la liste" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "CrĆ©er un nouveau compte" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "CrĆ©er un compte Bluesky" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "CrĆ©er un compte" @@ -950,7 +967,7 @@ msgid "Create App Password" msgstr "CrĆ©er un mot de passe d’application" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "CrĆ©er un nouveau compte" @@ -974,12 +991,17 @@ msgstr "CrĆ©e une carte avec une miniature. La carte pointe vers {url}" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "Domaine personnalisĆ©" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -991,8 +1013,8 @@ msgstr "Personnaliser les mĆ©dias provenant de sites externes." #~ msgid "Danger Zone" #~ msgstr "Zone de danger" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "Sombre" @@ -1000,7 +1022,7 @@ msgstr "Sombre" msgid "Dark mode" msgstr "Mode sombre" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1008,7 +1030,7 @@ msgstr "" msgid "Debug panel" msgstr "Panneau de dĆ©bug" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "Supprimer le compte" @@ -1021,8 +1043,8 @@ msgstr "Supprimer le compte" msgid "Delete app password" msgstr "Supprimer le mot de passe de l’appli" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Supprimer la liste" @@ -1034,23 +1056,23 @@ msgstr "Supprimer mon compte" #~ msgid "Delete my account…" #~ msgstr "Supprimer mon compte…" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Supprimer le post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Supprimer ce post ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "SupprimĆ©" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "Post supprimĆ©." @@ -1062,14 +1084,14 @@ msgid "Description" msgstr "Description" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Outils de dĆ©v" +#~ msgid "Developer Tools" +#~ msgstr "Outils de dĆ©v" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "Vous vouliez dire quelque chose ?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1090,9 +1112,13 @@ msgstr "EmpĆŖcher les applis de montrer mon compte aux personnes non connectĆ©es msgid "Discover new custom feeds" msgstr "DĆ©couvrir des fils d’actu personnalisĆ©s" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "DĆ©couvrir de nouveaux fils d’actu" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "DĆ©couvrir de nouveaux fils d’actu" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1106,7 +1132,7 @@ msgstr "Afficher le nom" msgid "Domain verified!" msgstr "Domaine vĆ©rifiĆ© !" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "Pas de code d’invitation ?" @@ -1123,6 +1149,8 @@ msgctxt "action" msgid "Done" msgstr "Terminer" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1131,7 +1159,9 @@ msgstr "Terminer" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "TerminĆ©" @@ -1143,7 +1173,16 @@ msgstr "TerminĆ©{extraText}" msgid "Double tap to sign in" msgstr "Tapotez deux fois pour vous connecter" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1189,7 +1228,7 @@ msgstr "Modifier" msgid "Edit image" msgstr "Modifier l’image" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Modifier les infos de la liste" @@ -1197,8 +1236,8 @@ msgstr "Modifier les infos de la liste" msgid "Edit Moderation List" msgstr "Modifier la liste de modĆ©ration" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Modifier mes fils d’actu" @@ -1207,15 +1246,15 @@ msgstr "Modifier mes fils d’actu" msgid "Edit my profile" msgstr "Modifier mon profil" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Modifier le profil" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Modifier le profil" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Modifier les fils d’actu enregistrĆ©s" @@ -1235,17 +1274,15 @@ msgstr "Modifier votre description de profil" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "E-mail" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "Adresse e-mail" @@ -1262,7 +1299,7 @@ msgstr "E-mail mis Ć  jour" msgid "Email verified" msgstr "Adresse e-mail vĆ©rifiĆ©e" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "E-mail :" @@ -1270,7 +1307,7 @@ msgstr "E-mail :" msgid "Enable {0} only" msgstr "Activer {0} uniquement" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "Activer le contenu pour adultes" @@ -1287,11 +1324,11 @@ msgstr "Activer les mĆ©dias externes" msgid "Enable media players for" msgstr "Activer les lecteurs mĆ©dias pour" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Activez ce paramĆØtre pour ne voir que les rĆ©ponses des personnes que vous suivez." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "Fin du fil d’actu" @@ -1311,11 +1348,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "Entrez le domaine que vous voulez utiliser" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "Saisissez l’e-mail que vous avez utilisĆ© pour crĆ©er votre compte. Nous vous enverrons un Ā« code de rĆ©initialisation Ā» afin changer votre mot de passe." -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "Saisissez votre date de naissance" @@ -1324,7 +1361,7 @@ msgstr "Saisissez votre date de naissance" msgid "Enter your email" msgstr "Entrez votre e-mail" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Entrez votre e-mail" @@ -1337,13 +1374,17 @@ msgid "Enter your new email address below." msgstr "Entrez votre nouvelle e-mail ci-dessous." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Entrez votre pseudo et votre mot de passe" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Erreur :" @@ -1378,6 +1419,15 @@ msgstr "DĆ©velopper le texte alt" msgid "Expand or collapse the full post you are replying to" msgstr "DĆ©veloppe ou rĆ©duit le post complet auquel vous rĆ©pondez" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "MĆ©dia externe" @@ -1387,13 +1437,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "PrĆ©fĆ©rences sur les mĆ©dias externes" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "PrĆ©fĆ©rences sur les mĆ©dias externes" @@ -1406,7 +1456,7 @@ msgstr "Ɖchec de la crĆ©ation du mot de passe d’application." msgid "Failed to create the list. Check your internet connection and try again." msgstr "Ɖchec de la crĆ©ation de la liste. VĆ©rifiez votre connexion Internet et rĆ©essayez." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "Ɖchec de la suppression du post, veuillez rĆ©essayer" @@ -1415,15 +1465,15 @@ msgstr "Ɖchec de la suppression du post, veuillez rĆ©essayer" msgid "Failed to load recommended feeds" msgstr "Ɖchec du chargement des fils d’actu recommandĆ©s" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "Fil d’actu" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Fil d’actu par {0}" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Fil d’actu hors ligne" @@ -1431,18 +1481,19 @@ msgstr "Fil d’actu hors ligne" msgid "Feed Preferences" msgstr "PrĆ©fĆ©rences en matiĆØre de fil d’actu" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Fil d’actu" @@ -1462,7 +1513,7 @@ msgstr "Les fils d’actu sont crƩƩs par d’autres personnes pour rassembler msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Les fils d’actu sont des algorithmes personnalisĆ©s qui se construisent avec un peu d’expertise en programmation. <0/> pour plus d’informations." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1488,9 +1539,13 @@ msgstr "Trouvez des comptes Ć  l’aide de l’outil de recherche, Ć  droite" msgid "Finding similar accounts..." msgstr "Recherche de comptes similaires…" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Affine le contenu affichĆ© sur votre Ć©cran d’accueil." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Affine le contenu affichĆ© sur votre Ć©cran d’accueil." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1513,21 +1568,24 @@ msgstr "Miroir horizontal" msgid "Flip vertically" msgstr "Miroir vertical" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Suivre" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "Suivre" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "Suivre" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Suivre {0}" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1547,7 +1605,7 @@ msgstr "Suivi par {0}" msgid "Followed users" msgstr "Comptes suivis" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Comptes suivis uniquement" @@ -1559,16 +1617,24 @@ msgstr "vous suit" msgid "Followers" msgstr "Abonné·eĀ·s" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Suivi" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Suit {0}" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Vous suit" @@ -1588,11 +1654,11 @@ msgstr "Pour des raisons de sĆ©curitĆ©, nous devrons envoyer un code de confirma msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Pour des raisons de sĆ©curitĆ©, vous ne pourrez plus afficher ceci. Si vous perdez ce mot de passe, vous devrez en gĆ©nĆ©rer un autre." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "OubliĆ©" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "Mot de passe oubliĆ©" @@ -1601,7 +1667,7 @@ msgstr "Mot de passe oubliĆ©" msgid "Forgot Password" msgstr "Mot de passe oubliĆ©" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "TirĆ© de <0/>" @@ -1622,8 +1688,8 @@ msgstr "C’est parti" msgid "Go back" msgstr "Retour" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1639,9 +1705,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1651,12 +1717,12 @@ msgstr "Aller Ć  la suite" msgid "Handle" msgstr "Pseudo" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "Aide" @@ -1664,11 +1730,11 @@ msgstr "Aide" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1677,19 +1743,19 @@ msgid "Here is your app password." msgstr "Voici le mot de passe de votre appli." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "Cacher" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "Cacher" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Cacher ce post" @@ -1698,7 +1764,7 @@ msgstr "Cacher ce post" msgid "Hide the content" msgstr "Cacher ce contenu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Cacher ce post ?" @@ -1706,7 +1772,7 @@ msgstr "Cacher ce post ?" msgid "Hide user list" msgstr "Cacher la liste des comptes" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Masque les posts de {0} dans votre fil d’actu" @@ -1730,22 +1796,23 @@ msgstr "Mmm… le serveur de fils d’actu ne rĆ©pond pas. Veuillez informer la msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, nous n’arrivons pas Ć  trouver ce fil d’actu. Il a peut-ĆŖtre Ć©tĆ© supprimĆ©." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "Accueil" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "PrĆ©fĆ©rences de fils d’actu de l’accueil" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "PrĆ©fĆ©rences de fils d’actu de l’accueil" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "HĆ©bergeur" @@ -1785,8 +1852,8 @@ msgstr "Image" msgid "Image alt text" msgstr "Texte alt de l’image" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "Options d’images" @@ -1798,11 +1865,11 @@ msgstr "Entrez le code envoyĆ© Ć  votre e-mail pour rĆ©initialiser le mot de pas msgid "Input confirmation code for account deletion" msgstr "Entrez le code de confirmation pour supprimer le compte" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "Entrez le code d’invitation pour continuer" @@ -1819,56 +1886,55 @@ msgid "Input password for account deletion" msgstr "Entrez le mot de passe pour la suppression du compte" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "Entrez le mot de passe associĆ© Ć  {identifier}" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "Entrez le pseudo ou l’adresse e-mail que vous avez utilisĆ© lors de l’inscription" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "Entrez votre e-mail pour vous inscrire sur la liste d’attente de Bluesky" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "Entrez votre mot de passe" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Entrez votre pseudo" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Enregistrement de post invalide ou non pris en charge" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "Pseudo ou mot de passe incorrect" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Inviter" +#~ msgid "Invite" +#~ msgstr "Inviter" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Inviter un ami" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "Code d’invitation" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 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." @@ -1877,8 +1943,8 @@ msgid "Invite codes: {0} available" msgstr "Code d’invitation : {0} disponible" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "Invitations : {invitesAvailable} codes dispo" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Invitations : {invitesAvailable} codes dispo" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1889,6 +1955,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Emplois" @@ -1896,8 +1963,8 @@ msgstr "Emplois" msgid "Join the waitlist" msgstr "S’inscrire sur la liste d’attente" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "S’inscrire sur la liste d’attente." @@ -1913,7 +1980,7 @@ msgstr "" msgid "Language selection" msgstr "SĆ©lection de la langue" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "PrĆ©fĆ©rences de langue" @@ -1922,7 +1989,7 @@ msgstr "PrĆ©fĆ©rences de langue" msgid "Language Settings" msgstr "ParamĆØtres linguistiques" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Langues" @@ -1960,11 +2027,11 @@ msgstr "Si vous ne cochez rien, toutes les langues s’afficheront." msgid "Leaving Bluesky" msgstr "Quitter Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stockage ancien effacĆ©, vous devez redĆ©marrer l’application maintenant." @@ -1977,16 +2044,17 @@ msgstr "RĆ©initialisez votre mot de passe !" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "BibliothĆØque" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "Clair" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "Liker" @@ -1994,7 +2062,7 @@ msgstr "Liker" msgid "Like this feed" msgstr "Liker ce fil d’actu" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "LikĆ© par" @@ -2003,7 +2071,7 @@ msgstr "LikĆ© par" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "LikĆ© par {0} {1}" @@ -2019,15 +2087,15 @@ msgstr "likĆ© votre fil d’actu personnalisĆ©" msgid "liked your post" msgstr "likĆ© votre post" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "Likes" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Likes sur ce post" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "Liste" @@ -2035,19 +2103,19 @@ msgstr "Liste" msgid "List Avatar" msgstr "Liste des avatars" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Liste bloquĆ©e" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Liste par {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Liste supprimĆ©e" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Liste masquĆ©e" @@ -2055,35 +2123,35 @@ msgstr "Liste masquĆ©e" msgid "List Name" msgstr "Nom de liste" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Liste dĆ©bloquĆ©e" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Liste dĆ©masquĆ©e" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Listes" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Charger plus d’articles" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Charger les nouvelles notifications" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Charger les nouveaux messages" @@ -2092,17 +2160,17 @@ msgid "Loading..." msgstr "Chargement…" #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Serveur de dĆ©v local" +#~ msgid "Local dev server" +#~ msgstr "Serveur de dĆ©v local" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "Journaux" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2118,7 +2186,15 @@ msgstr "Se connecter Ć  un compte qui n’est pas listĆ©" msgid "Make sure this is where you intend to go!" msgstr "Assurez-vous que c’est bien lĆ  que vous avez l’intention d’aller !" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "MĆ©dia" @@ -2141,14 +2217,14 @@ msgstr "Message du serveur : {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "ModĆ©ration" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Liste de modĆ©ration par {0}" @@ -2157,7 +2233,7 @@ msgstr "Liste de modĆ©ration par {0}" msgid "Moderation list by <0/>" msgstr "Liste de modĆ©ration par <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2180,7 +2256,7 @@ msgstr "Listes de modĆ©ration" msgid "Moderation Lists" msgstr "Listes de modĆ©ration" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "ParamĆØtres de modĆ©ration" @@ -2188,17 +2264,17 @@ msgstr "ParamĆØtres de modĆ©ration" msgid "Moderator has chosen to set a general warning on the content." msgstr "La modĆ©ration a choisi d’ajouter un avertissement gĆ©nĆ©ral sur le contenu." -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "Plus de fils d’actu" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Plus d’options" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Plus d’options de post" @@ -2206,31 +2282,35 @@ msgstr "Plus d’options de post" msgid "Most-liked replies first" msgstr "RĆ©ponses les plus likĆ©es en premier" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Masquer le compte" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Masquer les comptes" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Masquer la liste" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Masquer ces comptes ?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Masquer cette liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2247,7 +2327,7 @@ msgstr "Comptes masquĆ©s" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Les comptes masquĆ©s voient leurs posts supprimĆ©s de votre fil d’actualitĆ© et de vos notifications. Cette option est totalement privĆ©e." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ce que vous masquez reste privĆ©. Les comptes masquĆ©s peuvent interagir avec vous, mais vous ne verrez pas leurs posts et ne recevrez pas de notifications de leur part." @@ -2255,7 +2335,7 @@ msgstr "Ce que vous masquez reste privĆ©. Les comptes masquĆ©s peuvent interagir msgid "My Birthday" msgstr "Ma date de naissance" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "Mes fils d’actu" @@ -2263,10 +2343,14 @@ msgstr "Mes fils d’actu" msgid "My Profile" msgstr "Mon profil" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "Mes fils d’actu enregistrĆ©s" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2280,15 +2364,15 @@ msgstr "Le nom est requis" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "Navigue vers le prochain Ć©cran" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "Navigue vers votre profil" @@ -2327,16 +2411,17 @@ msgstr "Nouveau mot de passe" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "Nouveau post" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Nouveau post" @@ -2358,10 +2443,10 @@ msgstr "RĆ©ponses les plus rĆ©centes en premier" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2379,10 +2464,10 @@ msgstr "Suivant" msgid "Next image" msgstr "Image suivante" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2393,7 +2478,7 @@ msgstr "Non" msgid "No description" msgstr "Aucune description" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Ne suit plus {0}" @@ -2406,7 +2491,7 @@ msgstr "Pas encore de notifications !" msgid "No result" msgstr "Aucun rĆ©sultat" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "Aucun rĆ©sultat trouvĆ© pour Ā« {query} Ā»" @@ -2429,6 +2514,7 @@ msgid "Not Applicable." msgstr "Sans objet." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "Introuvable" @@ -2441,13 +2527,13 @@ msgstr "Pas maintenant" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Remarque : Bluesky est un rĆ©seau ouvert et public. Ce paramĆØtre limite uniquement la visibilitĆ© de votre contenu sur l’application et le site Web de Bluesky, et d’autres applications peuvent ne pas respecter ce paramĆØtre. Votre contenu peut toujours ĆŖtre montrĆ© aux personnes non connectĆ©es par d’autres applications et sites Web." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "Notifications" @@ -2471,7 +2557,7 @@ msgstr "D’accord" msgid "Oldest replies first" msgstr "Plus anciennes rĆ©ponses en premier" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "RĆ©initialiser le didacticiel" @@ -2483,9 +2569,8 @@ msgstr "Une ou plusieurs images n’ont pas de texte alt." msgid "Only {0} can reply." msgstr "Seul {0} peut rĆ©pondre." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "Oups !" @@ -2498,15 +2583,15 @@ msgstr "" msgid "Open emoji picker" msgstr "Ouvrir le sĆ©lecteur d’emoji" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Navigation ouverte" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "Ouvrir la page Storybook" @@ -2530,7 +2615,7 @@ msgstr "Ouvre l’appareil photo de l’appareil" msgid "Opens composer" msgstr "Ouvre le rĆ©dacteur" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "Ouvre les paramĆØtres linguistiques configurables" @@ -2538,33 +2623,31 @@ msgstr "Ouvre les paramĆØtres linguistiques configurables" msgid "Opens device photo gallery" msgstr "Ouvre la galerie de photos de l’appareil" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Ouvre l’éditeur pour le nom d’affichage du profil, l’avatar, l’image d’arriĆØre-plan et la description" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "Ouvre les paramĆØtres d’intĆ©gration externe" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Ouvre la liste des comptes abonnĆ©s" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Ouvre la liste des abonnements" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "Ouvre la liste des codes d’invitation" +#~ msgid "Opens invite code list" +#~ msgstr "Ouvre la liste des codes d’invitation" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "Ouvre la liste des codes d’invitation" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "Ouvre la fenĆŖtre modale pour confirmer la suppression du compte. Requiert un code e-mail." @@ -2572,39 +2655,39 @@ msgstr "Ouvre la fenĆŖtre modale pour confirmer la suppression du compte. Requie msgid "Opens modal for using custom domain" msgstr "Ouvre une fenĆŖtre modale pour utiliser un domaine personnalisĆ©" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "Ouvre les paramĆØtres de modĆ©ration" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "Ouvre le formulaire de rĆ©initialisation du mot de passe" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "Ouvre l’écran pour modifier les fils d’actu enregistrĆ©s" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "Ouvre l’écran avec tous les fils d’actu enregistrĆ©s" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "Ouvre la page de configuration du mot de passe" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "Ouvre les prĆ©fĆ©rences du fil d’accueil" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "Ouvre la page de l’historique" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "Ouvre la page du journal systĆØme" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "Ouvre les prĆ©fĆ©rences relatives aux fils de discussion" @@ -2621,8 +2704,8 @@ msgid "Other account" msgstr "Autre compte" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Autre service" +#~ msgid "Other service" +#~ msgstr "Autre service" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2636,9 +2719,9 @@ msgstr "Page introuvable" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2652,11 +2735,11 @@ msgstr "Mise Ć  jour du mot de passe" msgid "Password updated!" msgstr "Mot de passe mis Ć  jour !" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" @@ -2673,15 +2756,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "Images destinĆ©es aux adultes." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Ajouter Ć  l’accueil" @@ -2702,14 +2785,18 @@ msgstr "Lire la vidĆ©o" msgid "Plays the GIF" msgstr "Lit le GIF" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Veuillez choisir votre pseudo." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Veuillez choisir votre mot de passe." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Veuillez confirmer votre e-mail avant de le modifier. Ceci est temporairement requis pendant que des outils de mise Ć  jour d’e-mail sont ajoutĆ©s, cette Ć©tape ne sera bientĆ“t plus nĆ©cessaire." @@ -2719,22 +2806,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Veuillez entrer un nom pour votre mot de passe d’application. Les espaces ne sont pas autorisĆ©s." #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Veuillez saisir un nom unique pour le mot de passe de l’application ou utiliser celui que nous avons gĆ©nĆ©rĆ© de maniĆØre alĆ©atoire." #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Veuillez entrer votre e-mail." @@ -2769,26 +2856,26 @@ msgctxt "action" msgid "Post" msgstr "Poster" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Post de {0}" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "Post de @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Post supprimĆ©" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "Post cachĆ©" @@ -2800,11 +2887,11 @@ msgstr "Langue du post" msgid "Post Languages" msgstr "Langues du post" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "Post introuvable" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "Posts" @@ -2828,27 +2915,27 @@ msgstr "Langue principale" msgid "Prioritize Your Follows" msgstr "DĆ©finissez des prioritĆ©s de vos suivis" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "Vie privĆ©e" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "Charte de confidentialitĆ©" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "Traitement…" #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "Profil" @@ -2856,7 +2943,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil mis Ć  jour" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "ProtĆ©gez votre compte en vĆ©rifiant votre e-mail." @@ -2913,12 +3000,12 @@ msgstr "Comptes recommandĆ©s" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Supprimer" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Supprimer {0} de mes fils d’actu ?" @@ -2931,11 +3018,11 @@ msgstr "Supprimer compte" msgid "Remove feed" msgstr "Supprimer fil d’actu" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" @@ -2951,7 +3038,7 @@ msgstr "Supprimer l’aperƧu d’image" msgid "Remove repost" msgstr "Supprimer le repost" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Supprimer ce fil d’actu ?" @@ -2964,8 +3051,8 @@ msgstr "Supprimer ce fil d’actu de vos fils d’actu enregistrĆ©s ?" msgid "Removed from list" msgstr "SupprimĆ© de la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "SupprimĆ© de mes fils d’actu" @@ -2973,7 +3060,7 @@ msgstr "SupprimĆ© de mes fils d’actu" msgid "Removes default thumbnail from {0}" msgstr "Supprime la miniature par dĆ©faut de {0}" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "RĆ©ponses" @@ -2986,12 +3073,12 @@ msgctxt "action" msgid "Reply" msgstr "RĆ©pondre" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtres de rĆ©ponse" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "RĆ©ponse Ć  <0/>" @@ -3000,20 +3087,20 @@ msgstr "RĆ©ponse Ć  <0/>" msgid "Report {collectionName}" msgstr "Signaler {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Signaler le compte" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Signaler le fil d’actu" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Signaler la liste" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Signaler le post" @@ -3038,11 +3125,11 @@ msgstr "Republier ou citer" msgid "Reposted By" msgstr "RepubliĆ© par" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "RepubliĆ© par {0}" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "RepubliĆ© par <0/>" @@ -3050,7 +3137,7 @@ msgstr "RepubliĆ© par <0/>" msgid "reposted your post" msgstr "a republiĆ© votre post" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Reposts de ce post" @@ -3060,19 +3147,19 @@ msgid "Request Change" msgstr "Demande de modification" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "NĆ©cessiter un texte alt avant de publier" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Obligatoire pour cet hĆ©bergeur" @@ -3085,66 +3172,65 @@ msgstr "RĆ©initialiser le code" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "RĆ©initialiser le didacticiel" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "RĆ©initialisation du didacticiel" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "RĆ©initialiser mot de passe" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "RĆ©initialiser les prĆ©fĆ©rences" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "RĆ©initialiser l’état des prĆ©fĆ©rences" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "RĆ©initialise l’état d’accueil" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "RĆ©initialise l’état des prĆ©fĆ©rences" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "RĆ©essaye la connection" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "RĆ©essaye la derniĆØre action, qui a Ć©chouĆ©" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "RĆ©essayer" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "Retourne Ć  la page prĆ©cĆ©dente" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "SANDBOX. Les posts et les comptes ne sont pas permanents." +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "SANDBOX. Les posts et les comptes ne sont pas permanents." #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3157,7 +3243,7 @@ msgstr "Enregistrer" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Enregistrer" @@ -3197,11 +3283,11 @@ msgstr "" msgid "Scroll to top" msgstr "Remonter en haut" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3209,8 +3295,8 @@ msgstr "Remonter en haut" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Recherche" @@ -3242,8 +3328,8 @@ msgid "Select {item}" msgstr "SĆ©lectionner {item}" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "SĆ©lectionner Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "SĆ©lectionner Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3253,8 +3339,8 @@ msgstr "SĆ©lectionner un compte existant" msgid "Select option {i} of {numItems}" msgstr "SĆ©lectionne l’option {i} sur {numItems}" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "SĆ©lectionner un service" @@ -3262,11 +3348,15 @@ msgstr "SĆ©lectionner un service" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3287,8 +3377,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3298,7 +3388,7 @@ msgstr "SĆ©lectionnez votre langue prĆ©fĆ©rĆ©e pour traduire votre fils d’actu msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3316,8 +3406,8 @@ msgctxt "action" msgid "Send Email" msgstr "Envoyer l’e-mail" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "Envoyer des commentaires" @@ -3329,33 +3419,37 @@ msgstr "Envoyer le rapport" msgid "Sends email with confirmation code for account deletion" msgstr "Envoie un e-mail avec le code de confirmation pour la suppression du compte" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "Choisis {value} pour la politique de modĆ©ration de contenu {labelGroup}" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "Enregistrer l’âge" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "Change le thĆØme de couleur en sombre" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "Change le thĆØme de couleur en clair" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "Change le thĆØme de couleur en fonction du paramĆØtre systĆØme" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3363,19 +3457,19 @@ msgstr "" msgid "Set new password" msgstr "DĆ©finir un nouveau mot de passe" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "DĆ©finit le mot de passe" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Choisissez Ā« Non Ā» pour cacher toutes les citations sur votre fils d’actu. Les reposts seront toujours visibles." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Choisissez Ā« Non Ā» pour cacher toutes les rĆ©ponses dans votre fils d’actu." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Choisissez Ā« Non Ā» pour cacher toutes les reposts de votre fils d’actu." @@ -3384,8 +3478,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Choisissez Ā« Oui Ā» pour afficher les rĆ©ponses dans un fil de discussion. C’est une fonctionnalitĆ© expĆ©rimentale." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Choisissez Ā« Oui Ā» pour afficher des Ć©chantillons de vos fils d’actu enregistrĆ©s dans votre fils d’actu suivant. C’est une fonctionnalitĆ© expĆ©rimentale." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Choisissez Ā« Oui Ā» pour afficher des Ć©chantillons de vos fils d’actu enregistrĆ©s dans votre fils d’actu suivant. C’est une fonctionnalitĆ© expĆ©rimentale." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3395,24 +3493,24 @@ msgstr "" msgid "Sets Bluesky username" msgstr "DĆ©finit le pseudo Bluesky" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "DĆ©finit l’e-mail pour la rĆ©initialisation du mot de passe" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "DĆ©finit l’hĆ©bergeur pour la rĆ©initialisation du mot de passe" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "DĆ©finit le serveur pour le client Bluesky" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "ParamĆØtres" @@ -3425,25 +3523,25 @@ msgctxt "action" msgid "Share" msgstr "Partager" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Partager" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Partager le fil d’actu" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "Afficher" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Afficher toutes les rĆ©ponses" @@ -3455,21 +3553,21 @@ msgstr "Afficher quand mĆŖme" msgid "Show embeds from {0}" msgstr "Afficher les intĆ©grations de {0}" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Afficher les suivis similaires Ć  {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Voir plus" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Afficher les posts de mes fils d’actu" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Afficher les citations" @@ -3485,7 +3583,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Afficher les rĆ©ponses" @@ -3501,11 +3599,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Afficher les rĆ©ponses avec au moins {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Afficher les reposts" @@ -3522,17 +3620,18 @@ msgstr "Afficher le contenu" msgid "Show users" msgstr "Afficher les comptes" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Affiche une liste de comptes similaires Ć  ce compte." -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Affiche les posts de {0} dans votre fil d’actu" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3545,8 +3644,8 @@ msgid "Sign in" msgstr "Connexion" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Connexion" @@ -3559,14 +3658,14 @@ msgstr "Se connecter en tant que {0}" msgid "Sign in as..." msgstr "Se connecter en tant que…" -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Se connecter Ć " #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "DĆ©connexion" @@ -3590,7 +3689,7 @@ msgstr "S’inscrire ou se connecter pour participer Ć  la conversation" msgid "Sign-in Required" msgstr "Connexion requise" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "ConnectĆ© en tant que" @@ -3603,7 +3702,7 @@ msgid "Signs {0} out of Bluesky" msgstr "DĆ©connecte {0} de Bluesky" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "Ignorer" @@ -3613,22 +3712,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "Quelque chose n’a pas marchĆ©, mais on ne sait pas trop quoi." +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Quelque chose n’a pas marchĆ©, mais on ne sait pas trop quoi." #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "Quelque chose n’a pas marchĆ©. VĆ©rifiez vos e-mails et rĆ©essayez." -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "DĆ©solĆ© ! Votre session a expirĆ©. Essayez de vous reconnecter." @@ -3649,10 +3748,10 @@ msgid "Square" msgstr "CarrĆ©" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "Serveur de test" +#~ msgid "Staging" +#~ msgstr "Serveur de test" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "Ɖtat du service" @@ -3660,12 +3759,12 @@ msgstr "Ɖtat du service" msgid "Step {0} of {numSteps}" msgstr "Ɖtape {0} sur {numSteps}" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "Stockage effacĆ©, vous devez redĆ©marrer l’application maintenant." -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "Historique" @@ -3673,7 +3772,7 @@ msgstr "Historique" msgid "Submit" msgstr "Envoyer" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "S’abonner" @@ -3682,7 +3781,7 @@ msgstr "S’abonner" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "S’abonner Ć  cette liste" @@ -3698,35 +3797,35 @@ msgstr "SuggĆ©rĆ©s pour vous" msgid "Suggestive" msgstr "Suggestif" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Soutien" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "Glisser vers le haut pour en voir plus" +#~ msgid "Swipe up to see more" +#~ msgstr "Glisser vers le haut pour en voir plus" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "Changer de compte" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "Basculer sur {0}" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "Bascule le compte auquel vous ĆŖtes connectĆ©s vers" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "SystĆØme" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "Journal systĆØme" @@ -3742,14 +3841,14 @@ msgstr "Tapper pour voir en entier" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Conditions gĆ©nĆ©rales" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Conditions d’utilisation" @@ -3758,7 +3857,11 @@ msgstr "Conditions d’utilisation" msgid "Text input field" msgstr "Champ de saisie de texte" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "Ce compte pourra interagir avec vous aprĆØs le dĆ©blocage." @@ -3774,7 +3877,7 @@ msgstr "Notre politique de droits d’auteur a Ć©tĆ© dĆ©placĆ©e vers <0/>" msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "Ce post a peut-ĆŖtre Ć©tĆ© supprimĆ©." @@ -3790,11 +3893,11 @@ msgstr "Le formulaire d’assistance a Ć©tĆ© dĆ©placĆ©. Si vous avez besoin d’ msgid "The Terms of Service have been moved to" msgstr "Nos conditions d’utilisation ont Ć©tĆ© dĆ©placĆ©es vers" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Il y a eu un problĆØme de connexion au serveur, veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." @@ -3802,12 +3905,12 @@ msgstr "Il y a eu un problĆØme de connexion au serveur, veuillez vĆ©rifier votre msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Il y a eu un problĆØme lors de la suppression du fil, veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Il y a eu un problĆØme lors de la mise Ć  jour de vos fils d’actu, veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3816,9 +3919,9 @@ msgstr "Il y a eu un problĆØme de connexion au serveur" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Il y a eu un problĆØme de connexion Ć  votre serveur" @@ -3848,19 +3951,21 @@ msgstr "Il y a eu un problĆØme de synchronisation de vos prĆ©fĆ©rences avec le s msgid "There was an issue with fetching your app passwords" msgstr "Il y a eu un problĆØme lors de la rĆ©cupĆ©ration de vos mots de passe d’application" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Il y a eu un problĆØme ! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Il y a eu un problĆØme. Veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." @@ -3868,13 +3973,13 @@ msgstr "Il y a eu un problĆØme. Veuillez vĆ©rifier votre connexion Internet et r msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Un problĆØme inattendu s’est produit dans l’application. N’hĆ©sitez pas Ć  nous faire savoir si cela vous est arrivĆ© !" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3900,13 +4005,17 @@ 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/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Ce fil d’actu reƧoit actuellement un trafic important, il est temporairement indisponible. Veuillez rĆ©essayer plus tard." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Ce fil d’actu est vide !" @@ -3934,7 +4043,7 @@ msgstr "Cette liste est vide !" msgid "This name is already in use" msgstr "Ce nom est dĆ©jĆ  utilisĆ©" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Ce post a Ć©tĆ© supprimĆ©." @@ -3958,12 +4067,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Cet avertissement n’est disponible que pour les messages contenant des mĆ©dias." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Cela va masquer ce post de vos fils d’actu." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "PrĆ©fĆ©rences des fils de discussion" @@ -3971,7 +4080,7 @@ msgstr "PrĆ©fĆ©rences des fils de discussion" msgid "Threaded Mode" msgstr "Mode arborescent" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "PrĆ©fĆ©rences de fils de discussion" @@ -3983,45 +4092,45 @@ msgstr "Activer le menu dĆ©roulant" msgid "Transformations" msgstr "Transformations" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Traduire" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "RĆ©essayer" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "DĆ©bloquer la liste" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "RĆ©afficher cette liste" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossible de contacter votre service. Veuillez vĆ©rifier votre connexion Internet." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "DĆ©bloquer" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "DĆ©bloquer" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "DĆ©bloquer le compte" @@ -4037,40 +4146,41 @@ msgctxt "action" msgid "Unfollow" msgstr "Se dĆ©sabonner" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Se dĆ©sabonner de {0}" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "Malheureusement, vous ne remplissez pas les conditions requises pour crĆ©er un compte." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "DĆ©liker" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "RĆ©afficher" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "RĆ©afficher ce compte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "RĆ©afficher ce fil de discussion" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "DĆ©sĆ©pingler" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Supprimer la liste de modĆ©ration" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Supprimer" @@ -4113,8 +4223,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "Utilisez-le pour vous connecter Ć  l’autre application avec votre identifiant." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "Utilise votre domaine comme votre fournisseur de client Bluesky" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Utilise votre domaine comme votre fournisseur de client Bluesky" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4132,11 +4242,11 @@ msgstr "Compte bloquĆ© par liste" msgid "User Blocks You" msgstr "Compte qui vous bloque" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Pseudo" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Liste de compte de {0}" @@ -4145,7 +4255,7 @@ msgstr "Liste de compte de {0}" msgid "User list by <0/>" msgstr "Liste de compte par <0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4163,8 +4273,8 @@ msgstr "Liste de compte mise Ć  jour" msgid "User Lists" msgstr "Listes de comptes" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Pseudo ou e-mail" @@ -4181,18 +4291,18 @@ msgid "Users in \"{0}\"" msgstr "Comptes dans Ā« {0} Ā»" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "Confirmer l’e-mail" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "Confirmer mon e-mail" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "Confirmer mon e-mail" @@ -4209,7 +4319,7 @@ msgstr "VĆ©rifiez votre e-mail" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Voir l’avatar de {0}" @@ -4234,15 +4344,15 @@ msgid "Visit Site" msgstr "Visiter le site" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "Avertir" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4258,7 +4368,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4266,7 +4376,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4278,11 +4388,11 @@ msgstr "Nous examinerons votre appel rapidement." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillir !" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Nous sommes dĆ©solĆ©s, mais nous n’avons pas pu charger cette liste. Si cela persiste, veuillez contacter l’origine de la liste, @{handleOrDid}." @@ -4306,7 +4416,7 @@ msgstr "" msgid "What is the issue with this {collectionName}?" msgstr "Quel est le problĆØme avec cette {collectionName} ?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "Quoi de neuf ?" @@ -4342,14 +4452,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4359,7 +4469,7 @@ msgstr "Oui" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4389,7 +4499,7 @@ msgstr "Vous n’avez encore aucun code d’invitation ! Nous vous en enverrons msgid "You don't have any pinned feeds." msgstr "Vous n’avez encore aucun fil Ć©pinglĆ©." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "Vous n’avez encore aucun fil enregistrĆ© !" @@ -4397,7 +4507,7 @@ msgstr "Vous n’avez encore aucun fil enregistrĆ© !" msgid "You don't have any saved feeds." msgstr "Vous n’avez encore aucun fil enregistrĆ©." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "Vous avez bloquĆ© cet auteur ou vous avez Ć©tĆ© bloquĆ© par celui-ci." @@ -4437,7 +4547,7 @@ msgstr "Vous n’avez encore crƩƩ aucun mot de passe pour l’appli. Vous pouv msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "Vous n’avez encore masquĆ© aucun compte. Pour dĆ©sactiver un compte, allez sur son profil et sĆ©lectionnez Ā« Masquer le compte Ā» dans le menu de son compte." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "Vous devez avoir 18 ans ou plus pour activer le contenu pour adultes." @@ -4445,11 +4555,11 @@ msgstr "Vous devez avoir 18 ans ou plus pour activer le contenu pour adultes." msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Vous recevrez dĆ©sormais des notifications pour ce fil de discussion" @@ -4461,9 +4571,9 @@ msgstr "Vous recevrez un e-mail contenant un Ā« code de rĆ©initialisation Ā» Sai msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4475,7 +4585,7 @@ msgstr "" 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/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "Votre compte" @@ -4483,7 +4593,11 @@ msgstr "Votre compte" msgid "Your account has been deleted" msgstr "Votre compte a Ć©tĆ© supprimĆ©" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "Votre date de naissance" @@ -4495,7 +4609,7 @@ msgstr "" msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4517,7 +4631,7 @@ msgstr "Votre e-mail n’a pas encore Ć©tĆ© vĆ©rifiĆ©. Il s’agit d’une mesur msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes pour voir ce qui se passe." -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Votre nom complet sera" @@ -4528,8 +4642,8 @@ msgstr "Votre pseudo complet sera <0>@{0}" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Vos codes d’invitation sont cachĆ©s lorsque vous ĆŖtes connectĆ© Ć  l’aide d’un mot de passe d’application." +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Vos codes d’invitation sont cachĆ©s lorsque vous ĆŖtes connectĆ© Ć  l’aide d’un mot de passe d’application." #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4546,7 +4660,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Vos posts, les likes et les blocages sont publics. Les silences (comptes masquĆ©s) sont privĆ©s." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "Votre profil" @@ -4554,6 +4668,6 @@ msgstr "Votre profil" msgid "Your reply has been published" msgstr "Votre rĆ©ponse a Ć©tĆ© publiĆ©e" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Votre pseudo" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 1b3d50fff9..53bcdbe350 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "" @@ -67,7 +67,7 @@ msgstr "<0>ą¤•ą„ą¤›<1>ą¤Ŗą¤øą¤‚ą¤¦ą„€ą¤¦ą¤¾ ą¤‰ą¤Ŗą¤Æą„‹ą¤—ą¤•ą¤°ą„ą¤¤ą¤¾ msgid "<0>Welcome to<1>Bluesky" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "" @@ -84,26 +84,26 @@ msgstr "ऐप का ą¤ą¤• नया ą¤øą¤‚ą¤øą„ą¤•ą¤°ą¤£ ą¤‰ą¤Ŗą¤²ą¤¬ą„ą¤§ msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "ą¤Ŗą„ą¤°ą¤µą„‡ą¤°ą„ą¤¶ą¤Æą„‹ą¤—ą„ą¤Æą¤¤ą¤¾" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "ą¤…ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿ" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -123,11 +123,11 @@ msgstr "ą¤…ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿ ą¤•ą„‡ ą¤µą¤æą¤•ą¤²ą„ą¤Ŗ" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -146,8 +146,8 @@ msgstr "ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤šą„‡ą¤¤ą¤¾ą¤µą¤Øą„€ ą¤œą„‹ą¤”ą¤¼ą„‡ą¤‚" msgid "Add a user to this list" msgstr "इस ą¤øą„‚ą¤šą„€ ą¤®ą„‡ą¤‚ ą¤•ą¤æą¤øą„€ ą¤•ą„‹ ą¤œą„‹ą¤”ą¤¼ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "ą¤…ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿ ą¤œą„‹ą¤”ą¤¼ą„‡ą¤‚" @@ -184,12 +184,12 @@ msgstr "लिंक ą¤•ą¤¾ą¤°ą„ą¤” ą¤œą„‹ą¤”ą¤¼ą„‡ą¤‚:" msgid "Add the following DNS record to your domain:" msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤”ą„‹ą¤®ą„‡ą¤Ø ą¤®ą„‡ą¤‚ ą¤Øą¤æą¤®ą„ą¤Øą¤²ą¤æą¤–ą¤æą¤¤ DNS ą¤°ą¤æą¤•ą„‰ą¤°ą„ą¤” ą¤œą„‹ą¤”ą¤¼ą„‡ą¤‚:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ą¤øą„‚ą¤šą¤æą¤Æą„‹ą¤‚ ą¤®ą„‡ą¤‚ ą¤œą„‹ą¤”ą¤¼ą„‡ą¤‚" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "इस ą¤«ą¤¼ą„€ą¤” ą¤•ą„‹ ą¤øą¤¹ą„‡ą¤œą„‡ą¤‚" @@ -202,11 +202,11 @@ msgstr "" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "पसंद ą¤•ą„€ ą¤øą¤‚ą¤–ą„ą¤Æą¤¾ ą¤•ą„‹ ą¤øą¤®ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ ą¤•ą¤°ą„‡ą¤‚ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤•ą„‹ ą¤†ą¤Ŗą¤•ą„‡ ą¤«ą¤¼ą„€ą¤” ą¤®ą„‡ą¤‚ दिखाया जाना ą¤šą¤¾ą¤¹ą¤æą¤ą„¤ą„¤" @@ -214,7 +214,7 @@ msgstr "पसंद ą¤•ą„€ ą¤øą¤‚ą¤–ą„ą¤Æą¤¾ ą¤•ą„‹ ą¤øą¤®ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ msgid "Adult Content" msgstr "ą¤µą¤Æą¤øą„ą¤• ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "" @@ -222,11 +222,15 @@ msgstr "" #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "विकसित" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -285,7 +289,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "" @@ -293,13 +297,13 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "" @@ -315,7 +319,7 @@ msgstr "" msgid "Appeal this decision." msgstr "" -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "ą¤¦ą¤æą¤–ą¤¾ą¤µą¤Ÿ" @@ -327,11 +331,11 @@ msgstr "ą¤•ą„ą¤Æą¤¾ आप ą¤µą¤¾ą¤•ą¤ˆ ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” \"{name}\" msgid "Are you sure you'd like to discard this draft?" msgstr "ą¤•ą„ą¤Æą¤¾ आप ą¤µą¤¾ą¤•ą¤ˆ इस ą¤”ą„ą¤°ą¤¾ą¤«ą„ą¤Ÿ ą¤•ą„‹ हटाना करना ą¤šą¤¾ą¤¹ą„‡ą¤‚ą¤—ą„‡?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ą¤•ą„ą¤Æą¤¾ आप ą¤µą¤¾ą¤øą„ą¤¤ą¤µ ą¤®ą„‡ą¤‚ ą¤‡ą¤øą„‡ करना ą¤šą¤¾ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ą¤•ą„ą¤Æą¤¾ आप ą¤µą¤¾ą¤øą„ą¤¤ą¤µ ą¤®ą„‡ą¤‚ ą¤‡ą¤øą„‡ करना ą¤šą¤¾ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚? ą¤‡ą¤øą„‡ असंपादित ą¤Øą¤¹ą„€ą¤‚ किया जा सकता ą¤¹ą„ˆą„¤" @@ -347,21 +351,21 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "ą¤•ą¤²ą¤¾ą¤¤ą„ą¤®ą¤• या ą¤—ą„ˆą¤°-ą¤•ą¤¾ą¤®ą„ą¤• ą¤Øą¤—ą„ą¤Øą¤¤ą¤¾ą„¤ą„¤" -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "वापस" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "" @@ -370,42 +374,42 @@ msgstr "" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "ą¤®ą„‚ą¤² ą¤¬ą¤¾ą¤¤ą„‡ą¤‚" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "ą¤œą¤Øą„ą¤®ą¤¦ą¤æą¤Ø" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "ą¤œą¤Øą„ą¤®ą¤¦ą¤æą¤Ø:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "खाता ą¤¬ą„ą¤²ą„‰ą¤• ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "खाता ą¤¬ą„ą¤²ą„‰ą¤• ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "खाता ą¤¬ą„ą¤²ą„‰ą¤• ą¤•ą¤°ą„‡ą¤‚?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -418,7 +422,7 @@ msgstr "ą¤¬ą„ą¤²ą„‰ą¤• ą¤•ą¤æą¤ ą¤—ą¤ ą¤–ą¤¾ą¤¤ą„‡" msgid "Blocked Accounts" msgstr "ą¤¬ą„ą¤²ą„‰ą¤• ą¤•ą¤æą¤ ą¤—ą¤ ą¤–ą¤¾ą¤¤ą„‡" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ą¤…ą¤µą¤°ą„ą¤¦ą„ą¤§ ą¤–ą¤¾ą¤¤ą„‡ ą¤†ą¤Ŗą¤•ą„‡ ą¤„ą„ą¤°ą„‡ą¤”ą„ą¤ø ą¤®ą„‡ą¤‚ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ ą¤øą¤•ą¤¤ą„‡, आपका ą¤‰ą¤²ą„ą¤²ą„‡ą¤– ą¤Øą¤¹ą„€ą¤‚ कर ą¤øą¤•ą¤¤ą„‡, या ą¤…ą¤Øą„ą¤Æą¤„ą¤¾ ą¤†ą¤Ŗą¤•ą„‡ साऄ ą¤¬ą¤¾ą¤¤ą¤šą„€ą¤¤ ą¤Øą¤¹ą„€ą¤‚ कर ą¤øą¤•ą¤¤ą„‡ą„¤" @@ -426,22 +430,29 @@ msgstr "ą¤…ą¤µą¤°ą„ą¤¦ą„ą¤§ ą¤–ą¤¾ą¤¤ą„‡ ą¤†ą¤Ŗą¤•ą„‡ ą¤„ą„ą¤°ą„‡ą¤”ą„ą¤ø msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ą¤…ą¤µą¤°ą„ą¤¦ą„ą¤§ ą¤–ą¤¾ą¤¤ą„‡ ą¤†ą¤Ŗą¤•ą„‡ ą¤„ą„ą¤°ą„‡ą¤”ą„ą¤ø ą¤®ą„‡ą¤‚ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ ą¤øą¤•ą¤¤ą„‡, आपका ą¤‰ą¤²ą„ą¤²ą„‡ą¤– ą¤Øą¤¹ą„€ą¤‚ कर ą¤øą¤•ą¤¤ą„‡, या ą¤…ą¤Øą„ą¤Æą¤„ą¤¾ ą¤†ą¤Ŗą¤•ą„‡ साऄ ą¤¬ą¤¾ą¤¤ą¤šą„€ą¤¤ ą¤Øą¤¹ą„€ą¤‚ कर ą¤øą¤•ą¤¤ą„‡ą„¤ आप ą¤‰ą¤Øą¤•ą„€ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ą¤– ą¤Ŗą¤¾ą¤ą¤‚ą¤—ą„‡ और ą¤‰ą¤Øą„ą¤¹ą„‡ą¤‚ ą¤†ą¤Ŗą¤•ą„€ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤¦ą„‡ą¤–ą¤Øą„‡ ą¤øą„‡ ą¤°ą„‹ą¤•ą¤¾ ą¤œą¤¾ą¤ą¤—ą¤¾ą„¤" -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "ą¤¬ą„ą¤²ą„‰ą¤• ą¤Ŗą„‹ą¤øą„ą¤Ÿą„¤" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ą¤…ą¤µą¤°ą„‹ą¤§ą¤Ø ą¤øą¤¾ą¤°ą„ą¤µą¤œą¤Øą¤æą¤• ą¤¹ą„ˆ. ą¤…ą¤µą¤°ą„ą¤¦ą„ą¤§ ą¤–ą¤¾ą¤¤ą„‡ ą¤†ą¤Ŗą¤•ą„‡ ą¤„ą„ą¤°ą„‡ą¤”ą„ą¤ø ą¤®ą„‡ą¤‚ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ ą¤øą¤•ą¤¤ą„‡, आपका ą¤‰ą¤²ą„ą¤²ą„‡ą¤– ą¤Øą¤¹ą„€ą¤‚ कर ą¤øą¤•ą¤¤ą„‡, या ą¤…ą¤Øą„ą¤Æą¤„ą¤¾ ą¤†ą¤Ŗą¤•ą„‡ साऄ ą¤¬ą¤¾ą¤¤ą¤šą„€ą¤¤ ą¤Øą¤¹ą„€ą¤‚ कर ą¤øą¤•ą¤¤ą„‡ą„¤" #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -466,24 +477,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "" #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Build version {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -502,8 +514,8 @@ msgid "by you" msgstr "" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "ą¤•ą„ˆą¤®ą¤°ą¤¾" @@ -511,7 +523,7 @@ msgstr "ą¤•ą„ˆą¤®ą¤°ą¤¾" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "ą¤•ą„‡ą¤µą¤² ą¤…ą¤•ą„ą¤·ą¤°, ą¤øą¤‚ą¤–ą„ą¤Æą¤¾, ą¤°ą¤æą¤•ą„ą¤¤ ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤”ą„ˆą¤¶ और ą¤…ą¤‚ą¤”ą¤°ą¤øą„ą¤•ą„‹ą¤° ą¤¹ą„‹ ą¤øą¤•ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ą„¤ कम ą¤øą„‡ कम 4 ą¤…ą¤•ą„ą¤·ą¤° लंबा ą¤¹ą„‹ą¤Øą¤¾ ą¤šą¤¾ą¤¹ą¤æą¤, ą¤²ą„‡ą¤•ą¤æą¤Ø 32 ą¤…ą¤•ą„ą¤·ą¤°ą„‹ą¤‚ ą¤øą„‡ अधिक लंबा ą¤Øą¤¹ą„€ą¤‚ ą¤¹ą„‹ą¤Øą¤¾ ą¤šą¤¾ą¤¹ą¤æą¤ą„¤ą„¤" -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -571,17 +583,17 @@ msgstr "ą¤–ą„‹ą¤œ मत ą¤•ą¤°ą„‹" msgid "Cancel waitlist signup" msgstr "ą¤Ŗą„ą¤°ą¤¤ą„€ą¤•ą„ą¤·ą¤¾ ą¤øą„‚ą¤šą„€ ą¤Ŗą¤‚ą¤œą„€ą¤•ą¤°ą¤£ मत ą¤•ą¤°ą„‹" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "ą¤¹ą„ˆą¤‚ą¤”ą¤² ą¤¬ą¤¦ą¤²ą„‡ą¤‚" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "ą¤¹ą„ˆą¤‚ą¤”ą¤² ą¤¬ą¤¦ą¤²ą„‡ą¤‚" @@ -589,11 +601,11 @@ msgstr "ą¤¹ą„ˆą¤‚ą¤”ą¤² ą¤¬ą¤¦ą¤²ą„‡ą¤‚" msgid "Change my email" msgstr "ą¤®ą„‡ą¤°ą¤¾ ą¤ˆą¤®ą„‡ą¤² ą¤¬ą¤¦ą¤²ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -601,7 +613,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -609,8 +621,8 @@ msgstr "" msgid "Change Your Email" msgstr "ą¤®ą„‡ą¤°ą¤¾ ą¤ˆą¤®ą„‡ą¤² ą¤¬ą¤¦ą¤²ą„‡ą¤‚" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -630,11 +642,11 @@ msgstr "ą¤Øą„€ą¤šą„‡ ą¤Ŗą„ą¤°ą¤µą„‡ą¤¶ ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ OTP ą¤•ą„‹ msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "ą¤øą„‡ą¤µą¤¾ ą¤šą„ą¤Øą„‡ą¤‚" @@ -655,29 +667,29 @@ msgstr "उन ą¤ą¤²ą„ą¤—ą„‹ą¤°ą¤æą¤¦ą¤® का चयन ą¤•ą¤°ą„‡ą¤‚ ą¤œą„‹ msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "अपना ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤šą„ą¤Øą„‡ą¤‚" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "ą¤–ą„‹ą¤œ ą¤•ą„ą¤µą„‡ą¤°ą„€ साफ़ ą¤•ą¤°ą„‡ą¤‚" @@ -695,7 +707,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -747,7 +760,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ą¤øą¤®ą„ą¤¦ą¤¾ą¤Æ ą¤¦ą¤æą¤¶ą¤¾ą¤Øą¤æą¤°ą„ą¤¦ą„‡ą¤¶" @@ -756,6 +769,10 @@ msgstr "ą¤øą¤®ą„ą¤¦ą¤¾ą¤Æ ą¤¦ą¤æą¤¶ą¤¾ą¤Øą¤æą¤°ą„ą¤¦ą„‡ą¤¶" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -768,12 +785,12 @@ msgstr "जवाब ą¤²ą¤æą¤–ą„‹" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ą¤¹ą„‹ गया" @@ -797,7 +814,7 @@ msgstr "ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ भाषा ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø ą¤•ą„€ प msgid "Confirm delete account" msgstr "ą¤–ą¤¾ą¤¤ą„‡ ą¤•ą„‹ हटा ą¤¦ą„‡ą¤‚" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "" @@ -811,12 +828,12 @@ msgstr "OTP ą¤•ą„‹ą¤”" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ą¤•ą¤Øą„‡ą¤•ą„ą¤Ÿą¤æą¤‚ą¤— ..ą„¤" -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -846,11 +863,11 @@ msgstr "ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤šą„‡ą¤¤ą¤¾ą¤µą¤Øą„€" msgid "Content warnings" msgstr "ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤šą„‡ą¤¤ą¤¾ą¤µą¤Øą„€" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -859,15 +876,15 @@ msgstr "ą¤†ą¤—ą„‡ ą¤¬ą¤¢ą¤¼ą„‡ą¤‚" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -880,13 +897,13 @@ msgstr "" msgid "Copied" msgstr "ą¤•ą„‰ą¤Ŗą„€ कर ą¤²ą„€" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -898,28 +915,28 @@ msgstr "" msgid "Copy" msgstr "ą¤•ą„‰ą¤Ŗą„€" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤Ÿą„‡ą¤•ą„ą¤øą„ą¤Ÿ ą¤•ą„‰ą¤Ŗą„€ ą¤•ą¤°ą„‡ą¤‚" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "ą¤•ą„‰ą¤Ŗą„€ą¤°ą¤¾ą¤‡ą¤Ÿ ą¤Øą„€ą¤¤ą¤æ" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ą¤«ą¤¼ą„€ą¤” ą¤²ą„‹ą¤” ą¤Øą¤¹ą„€ą¤‚ कर सकता" @@ -928,20 +945,20 @@ msgid "Could not load list" msgstr "ą¤øą„‚ą¤šą„€ ą¤²ą„‹ą¤” ą¤Øą¤¹ą„€ą¤‚ कर सकता" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "नया खाता ą¤¬ą¤Øą¤¾ą¤ą¤‚" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "खाता ą¤¬ą¤Øą¤¾ą¤ą¤" @@ -950,7 +967,7 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "नया खाता ą¤¬ą¤Øą¤¾ą¤ą¤‚" @@ -974,12 +991,17 @@ msgstr "" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "ą¤•ą¤øą„ą¤Ÿą¤® ą¤”ą„‹ą¤®ą„‡ą¤Ø" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -991,8 +1013,8 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "खतरा ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "ą¤”ą¤¾ą¤°ą„ą¤• ą¤®ą„‹ą¤”" @@ -1000,7 +1022,7 @@ msgstr "ą¤”ą¤¾ą¤°ą„ą¤• ą¤®ą„‹ą¤”" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1008,7 +1030,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "खाता ą¤¹ą¤Ÿą¤¾ą¤ą¤‚" @@ -1021,8 +1043,8 @@ msgstr "खाता ą¤¹ą¤Ÿą¤¾ą¤ą¤‚" msgid "Delete app password" msgstr "ą¤…ą¤Ŗą„ą¤Ŗ ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤¹ą¤Ÿą¤¾ą¤ą¤‚" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "ą¤øą„‚ą¤šą„€ ą¤¹ą¤Ÿą¤¾ą¤ą¤" @@ -1034,23 +1056,23 @@ msgstr "ą¤®ą„‡ą¤°ą¤¾ खाता ą¤¹ą¤Ÿą¤¾ą¤ą¤‚" #~ msgid "Delete my account…" #~ msgstr "ą¤®ą„‡ą¤°ą¤¾ खाता ą¤¹ą¤Ÿą¤¾ą¤ą¤‚ā€¦" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤•ą„‹ ą¤¹ą¤Ÿą¤¾ą¤ą¤‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "इस ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤•ą„‹ ą¤”ą„€ą¤²ą„€ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "यह ą¤Ŗą„‹ą¤øą„ą¤Ÿ मिटाई जा ą¤šą„ą¤•ą„€ ą¤¹ą„ˆ" @@ -1062,14 +1084,14 @@ msgid "Description" msgstr "विवरण" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "ą¤”ą„‡ą¤µą¤²ą¤Ŗą¤° उपकरण" +#~ msgid "Developer Tools" +#~ msgstr "ą¤”ą„‡ą¤µą¤²ą¤Ŗą¤° उपकरण" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1090,9 +1112,13 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "ą¤Øą¤ ą¤«ą¤¼ą„€ą¤” ą¤•ą„€ ą¤–ą„‹ą¤œ ą¤•ą¤°ą„‡ą¤‚" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "ą¤Øą¤ ą¤«ą¤¼ą„€ą¤” ą¤•ą„€ ą¤–ą„‹ą¤œ ą¤•ą¤°ą„‡ą¤‚" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1106,7 +1132,7 @@ msgstr "ą¤Ŗą„ą¤°ą¤¦ą¤°ą„ą¤¶ą¤Ø का नाम" msgid "Domain verified!" msgstr "ą¤”ą„‹ą¤®ą„‡ą¤Ø ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "" @@ -1123,6 +1149,8 @@ msgctxt "action" msgid "Done" msgstr "" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1131,7 +1159,9 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "ą¤–ą¤¤ą„ą¤®" @@ -1143,7 +1173,16 @@ msgstr "ą¤–ą¤¤ą„ą¤® {extraText}" msgid "Double tap to sign in" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1189,7 +1228,7 @@ msgstr "" msgid "Edit image" msgstr "छवि संपादित ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "ą¤øą„‚ą¤šą„€ विवरण संपादित ą¤•ą¤°ą„‡ą¤‚" @@ -1197,8 +1236,8 @@ msgstr "ą¤øą„‚ą¤šą„€ विवरण संपादित ą¤•ą¤°ą„‡ą¤‚" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤«ą¤¼ą„€ą¤” संपादित ą¤•ą¤°ą„‡ą¤‚" @@ -1207,15 +1246,15 @@ msgstr "ą¤®ą„‡ą¤°ą„€ ą¤«ą¤¼ą„€ą¤” संपादित ą¤•ą¤°ą„‡ą¤‚" msgid "Edit my profile" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤² संपादित ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤² संपादित ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤² संपादित ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "ą¤ą¤”ą¤æą¤Ÿ ą¤øą„‡ą¤µą„ą¤” ą¤«ą„€ą¤”" @@ -1235,17 +1274,15 @@ msgstr "" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "ą¤ˆą¤®ą„‡ą¤²" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "ą¤ˆą¤®ą„‡ą¤²" @@ -1262,7 +1299,7 @@ msgstr "ą¤ˆą¤®ą„‡ą¤² ą¤…ą¤Ŗą¤”ą„‡ą¤Ÿ किया गया" msgid "Email verified" msgstr "" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "ą¤ˆą¤®ą„‡ą¤²:" @@ -1270,7 +1307,7 @@ msgstr "ą¤ˆą¤®ą„‡ą¤²:" msgid "Enable {0} only" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "" @@ -1287,11 +1324,11 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ ą¤•ą„‡ą¤µą¤² उन ą¤²ą„‹ą¤—ą„‹ą¤‚ ą¤•ą„‡ ą¤¬ą„€ą¤š जवाब ą¤¦ą„‡ą¤–ą¤Øą„‡ ą¤®ą„‡ą¤‚ ą¤øą¤•ą„ą¤·ą¤® ą¤•ą¤°ą„‡ą¤‚ ą¤œą¤æą¤Øą„ą¤¹ą„‡ą¤‚ आप ą¤«ą„‰ą¤²ą„‹ ą¤•ą¤°ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ą„¤ą„¤" -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "" @@ -1311,11 +1348,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "आप जिस ą¤”ą„‹ą¤®ą„‡ą¤Ø का ą¤‰ą¤Ŗą¤Æą„‹ą¤— करना ą¤šą¤¾ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ ą¤‰ą¤øą„‡ ą¤¦ą¤°ą„ą¤œ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "वह ą¤ˆą¤®ą„‡ą¤² ą¤¦ą¤°ą„ą¤œ ą¤•ą¤°ą„‡ą¤‚ ą¤œą¤æą¤øą¤•ą¤¾ ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤†ą¤Ŗą¤Øą„‡ अपना खाता ą¤¬ą¤Øą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ किया ą¤„ą¤¾ą„¤ हम ą¤†ą¤Ŗą¤•ą„‹ ą¤ą¤• \"reset code\" ą¤­ą„‡ą¤œą„‡ą¤‚ą¤—ą„‡ ताकि आप ą¤ą¤• नया ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤øą„‡ą¤Ÿ कर ą¤øą¤•ą„‡ą¤‚ą„¤" -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "" @@ -1324,7 +1361,7 @@ msgstr "" msgid "Enter your email" msgstr "" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "अपना ą¤ˆą¤®ą„‡ą¤² पता ą¤¦ą¤°ą„ą¤œ ą¤•ą¤°ą„‡ą¤‚" @@ -1337,13 +1374,17 @@ msgid "Enter your new email address below." msgstr "ą¤Øą„€ą¤šą„‡ अपना नया ą¤ˆą¤®ą„‡ą¤² पता ą¤¦ą¤°ą„ą¤œ ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤Æą„‚ą¤œą¤¼ą¤°ą¤Øą„‡ą¤® और ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤¦ą¤°ą„ą¤œ ą¤•ą¤°ą„‡ą¤‚" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "" @@ -1378,6 +1419,15 @@ msgstr "ą¤‘ą¤²ą„ą¤Ÿ ą¤Ÿą„‡ą¤•ą„ą¤øą„ą¤Ÿ" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "" @@ -1387,13 +1437,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "" @@ -1406,7 +1456,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1415,15 +1465,15 @@ msgstr "" msgid "Failed to load recommended feeds" msgstr "ą¤…ą¤Øą„ą¤¶ą¤‚ą¤øą¤æą¤¤ ą¤«ą¤¼ą„€ą¤” ą¤²ą„‹ą¤” ą¤•ą¤°ą¤Øą„‡ ą¤®ą„‡ą¤‚ विफल" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "ą¤«ą¤¼ą„€ą¤” ऑफ़लाइन ą¤¹ą„ˆ" @@ -1431,18 +1481,19 @@ msgstr "ą¤«ą¤¼ą„€ą¤” ऑफ़लाइन ą¤¹ą„ˆ" msgid "Feed Preferences" msgstr "ą¤«ą¤¼ą„€ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "ą¤Ŗą„ą¤°ą¤¤ą¤æą¤•ą„ą¤°ą¤æą¤Æą¤¾" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "ą¤øą¤­ą„€ ą¤«ą¤¼ą„€ą¤”" @@ -1462,7 +1513,7 @@ msgstr "ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤•ą„‹ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤æą¤¤ ą¤•ą¤°ą¤Øą„‡ msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ą¤«ą¤¼ą„€ą¤” ą¤•ą¤øą„ą¤Ÿą¤® ą¤ą¤²ą„ą¤—ą„‹ą¤°ą¤æą¤¦ą¤® ą¤¹ą„ˆą¤‚ ą¤œą¤æą¤Øą„ą¤¹ą„‡ą¤‚ ą¤‰ą¤Ŗą¤Æą„‹ą¤—ą¤•ą¤°ą„ą¤¤ą¤¾ ą¤„ą„‹ą¤”ą¤¼ą„€ ą¤•ą„‹ą¤”ą¤æą¤‚ą¤— ą¤µą¤æą¤¶ą„‡ą¤·ą¤œą„ą¤žą¤¤ą¤¾ ą¤•ą„‡ साऄ ą¤¬ą¤Øą¤¾ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ą„¤ <0/> अधिक ą¤œą¤¾ą¤Øą¤•ą¤¾ą¤°ą„€ ą¤•ą„‡ ą¤²ą¤æą¤." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1488,9 +1539,13 @@ msgstr "" msgid "Finding similar accounts..." msgstr "ą¤®ą¤æą¤²ą¤¤ą„‡-ą¤œą„ą¤²ą¤¤ą„‡ ą¤–ą¤¾ą¤¤ą„‡ ą¤¢ą„‚ą¤ą¤¢ą¤Øą¤¾" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤®ą„ą¤–ą„ą¤Æ ą¤«ą¤¼ą„€ą¤” ą¤•ą„€ ą¤øą„ą¤•ą„ą¤°ą„€ą¤Ø पर ą¤¦ą¤æą¤–ą¤¾ą¤ˆ ą¤¦ą„‡ą¤Øą„‡ ą¤µą¤¾ą¤²ą„€ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤•ą„‹ ą¤ ą„€ą¤• ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤®ą„ą¤–ą„ą¤Æ ą¤«ą¤¼ą„€ą¤” ą¤•ą„€ ą¤øą„ą¤•ą„ą¤°ą„€ą¤Ø पर ą¤¦ą¤æą¤–ą¤¾ą¤ˆ ą¤¦ą„‡ą¤Øą„‡ ą¤µą¤¾ą¤²ą„€ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤•ą„‹ ą¤ ą„€ą¤• ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1513,21 +1568,24 @@ msgstr "" msgid "Flip vertically" msgstr "" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "ą¤«ą„‰ą¤²ą„‹" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "ą¤«ą„‰ą¤²ą„‹" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1547,7 +1605,7 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "ą¤•ą„‡ą¤µą¤² ą¤µą„‡ ą¤Æą„‚ą¤œą¤° ą¤•ą„‹ ą¤«ą¤¼ą„‰ą¤²ą„‹ किया गया" @@ -1559,16 +1617,24 @@ msgstr "" msgid "Followers" msgstr "यह ą¤Æą„‚ą¤œą¤° आपका ą¤«ą¤¼ą„‹ą¤²ą„‹ करता ą¤¹ą„ˆ" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ą¤«ą„‹ą¤²ą„ą¤²ą„‹ą¤µą¤æą¤‚ą¤—" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "यह ą¤Æą„‚ą¤œą¤° आपका ą¤«ą¤¼ą„‹ą¤²ą„‹ करता ą¤¹ą„ˆ" @@ -1588,11 +1654,11 @@ msgstr "ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą¤¾ą¤°ą¤£ą„‹ą¤‚ ą¤•ą„‡ ą¤²ą¤æą¤, ą¤¹ą¤®ą„‡ą¤‚ msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą¤¾ą¤°ą¤£ą„‹ą¤‚ ą¤•ą„‡ ą¤²ą¤æą¤, आप ą¤‡ą¤øą„‡ फिर ą¤øą„‡ ą¤¦ą„‡ą¤–ą¤Øą„‡ ą¤®ą„‡ą¤‚ ą¤øą¤•ą„ą¤·ą¤® ą¤Øą¤¹ą„€ą¤‚ ą¤¹ą„‹ą¤‚ą¤—ą„‡ą„¤ यदि आप इस ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤•ą„‹ ą¤–ą„‹ ą¤¦ą„‡ą¤¤ą„‡ ą¤¹ą„ˆą¤‚, ą¤¤ą„‹ ą¤†ą¤Ŗą¤•ą„‹ ą¤ą¤• नया ą¤‰ą¤¤ą„ą¤Ŗą¤Øą„ą¤Ø करना ą¤¹ą„‹ą¤—ą¤¾ą„¤ą„¤" -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "ą¤­ą„‚ą¤²" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤­ą„‚ą¤² ą¤—ą¤" @@ -1601,7 +1667,7 @@ msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤­ą„‚ą¤² ą¤—ą¤" msgid "Forgot Password" msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤­ą„‚ą¤² ą¤—ą¤" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1622,8 +1688,8 @@ msgstr "ą¤Ŗą„ą¤°ą¤¾ą¤°ą¤‚ą¤­ ą¤•ą¤°ą„‡ą¤‚" msgid "Go back" msgstr "वापस ą¤œą¤¾ą¤“" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1639,9 +1705,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1651,12 +1717,12 @@ msgstr "अगला" msgid "Handle" msgstr "ą¤¹ą„ˆą¤‚ą¤”ą¤²" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "सहायता" @@ -1664,11 +1730,11 @@ msgstr "सहायता" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1677,19 +1743,19 @@ msgid "Here is your app password." msgstr "यहां आपका ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤¹ą„ˆ." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "ą¤‡ą¤øą„‡ ą¤›ą¤æą¤Ŗą¤¾ą¤ą¤‚" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "" @@ -1698,7 +1764,7 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "" @@ -1706,7 +1772,7 @@ msgstr "" msgid "Hide user list" msgstr "ą¤‰ą¤Ŗą¤Æą„‹ą¤—ą¤•ą¤°ą„ą¤¤ą¤¾ ą¤øą„‚ą¤šą„€ ą¤›ą„ą¤Ŗą¤¾ą¤ą¤" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1730,22 +1796,23 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "ą¤¹ą„‹ą¤® ą¤«ą„€ą¤”" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "ą¤¹ą„‹ą¤® ą¤«ą¤¼ą„€ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾ą¤ą¤‚" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "ą¤¹ą„‹ą¤® ą¤«ą¤¼ą„€ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾ą¤ą¤‚" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "ą¤¹ą„‹ą¤øą„ą¤Ÿą¤æą¤‚ą¤— ą¤Ŗą„ą¤°ą¤¦ą¤¾ą¤¤ą¤¾" @@ -1785,8 +1852,8 @@ msgstr "" msgid "Image alt text" msgstr "छवि alt पाठ" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "छवि ą¤µą¤æą¤•ą¤²ą„ą¤Ŗ" @@ -1798,11 +1865,11 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "" @@ -1819,56 +1886,55 @@ msgid "Input password for account deletion" msgstr "" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "ą¤…ą¤µą„ˆą¤§ ą¤‰ą¤Ŗą¤Æą„‹ą¤—ą¤•ą¤°ą„ą¤¤ą¤¾ नाम या ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "ą¤†ą¤®ą¤‚ą¤¤ą„ą¤°ą¤£ ą¤­ą„‡ą¤œą„‹" +#~ msgid "Invite" +#~ msgstr "ą¤†ą¤®ą¤‚ą¤¤ą„ą¤°ą¤£ ą¤­ą„‡ą¤œą„‹" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "ą¤ą¤• ą¤¦ą„‹ą¤øą„ą¤¤ ą¤•ą„‹ ą¤†ą¤®ą¤‚ą¤¤ą„ą¤°ą¤æą¤¤ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "ą¤†ą¤®ą¤‚ą¤¤ą„ą¤°ą¤£ ą¤•ą„‹ą¤”" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -1877,8 +1943,8 @@ msgid "Invite codes: {0} available" msgstr "" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1889,6 +1955,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "" @@ -1896,8 +1963,8 @@ msgstr "" msgid "Join the waitlist" msgstr "ą¤Ŗą„ą¤°ą¤¤ą„€ą¤•ą„ą¤·ą¤¾ ą¤øą„‚ą¤šą„€ ą¤®ą„‡ą¤‚ शामिल ą¤¹ą„‹ą¤‚" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "ą¤Ŗą„ą¤°ą¤¤ą„€ą¤•ą„ą¤·ą¤¾ ą¤øą„‚ą¤šą„€ ą¤®ą„‡ą¤‚ शामिल ą¤¹ą„‹ą¤‚ą„¤ą„¤" @@ -1913,7 +1980,7 @@ msgstr "" msgid "Language selection" msgstr "ą¤…ą¤Ŗą¤Øą„€ भाषा ą¤šą„ą¤Øą„‡" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "" @@ -1922,7 +1989,7 @@ msgstr "" msgid "Language Settings" msgstr "भाषा ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "भाषा" @@ -1960,11 +2027,11 @@ msgstr "ą¤‰ą¤Øą„ą¤¹ą„‡ą¤‚ ą¤•ą¤æą¤øą„€ ą¤­ą„€ भाषा ą¤•ą„‹ ą¤¦ą„‡ą¤–ą¤Ø msgid "Leaving Bluesky" msgstr "ą¤²ą„€ą¤µą¤æą¤‚ą¤— Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -1977,16 +2044,17 @@ msgstr "ą¤šą¤²ą„‹ अपना ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤°ą„€ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "ą¤šą¤æą¤¤ą„ą¤° ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "ą¤²ą¤¾ą¤‡ą¤Ÿ ą¤®ą„‹ą¤”" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "" @@ -1994,7 +2062,7 @@ msgstr "" msgid "Like this feed" msgstr "इस ą¤«ą¤¼ą„€ą¤” ą¤•ą„‹ लाइक ą¤•ą¤°ą„‹" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "इन ą¤Æą„‚ą¤œą¤° ą¤Øą„‡ लाइक किया ą¤¹ą„ˆ" @@ -2003,7 +2071,7 @@ msgstr "इन ą¤Æą„‚ą¤œą¤° ą¤Øą„‡ लाइक किया ą¤¹ą„ˆ" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2019,15 +2087,15 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "" @@ -2035,19 +2103,19 @@ msgstr "" msgid "List Avatar" msgstr "ą¤øą„‚ą¤šą„€ अवतार" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2055,35 +2123,35 @@ msgstr "" msgid "List Name" msgstr "ą¤øą„‚ą¤šą„€ का नाम" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "ą¤øą„‚ą¤šą„€" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "अधिक ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤²ą„‹ą¤” ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "नई ą¤øą„‚ą¤šą¤Øą¤¾ą¤ą¤‚ ą¤²ą„‹ą¤” ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "नई ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤²ą„‹ą¤” ą¤•ą¤°ą„‡ą¤‚" @@ -2092,17 +2160,17 @@ msgid "Loading..." msgstr "" #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "ą¤øą„ą¤„ą¤¾ą¤Øą„€ą¤Æ ą¤¦ą„‡ą¤µ ą¤øą¤°ą„ą¤µą¤°" +#~ msgid "Local dev server" +#~ msgstr "ą¤øą„ą¤„ą¤¾ą¤Øą„€ą¤Æ ą¤¦ą„‡ą¤µ ą¤øą¤°ą„ą¤µą¤°" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2118,7 +2186,15 @@ msgstr "उस ą¤–ą¤¾ą¤¤ą„‡ ą¤®ą„‡ą¤‚ ą¤²ą„‰ą¤— इन ą¤•ą¤°ą„‡ą¤‚ ą¤œą„‹ स msgid "Make sure this is where you intend to go!" msgstr "यह ą¤øą„ą¤Øą¤æą¤¶ą„ą¤šą¤æą¤¤ ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ कि आप कहाँ जाना ą¤šą¤¾ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "" @@ -2141,14 +2217,14 @@ msgstr "" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "ą¤®ą„‰ą¤”ą¤°ą„‡ą¤¶ą¤Ø" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2157,7 +2233,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2180,7 +2256,7 @@ msgstr "ą¤®ą„‰ą¤”ą¤°ą„‡ą¤¶ą¤Ø ą¤øą„‚ą¤šą¤æą¤Æą¤¾ą¤" msgid "Moderation Lists" msgstr "" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "" @@ -2188,17 +2264,17 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "अधिक ą¤«ą¤¼ą„€ą¤”" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "अधिक ą¤µą¤æą¤•ą¤²ą„ą¤Ŗ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤µą¤æą¤•ą¤²ą„ą¤Ŗ" @@ -2206,31 +2282,35 @@ msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤µą¤æą¤•ą¤²ą„ą¤Ŗ" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "खाता ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "ą¤–ą¤¾ą¤¤ą„‹ą¤‚ ą¤•ą„‹ ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "इन ą¤–ą¤¾ą¤¤ą„‹ą¤‚ ą¤•ą„‹ ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ą¤„ą„ą¤°ą„‡ą¤” ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2247,7 +2327,7 @@ msgstr "ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤æą¤ ą¤—ą¤ ą¤–ą¤¾ą¤¤ą„‡" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤æą¤ ą¤—ą¤ ą¤–ą¤¾ą¤¤ą„‹ą¤‚ ą¤•ą„€ ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤†ą¤Ŗą¤•ą„‡ ą¤«ą¤¼ą„€ą¤” और ą¤†ą¤Ŗą¤•ą„€ ą¤øą„‚ą¤šą¤Øą¤¾ą¤“ą¤‚ ą¤øą„‡ हटा ą¤¦ą„€ ą¤œą¤¾ą¤¤ą„€ ą¤¹ą„ˆą¤‚ą„¤ ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤Ŗą„‚ą¤°ą„€ तरह ą¤øą„‡ ą¤Øą¤æą¤œą„€ ą¤¹ą„ˆą¤‚." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ą¤®ą„ą¤Æą„‚ą¤Ÿ करना ą¤Øą¤æą¤œą„€ ą¤¹ą„ˆ. ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤æą¤ ą¤—ą¤ ą¤–ą¤¾ą¤¤ą„‡ ą¤†ą¤Ŗą¤•ą„‡ साऄ ą¤‡ą¤‚ą¤Ÿą¤°ą„ˆą¤•ą„ą¤Ÿ कर ą¤øą¤•ą¤¤ą„‡ ą¤¹ą„ˆą¤‚, ą¤²ą„‡ą¤•ą¤æą¤Ø आप ą¤‰ą¤Øą¤•ą„€ ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ą¤–ą„‡ą¤‚ą¤—ą„‡ या ą¤‰ą¤Øą¤øą„‡ ą¤øą„‚ą¤šą¤Øą¤¾ą¤ą¤‚ ą¤Ŗą„ą¤°ą¤¾ą¤Ŗą„ą¤¤ ą¤Øą¤¹ą„€ą¤‚ ą¤•ą¤°ą„‡ą¤‚ą¤—ą„‡ą„¤" @@ -2255,7 +2335,7 @@ msgstr "ą¤®ą„ą¤Æą„‚ą¤Ÿ करना ą¤Øą¤æą¤œą„€ ą¤¹ą„ˆ. ą¤®ą„ą¤Æą„‚ą¤Ÿ कि msgid "My Birthday" msgstr "ą¤œą¤Øą„ą¤®ą¤¦ą¤æą¤Ø" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤«ą¤¼ą„€ą¤”" @@ -2263,10 +2343,14 @@ msgstr "ą¤®ą„‡ą¤°ą„€ ą¤«ą¤¼ą„€ą¤”" msgid "My Profile" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¾ą¤‡ą¤²" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤«ą¤¼ą„€ą¤”" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2280,15 +2364,15 @@ msgstr "" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "" @@ -2327,16 +2411,17 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "नई ą¤Ŗą„‹ą¤øą„ą¤Ÿ" @@ -2358,10 +2443,10 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2379,10 +2464,10 @@ msgstr "" msgid "Next image" msgstr "ą¤…ą¤—ą¤²ą„€ ą¤«ą„‹ą¤Ÿą„‹" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2393,7 +2478,7 @@ msgstr "ą¤Øą¤¹ą„€ą¤‚" msgid "No description" msgstr "ą¤•ą„‹ą¤ˆ विवरण ą¤Øą¤¹ą„€ą¤‚" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2406,7 +2491,7 @@ msgstr "" msgid "No result" msgstr "" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "\"{query}\" ą¤•ą„‡ ą¤²ą¤æą¤ ą¤•ą„‹ą¤ˆ परिणाम ą¤Øą¤¹ą„€ą¤‚ मिला" @@ -2429,6 +2514,7 @@ msgid "Not Applicable." msgstr "ą¤²ą¤¾ą¤—ą„‚ ą¤Øą¤¹ą„€ą¤‚ą„¤" #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "" @@ -2441,13 +2527,13 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "ą¤øą„‚ą¤šą¤Øą¤¾ą¤ą¤‚" @@ -2471,7 +2557,7 @@ msgstr "ą¤ ą„€ą¤• ą¤¹ą„ˆ" msgid "Oldest replies first" msgstr "" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "" @@ -2483,9 +2569,8 @@ msgstr "ą¤ą¤• या अधिक छवियाँ alt पाठ याद msgid "Only {0} can reply." msgstr "" -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "" @@ -2498,15 +2583,15 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ओपन ą¤Øą„‡ą¤µą¤æą¤—ą„‡ą¤¶ą¤Ø" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "" @@ -2530,7 +2615,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "भाषा ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø ą¤–ą„‹ą¤²ą„‡ą¤‚" @@ -2538,33 +2623,31 @@ msgstr "भाषा ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø ą¤–ą„‹ą¤²ą„‡ą¤‚" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "" +#~ msgid "Opens invite code list" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "" @@ -2572,39 +2655,39 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "ą¤•ą¤øą„ą¤Ÿą¤® ą¤”ą„‹ą¤®ą„‡ą¤Ø का ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤®ą„‹ą¤”ą¤² ą¤–ą„‹ą¤²ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "ą¤®ą„‰ą¤”ą¤°ą„‡ą¤¶ą¤Ø ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø ą¤–ą„‹ą¤²ą„‡ą¤‚" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "ą¤øą¤­ą„€ बचाया ą¤«ą¤¼ą„€ą¤” ą¤•ą„‡ साऄ ą¤øą„ą¤•ą„ą¤°ą„€ą¤Ø ą¤–ą„‹ą¤²ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤Ŗą„‡ą¤œ ą¤–ą„‹ą¤²ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "ą¤¹ą„‹ą¤® ą¤«ą„€ą¤” ą¤µą¤°ą„€ą¤Æą¤¤ą¤¾ą¤“ą¤‚ ą¤•ą„‹ ą¤–ą„‹ą¤²ą¤¤ą¤¾ ą¤¹ą„ˆ" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "ą¤øą„ą¤Ÿą„‹ą¤°ą„€ą¤¬ą„ą¤• ą¤Ŗą„‡ą¤œ ą¤–ą„‹ą¤²ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "ą¤øą¤æą¤øą„ą¤Ÿą¤® ą¤²ą„‰ą¤— ą¤Ŗą„‡ą¤œ ą¤–ą„‹ą¤²ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "ą¤§ą¤¾ą¤—ą„‡ ą¤µą¤°ą„€ą¤Æą¤¤ą¤¾ą¤“ą¤‚ ą¤•ą„‹ ą¤–ą„‹ą¤²ą¤¤ą¤¾ ą¤¹ą„ˆ" @@ -2625,8 +2708,8 @@ msgid "Other account" msgstr "ą¤…ą¤Øą„ą¤Æ खाता" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "ą¤…ą¤Øą„ą¤Æ ą¤øą„‡ą¤µą¤¾" +#~ msgid "Other service" +#~ msgstr "ą¤…ą¤Øą„ą¤Æ ą¤øą„‡ą¤µą¤¾" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2640,9 +2723,9 @@ msgstr "ą¤Ŗą„ƒą¤·ą„ą¤  ą¤Øą¤¹ą„€ą¤‚ मिला" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2656,11 +2739,11 @@ msgstr "" msgid "Password updated!" msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤…ą¤¦ą„ą¤Æą¤¤ą¤Ø!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "" @@ -2677,15 +2760,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "ą¤šą¤æą¤¤ą„ą¤° ą¤µą¤Æą¤øą„ą¤•ą„‹ą¤‚ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤„ą„‡ą„¤ą„¤" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2706,14 +2789,18 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "" -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "" +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ą¤‡ą¤øą„‡ ą¤¬ą¤¦ą¤²ą¤Øą„‡ ą¤øą„‡ ą¤Ŗą¤¹ą¤²ą„‡ ą¤•ą„ƒą¤Ŗą¤Æą¤¾ ą¤…ą¤Ŗą¤Øą„‡ ą¤ˆą¤®ą„‡ą¤² ą¤•ą„€ ą¤Ŗą„ą¤·ą„ą¤Ÿą¤æ ą¤•ą¤°ą„‡ą¤‚ą„¤ यह ą¤ą¤• ą¤…ą¤øą„ą¤„ą¤¾ą¤Æą„€ ą¤†ą¤µą¤¶ą„ą¤Æą¤•ą¤¤ą¤¾ ą¤¹ą„ˆ ą¤œą¤¬ą¤•ą¤æ ą¤ˆą¤®ą„‡ą¤²-ą¤…ą¤Ŗą¤”ą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤Ÿą„‚ą¤² ą¤œą„‹ą¤”ą¤¼ą¤¾ जाता ą¤¹ą„ˆ, और ą¤‡ą¤øą„‡ ą¤œą¤²ą„ą¤¦ ą¤¹ą„€ हटा दिया ą¤œą¤¾ą¤ą¤—ą¤¾ą„¤ą„¤" @@ -2723,22 +2810,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "ą¤•ą„ƒą¤Ŗą¤Æą¤¾ इस ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤•ą„‡ ą¤²ą¤æą¤ ą¤ą¤• ą¤…ą¤¦ą„ą¤µą¤æą¤¤ą„€ą¤Æ नाम ą¤¦ą¤°ą„ą¤œ ą¤•ą¤°ą„‡ą¤‚ या ą¤¹ą¤®ą¤¾ą¤°ą„‡ ą¤Æą¤¾ą¤¦ą„ƒą¤šą„ą¤›ą¤æą¤• ą¤°ą„‚ą¤Ŗ ą¤øą„‡ ą¤‰ą¤¤ą„ą¤Ŗą¤Øą„ą¤Ø ą¤ą¤• का ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "" @@ -2773,26 +2860,26 @@ msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "ą¤›ą„ą¤Ŗą¤¾ ą¤Ŗą„‹ą¤øą„ą¤Ÿ" @@ -2804,11 +2891,11 @@ msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ भाषा" msgid "Post Languages" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ भाषा" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤Øą¤¹ą„€ą¤‚ मिला" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "" @@ -2832,27 +2919,27 @@ msgstr "ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤• भाषा" msgid "Prioritize Your Follows" msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤«ą¤¼ą„‰ą¤²ą„‹ą¤…ą¤°ą„ą¤ø ą¤•ą„‹ ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾ ą¤¦ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "ą¤—ą„‹ą¤Ŗą¤Øą„€ą¤Æą¤¤ą¤¾" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "ą¤—ą„‹ą¤Ŗą¤Øą„€ą¤Æą¤¤ą¤¾ ą¤Øą„€ą¤¤ą¤æ" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "ą¤Ŗą„ą¤°ą¤øą¤‚ą¤øą„ą¤•ą¤°ą¤£..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤²" @@ -2860,7 +2947,7 @@ msgstr "ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤²" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤ˆą¤®ą„‡ą¤² ą¤•ą„‹ ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤ ą¤•ą¤°ą¤•ą„‡ ą¤…ą¤Ŗą¤Øą„‡ ą¤–ą¤¾ą¤¤ą„‡ ą¤•ą„‹ ą¤øą„ą¤°ą¤•ą„ą¤·ą¤æą¤¤ ą¤°ą¤–ą„‡ą¤‚ą„¤ą„¤" @@ -2917,12 +3004,12 @@ msgstr "ą¤…ą¤Øą„ą¤¶ą¤‚ą¤øą¤æą¤¤ ą¤²ą„‹ą¤—" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "ą¤Øą¤æą¤•ą¤¾ą¤²ą„‡ą¤‚" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ą¤®ą„‡ą¤°ą„‡ ą¤«ą¤¼ą„€ą¤” ą¤øą„‡ {0} ą¤¹ą¤Ÿą¤¾ą¤ą¤‚?" @@ -2935,11 +3022,11 @@ msgstr "खाता ą¤¹ą¤Ÿą¤¾ą¤ą¤‚" msgid "Remove feed" msgstr "ą¤«ą¤¼ą„€ą¤” ą¤¹ą¤Ÿą¤¾ą¤ą¤" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ą¤®ą„‡ą¤°ą„‡ ą¤«ą¤¼ą„€ą¤” ą¤øą„‡ ą¤¹ą¤Ÿą¤¾ą¤ą¤" @@ -2955,7 +3042,7 @@ msgstr "छवि ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤µą¤²ą„‹ą¤•ą¤Ø ą¤Øą¤æą¤•ą¤¾ą¤²ą„‡ą¤‚" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "" @@ -2968,8 +3055,8 @@ msgstr "इस ą¤«ą¤¼ą„€ą¤” ą¤•ą„‹ ą¤øą¤¹ą„‡ą¤œą„‡ ą¤—ą¤ ą¤«ą¤¼ą„€ą¤” ą¤øą„‡ msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -2977,7 +3064,7 @@ msgstr "" msgid "Removes default thumbnail from {0}" msgstr "" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "" @@ -2990,12 +3077,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "ą¤«ą¤æą¤²ą„ą¤Ÿą¤°" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3004,20 +3091,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "ą¤°ą¤æą¤Ŗą„‹ą¤°ą„ą¤Ÿ {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ą¤°ą¤æą¤Ŗą„‹ą¤°ą„ą¤Ÿ" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ą¤°ą¤æą¤Ŗą„‹ą¤°ą„ą¤Ÿ ą¤«ą¤¼ą„€ą¤”" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "ą¤°ą¤æą¤Ŗą„‹ą¤°ą„ą¤Ÿ ą¤øą„‚ą¤šą„€" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ą¤°ą¤æą¤Ŗą„‹ą¤°ą„ą¤Ÿ ą¤Ŗą„‹ą¤øą„ą¤Ÿ" @@ -3042,11 +3129,11 @@ msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤¦ą„‹ą¤¬ą¤¾ą¤°ą¤¾ ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚ या msgid "Reposted By" msgstr "ą¤¦ą„ą¤µą¤¾ą¤°ą¤¾ ą¤¦ą„‹ą¤¬ą¤¾ą¤°ą¤¾ ą¤Ŗą„‹ą¤øą„ą¤Ÿ किया गया" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3054,7 +3141,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3064,19 +3151,19 @@ msgid "Request Change" msgstr "ą¤…ą¤Øą„ą¤°ą„‹ą¤§ ą¤¬ą¤¦ą¤²ą„‡ą¤‚" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤•ą¤°ą¤Øą„‡ ą¤øą„‡ ą¤Ŗą¤¹ą¤²ą„‡ ą¤µą„ˆą¤•ą¤²ą„ą¤Ŗą¤æą¤• ą¤Ÿą„‡ą¤•ą„ą¤øą„ą¤Ÿ ą¤•ą„€ ą¤†ą¤µą¤¶ą„ą¤Æą¤•ą¤¤ą¤¾ ą¤¹ą„ˆ" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "इस ą¤Ŗą„ą¤°ą¤¦ą¤¾ą¤¤ą¤¾ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤†ą¤µą¤¶ą„ą¤Æą¤•" @@ -3089,66 +3176,65 @@ msgstr "ą¤•ą„‹ą¤” ą¤°ą„€ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "ą¤‘ą¤Øą¤¬ą„‹ą¤°ą„ą¤”ą¤æą¤‚ą¤— ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤•ą„‹ ą¤°ą„€ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤°ą„€ą¤øą„‡ą¤Ÿ" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾ą¤“ą¤‚ ą¤•ą„‹ ą¤°ą„€ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "ą¤‘ą¤Øą¤¬ą„‹ą¤°ą„ą¤”ą¤æą¤‚ą¤— ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤•ą„‹ ą¤°ą„€ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾ą¤“ą¤‚ ą¤•ą„€ ą¤øą„ą¤„ą¤æą¤¤ą¤æ ą¤•ą„‹ ą¤°ą„€ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "फिर ą¤øą„‡ ą¤•ą„‹ą¤¶ą¤æą¤¶ ą¤•ą¤°ą„‹" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3161,7 +3247,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "ą¤øą„‡ą¤µ ą¤•ą¤°ą„‹" @@ -3201,11 +3287,11 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3213,8 +3299,8 @@ msgstr "" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "ą¤–ą„‹ą¤œ" @@ -3246,8 +3332,8 @@ msgid "Select {item}" msgstr "" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Bluesky Social का चयन ą¤•ą¤°ą„‡ą¤‚" +#~ msgid "Select Bluesky Social" +#~ msgstr "Bluesky Social का चयन ą¤•ą¤°ą„‡ą¤‚" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3257,8 +3343,8 @@ msgstr "ą¤®ą„Œą¤œą„‚ą¤¦ą¤¾ ą¤–ą¤¾ą¤¤ą„‡ ą¤øą„‡ ą¤šą„ą¤Øą„‡ą¤‚" msgid "Select option {i} of {numItems}" msgstr "" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "ą¤øą„‡ą¤µą¤¾ ą¤šą„ą¤Øą„‡ą¤‚" @@ -3266,11 +3352,15 @@ msgstr "ą¤øą„‡ą¤µą¤¾ ą¤šą„ą¤Øą„‡ą¤‚" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3291,8 +3381,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3302,7 +3392,7 @@ msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤«ą¤¼ą„€ą¤” ą¤®ą„‡ą¤‚ ą¤…ą¤Øą„ą¤µą¤¾ą¤¦ ą¤•ą„‡ ą¤²ą¤æą¤ msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3320,8 +3410,8 @@ msgctxt "action" msgid "Send Email" msgstr "ą¤ˆą¤®ą„‡ą¤² ą¤­ą„‡ą¤œą„‡ą¤‚" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "ą¤Ŗą„ą¤°ą¤¤ą¤æą¤•ą„ą¤°ą¤æą¤Æą¤¾ ą¤­ą„‡ą¤œą„‡ą¤‚" @@ -3333,33 +3423,37 @@ msgstr "ą¤°ą¤æą¤Ŗą„‹ą¤°ą„ą¤Ÿ ą¤­ą„‡ą¤œą„‡ą¤‚" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3367,19 +3461,19 @@ msgstr "" msgid "Set new password" msgstr "नया ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤«ą¤¼ą„€ą¤” ą¤øą„‡ ą¤øą¤­ą„€ ą¤‰ą¤¦ą„ą¤§ą¤°ą¤£ ą¤Ŗą¤¦ą„‹ą¤‚ ą¤•ą„‹ ą¤›ą¤æą¤Ŗą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ \"ą¤Øą¤¹ą„€ą¤‚\" ą¤®ą„‡ą¤‚ ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚ą„¤ Reposts ą¤…ą¤­ą„€ ą¤­ą„€ ą¤¦ą¤æą¤–ą¤¾ą¤ˆ ą¤¦ą„‡ą¤—ą¤¾ą„¤ą„¤" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ ą¤…ą¤Ŗą¤Øą„‡ ą¤«ą¤¼ą„€ą¤” ą¤øą„‡ ą¤øą¤­ą„€ ą¤‰ą¤¤ą„ą¤¤ą¤°ą„‹ą¤‚ ą¤•ą„‹ ą¤›ą¤æą¤Ŗą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ \"ą¤Øą¤¹ą„€ą¤‚\" पर ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ ą¤…ą¤Ŗą¤Øą„‡ ą¤«ą¤¼ą„€ą¤” ą¤øą„‡ ą¤øą¤­ą„€ ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤›ą¤æą¤Ŗą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ \"ą¤Øą¤¹ą„€ą¤‚\" ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" @@ -3388,8 +3482,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ \"हाँ\" ą¤®ą„‡ą¤‚ ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤ą¤• ą¤„ą„ą¤°ą„‡ą¤”ą„‡ą¤” ą¤µą„ą¤Æą„‚ ą¤®ą„‡ą¤‚ जवाब ą¤¦ą¤æą¤–ą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ą„¤ यह ą¤ą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• ą¤µą¤æą¤¶ą„‡ą¤·ą¤¤ą¤¾ ą¤¹ą„ˆą„¤ą„¤" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ ą¤…ą¤Ŗą¤Øą„‡ ą¤Øą¤æą¤®ą„ą¤Øą¤²ą¤æą¤–ą¤æą¤¤ ą¤«ą¤¼ą„€ą¤” ą¤®ą„‡ą¤‚ ą¤…ą¤Ŗą¤Øą„‡ ą¤øą¤¹ą„‡ą¤œą„‡ ą¤—ą¤ ą¤«ą¤¼ą„€ą¤” ą¤•ą„‡ ą¤Øą¤®ą„‚ą¤Øą„‡ ą¤¦ą¤æą¤–ą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ \"हाँ\" पर ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚ą„¤ यह ą¤ą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• ą¤µą¤æą¤¶ą„‡ą¤·ą¤¤ą¤¾ ą¤¹ą„ˆą„¤ą„¤" +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "इस ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤— ą¤•ą„‹ ą¤…ą¤Ŗą¤Øą„‡ ą¤Øą¤æą¤®ą„ą¤Øą¤²ą¤æą¤–ą¤æą¤¤ ą¤«ą¤¼ą„€ą¤” ą¤®ą„‡ą¤‚ ą¤…ą¤Ŗą¤Øą„‡ ą¤øą¤¹ą„‡ą¤œą„‡ ą¤—ą¤ ą¤«ą¤¼ą„€ą¤” ą¤•ą„‡ ą¤Øą¤®ą„‚ą¤Øą„‡ ą¤¦ą¤æą¤–ą¤¾ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ \"हाँ\" पर ą¤øą„‡ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚ą„¤ यह ą¤ą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• ą¤µą¤æą¤¶ą„‡ą¤·ą¤¤ą¤¾ ą¤¹ą„ˆą„¤ą„¤" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3399,24 +3497,24 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø" @@ -3429,25 +3527,25 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "ą¤¶ą„‡ą¤Æą¤°" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "दिखाओ" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3459,21 +3557,21 @@ msgstr "दिखाओ" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤«ą„€ą¤” ą¤øą„‡ ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤¦ą¤æą¤–ą¤¾ą¤ą¤‚" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ą¤‰ą¤¦ą„ą¤§ą¤°ą¤£ ą¤Ŗą„‹ą¤øą„ą¤Ÿ दिखाओ" @@ -3489,7 +3587,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤¦ą¤æą¤–ą¤¾ą¤ą¤" @@ -3505,11 +3603,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ą¤°ą„€ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤¦ą¤æą¤–ą¤¾ą¤ą¤" @@ -3526,17 +3624,18 @@ msgstr "" msgid "Show users" msgstr "ą¤²ą„‹ą¤— ą¤¦ą¤æą¤–ą¤¾ą¤ą¤" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3549,8 +3648,8 @@ msgid "Sign in" msgstr "साइन इन ą¤•ą¤°ą„‡ą¤‚" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "साइन इन ą¤•ą¤°ą„‡ą¤‚" @@ -3563,14 +3662,14 @@ msgstr "{0} ą¤•ą„‡ ą¤°ą„‚ą¤Ŗ ą¤®ą„‡ą¤‚ साइन इन ą¤•ą¤°ą„‡ą¤‚" msgid "Sign in as..." msgstr "... ą¤•ą„‡ ą¤°ą„‚ą¤Ŗ ą¤®ą„‡ą¤‚ साइन इन ą¤•ą¤°ą„‡ą¤‚" -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "साइन इन ą¤•ą¤°ą„‡ą¤‚" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "साइन ą¤†ą¤‰ą¤Ÿ" @@ -3594,7 +3693,7 @@ msgstr "" msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "ą¤†ą¤Ŗą¤Øą„‡ इस ą¤°ą„‚ą¤Ŗ ą¤®ą„‡ą¤‚ साइन इन करा ą¤¹ą„ˆ:" @@ -3607,7 +3706,7 @@ msgid "Signs {0} out of Bluesky" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "ą¤øą„ą¤•ą¤æą¤Ŗ" @@ -3617,22 +3716,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -3653,10 +3752,10 @@ msgid "Square" msgstr "ą¤øą„ą¤•ą„ą¤µą¤¾ą¤Æą¤°" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "ą¤øą„ą¤Ÿą„‡ą¤œą¤æą¤‚ą¤—" +#~ msgid "Staging" +#~ msgstr "ą¤øą„ą¤Ÿą„‡ą¤œą¤æą¤‚ą¤—" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "ą¤øą„ą¤„ą¤æą¤¤ą¤æ ą¤Ŗą„ƒą¤·ą„ą¤ " @@ -3664,12 +3763,12 @@ msgstr "ą¤øą„ą¤„ą¤æą¤¤ą¤æ ą¤Ŗą„ƒą¤·ą„ą¤ " msgid "Step {0} of {numSteps}" msgstr "" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "Storybook" @@ -3677,7 +3776,7 @@ msgstr "Storybook" msgid "Submit" msgstr "" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "ą¤øą¤¬ą„ą¤øą¤•ą„ą¤°ą¤¾ą¤‡ą¤¬" @@ -3686,7 +3785,7 @@ msgstr "ą¤øą¤¬ą„ą¤øą¤•ą„ą¤°ą¤¾ą¤‡ą¤¬" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "इस ą¤øą„‚ą¤šą„€ ą¤•ą„‹ ą¤øą¤¬ą„ą¤øą¤•ą„ą¤°ą¤¾ą¤‡ą¤¬ ą¤•ą¤°ą„‡ą¤‚" @@ -3702,35 +3801,35 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "सहायता" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "" +#~ msgid "Swipe up to see more" +#~ msgstr "" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "ą¤–ą¤¾ą¤¤ą„‡ ą¤¬ą¤¦ą¤²ą„‡ą¤‚" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "ą¤øą¤æą¤øą„ą¤Ÿą¤® ą¤²ą„‰ą¤—" @@ -3746,14 +3845,14 @@ msgstr "" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "ą¤¶ą¤°ą„ą¤¤ą„‡ą¤‚" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "ą¤øą„‡ą¤µą¤¾ ą¤•ą„€ ą¤¶ą¤°ą„ą¤¤ą„‡ą¤‚" @@ -3762,7 +3861,11 @@ msgstr "ą¤øą„‡ą¤µą¤¾ ą¤•ą„€ ą¤¶ą¤°ą„ą¤¤ą„‡ą¤‚" msgid "Text input field" msgstr "पाठ ą¤‡ą¤Øą¤Ŗą„ą¤Ÿ ą¤«ą¤¼ą„€ą¤²ą„ą¤”" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ą¤…ą¤Øą¤¬ą„ą¤²ą„‰ą¤• ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ बाद ą¤…ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿ ą¤†ą¤Ŗą¤øą„‡ ą¤‡ą¤‚ą¤Ÿą¤°ą„ˆą¤•ą„ą¤Ÿ कर ą¤øą¤•ą„‡ą¤—ą¤¾ą„¤" @@ -3778,7 +3881,7 @@ msgstr "ą¤•ą„‰ą¤Ŗą„€ą¤°ą¤¾ą¤‡ą¤Ÿ ą¤Øą„€ą¤¤ą¤æ ą¤•ą„‹ <0/> पर ą¤øą„ą¤„ą¤¾ą¤Ø msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "ą¤¹ą„‹ सकता ą¤¹ą„ˆ कि यह ą¤Ŗą„‹ą¤øą„ą¤Ÿ हटा ą¤¦ą„€ ą¤—ą¤ˆ ą¤¹ą„‹ą„¤" @@ -3794,11 +3897,11 @@ msgstr "ą¤øą¤®ą¤°ą„ą¤„ą¤Ø ą¤Ŗą„ą¤°ą¤Ŗą¤¤ą„ą¤° ą¤øą„ą¤„ą¤¾ą¤Øą¤¾ą¤‚ą¤¤ą¤°ą¤æ msgid "The Terms of Service have been moved to" msgstr "ą¤øą„‡ą¤µą¤¾ ą¤•ą„€ ą¤¶ą¤°ą„ą¤¤ą„‹ą¤‚ ą¤•ą„‹ ą¤øą„ą¤„ą¤¾ą¤Øą¤¾ą¤‚ą¤¤ą¤°ą¤æą¤¤ कर दिया गया ą¤¹ą„ˆ" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3806,12 +3909,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3820,9 +3923,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3852,19 +3955,21 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3872,13 +3977,13 @@ msgstr "" msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "ą¤ą¤Ŗą„ą¤²ą¤æą¤•ą„‡ą¤¶ą¤Ø ą¤®ą„‡ą¤‚ ą¤ą¤• ą¤…ą¤Ŗą„ą¤°ą¤¤ą„ą¤Æą¤¾ą¤¶ą¤æą¤¤ ą¤øą¤®ą¤øą„ą¤Æą¤¾ ą¤„ą„€. ą¤•ą„ƒą¤Ŗą¤Æą¤¾ ą¤¹ą¤®ą„‡ą¤‚ ą¤¬ą¤¤ą¤¾ą¤ą¤‚ कि ą¤•ą„ą¤Æą¤¾ ą¤†ą¤Ŗą¤•ą„‡ साऄ ऐसा ą¤¹ą„ą¤† ą¤¹ą„ˆ!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3904,13 +4009,17 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "" -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -3938,7 +4047,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "इस ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤•ą„‹ हटा दिया गया ą¤¹ą„ˆą„¤ą„¤" @@ -3962,12 +4071,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "यह ą¤šą„‡ą¤¤ą¤¾ą¤µą¤Øą„€ ą¤•ą„‡ą¤µą¤² ą¤®ą„€ą¤”ą¤æą¤Æą¤¾ ą¤øą¤‚ą¤²ą¤—ą„ą¤Ø ą¤Ŗą„‹ą¤øą„ą¤Ÿ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤‰ą¤Ŗą¤²ą¤¬ą„ą¤§ ą¤¹ą„ˆą„¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "ą¤„ą„ą¤°ą„‡ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾" @@ -3975,7 +4084,7 @@ msgstr "ą¤„ą„ą¤°ą„‡ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤•ą¤¤ą¤¾" msgid "Threaded Mode" msgstr "ą¤„ą„ą¤°ą„‡ą¤” ą¤®ą„‹ą¤”" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -3987,45 +4096,45 @@ msgstr "ą¤”ą„ą¤°ą„‰ą¤Ŗą¤”ą¤¾ą¤‰ą¤Ø ą¤Ÿą„‰ą¤—ą¤² ą¤•ą¤°ą„‡ą¤‚" msgid "Transformations" msgstr "ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ą¤…ą¤Øą„ą¤µą¤¾ą¤¦" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "फिर ą¤øą„‡ ą¤•ą„‹ą¤¶ą¤æą¤¶ ą¤•ą¤°ą„‹" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "ą¤†ą¤Ŗą¤•ą„€ ą¤øą„‡ą¤µą¤¾ ą¤øą„‡ ą¤øą¤‚ą¤Ŗą¤°ą„ą¤• ą¤•ą¤°ą¤Øą„‡ ą¤®ą„‡ą¤‚ ą¤…ą¤øą¤®ą¤°ą„ą¤„ą„¤ ą¤•ą„ƒą¤Ŗą¤Æą¤¾ ą¤…ą¤Ŗą¤Øą„‡ ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤Ÿ ą¤•ą¤Øą„‡ą¤•ą„ą¤¶ą¤Ø ą¤•ą„€ ą¤œą¤¾ą¤‚ą¤š ą¤•ą¤°ą„‡ą¤‚ą„¤ą„¤" -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "ą¤…ą¤Øą¤¬ą„ą¤²ą„‰ą¤•" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "ą¤…ą¤Øą¤¬ą„ą¤²ą„‰ą¤• खाता" @@ -4041,40 +4150,41 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ą¤…ą¤Øą¤®ą„ą¤Æą„‚ą¤Ÿ खाता" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ą¤„ą„ą¤°ą„‡ą¤” ą¤•ą„‹ ą¤…ą¤Øą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4117,8 +4227,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "ą¤…ą¤Ŗą¤Øą„‡ ą¤¹ą„ˆą¤‚ą¤”ą¤² ą¤•ą„‡ साऄ ą¤¦ą„‚ą¤øą¤°ą„‡ ऐप ą¤®ą„‡ą¤‚ साइन इन ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤ इसका ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤•ą¤°ą„‡ą¤‚ą„¤" #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4136,11 +4246,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ą¤Æą„‚ą¤œą¤° ą¤¹ą„ˆą¤‚ą¤”ą¤²" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4149,7 +4259,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4167,8 +4277,8 @@ msgstr "" msgid "User Lists" msgstr "ą¤²ą„‹ą¤— ą¤øą„‚ą¤šą¤æą¤Æą¤¾ą¤" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "ą¤Æą„‚ą¤œą¤° नाम या ą¤ˆą¤®ą„‡ą¤² पता" @@ -4185,18 +4295,18 @@ msgid "Users in \"{0}\"" msgstr "" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "ą¤ˆą¤®ą„‡ą¤² ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤ˆą¤®ą„‡ą¤² ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤ ą¤•ą¤°ą„‡ą¤‚" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "ą¤®ą„‡ą¤°ą„€ ą¤ˆą¤®ą„‡ą¤² ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤ ą¤•ą¤°ą„‡ą¤‚" @@ -4213,7 +4323,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4238,15 +4348,15 @@ msgid "Visit Site" msgstr "ą¤øą¤¾ą¤‡ą¤Ÿ पर ą¤œą¤¾ą¤ą¤‚" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4262,7 +4372,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4270,7 +4380,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4282,11 +4392,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "हम ą¤†ą¤Ŗą¤•ą„‡ ą¤¹ą¤®ą¤¾ą¤°ą„€ ą¤øą„‡ą¤µą¤¾ ą¤®ą„‡ą¤‚ शामिल ą¤¹ą„‹ą¤Øą„‡ ą¤•ą„‹ ą¤²ą„‡ą¤•ą¤° ą¤¬ą¤¹ą„ą¤¤ ą¤‰ą¤¤ą„ą¤øą¤¾ą¤¹ą¤æą¤¤ ą¤¹ą„ˆą¤‚!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4310,7 +4420,7 @@ msgstr "" msgid "What is the issue with this {collectionName}?" msgstr "इस {collectionName} ą¤•ą„‡ साऄ ą¤•ą„ą¤Æą¤¾ ą¤®ą„ą¤¦ą„ą¤¦ą¤¾ ą¤¹ą„ˆ?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "" @@ -4346,14 +4456,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4363,7 +4473,7 @@ msgstr "हाँ" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4393,7 +4503,7 @@ msgstr "ą¤†ą¤Ŗą¤•ą„‡ पास ą¤…ą¤­ą„€ तक ą¤•ą„‹ą¤ˆ ą¤†ą¤®ą¤‚ą¤¤ą„ą¤°ą¤£ msgid "You don't have any pinned feeds." msgstr "ą¤†ą¤Ŗą¤•ą„‡ पास ą¤•ą„‹ą¤ˆ पिन किया ą¤¹ą„ą¤† ą¤«ą¤¼ą„€ą¤” ą¤Øą¤¹ą„€ą¤‚ ą¤¹ą„ˆ." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "" @@ -4401,7 +4511,7 @@ msgstr "" msgid "You don't have any saved feeds." msgstr "ą¤†ą¤Ŗą¤•ą„‡ पास ą¤•ą„‹ą¤ˆ ą¤øą¤¹ą„‡ą¤œą„€ ą¤—ą¤ˆ ą¤«ą¤¼ą„€ą¤” ą¤Øą¤¹ą„€ą¤‚ ą¤¹ą„ˆ." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "ą¤†ą¤Ŗą¤Øą„‡ ą¤²ą„‡ą¤–ą¤• ą¤•ą„‹ ą¤…ą¤µą¤°ą„ą¤¦ą„ą¤§ किया ą¤¹ą„ˆ या ą¤†ą¤Ŗą¤Øą„‡ ą¤²ą„‡ą¤–ą¤• ą¤¦ą„ą¤µą¤¾ą¤°ą¤¾ ą¤…ą¤µą¤°ą„ą¤¦ą„ą¤§ किया ą¤¹ą„ˆą„¤ą„¤" @@ -4441,7 +4551,7 @@ msgstr "ą¤†ą¤Ŗą¤Øą„‡ ą¤…ą¤­ą„€ तक ą¤•ą„‹ą¤ˆ ऐप ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” न msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "ą¤†ą¤Ŗą¤Øą„‡ ą¤…ą¤­ą„€ तक ą¤•ą„‹ą¤ˆ खाता ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤Øą¤¹ą„€ą¤‚ किया ą¤¹ą„ˆ. ą¤•ą¤æą¤øą„€ ą¤–ą¤¾ą¤¤ą„‡ ą¤•ą„‹ ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą¤Øą„‡ ą¤•ą„‡ ą¤²ą¤æą¤, ą¤‰ą¤Øą¤•ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤² पर ą¤œą¤¾ą¤ą¤‚ और ą¤‰ą¤Øą¤•ą„‡ ą¤–ą¤¾ą¤¤ą„‡ ą¤•ą„‡ ą¤®ą„‡ą¤Øą„‚ ą¤øą„‡ \"खाता ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤•ą¤°ą„‡ą¤‚\" ą¤šą„ą¤Øą„‡ą¤‚ą„¤" -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "" @@ -4449,11 +4559,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4465,9 +4575,9 @@ msgstr "ą¤†ą¤Ŗą¤•ą„‹ \"reset code\" ą¤•ą„‡ साऄ ą¤ą¤• ą¤ˆą¤®ą„‡ą¤² ą¤Ŗą„ msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4479,7 +4589,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "आपका खाता" @@ -4487,7 +4597,11 @@ msgstr "आपका खाता" msgid "Your account has been deleted" msgstr "" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "ą¤œą¤Øą„ą¤® तिऄि" @@ -4499,7 +4613,7 @@ msgstr "" msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4521,7 +4635,7 @@ msgstr "आपका ą¤ˆą¤®ą„‡ą¤² ą¤…ą¤­ą„€ तक ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤ न msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "आपका ą¤Ŗą„‚ą¤°ą¤¾ ą¤¹ą„ˆą¤‚ą¤”ą¤² ą¤¹ą„‹ą¤—ą¤¾" @@ -4532,8 +4646,8 @@ msgstr "" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4550,7 +4664,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "ą¤†ą¤Ŗą¤•ą„€ ą¤Ŗą„‹ą¤øą„ą¤Ÿ, पसंद और ą¤¬ą„ą¤²ą„‰ą¤• ą¤øą¤¾ą¤°ą„ą¤µą¤œą¤Øą¤æą¤• ą¤¹ą„ˆą¤‚ą„¤ ą¤®ą„ą¤Æą„‚ą¤Ÿ ą¤Øą¤æą¤œą„€ ą¤¹ą„ˆą¤‚ą„¤ą„¤" #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "ą¤†ą¤Ŗą¤•ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤²" @@ -4558,6 +4672,6 @@ msgstr "ą¤†ą¤Ŗą¤•ą„€ ą¤Ŗą„ą¤°ą„‹ą¤«ą¤¼ą¤¾ą¤‡ą¤²" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "आपका ą¤Æą„‚ą¤œą¤° ą¤¹ą„ˆą¤‚ą¤”ą¤²" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index d5e1926814..5697638a0f 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -18,8 +18,8 @@ msgid "(no email)" msgstr "(tidak ada email)" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {# kode undangan tersedia} other {# kode undangan tersedia}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# kode undangan tersedia} other {# kode undangan tersedia}}" #: src/view/com/modals/CreateOrEditList.tsx:185 #: src/view/screens/Settings.tsx:294 @@ -29,29 +29,29 @@ msgstr "{0, plural, one {# kode undangan tersedia} other {# kode undangan tersed #~ msgid "{0} {purposeLabel} List" #~ msgstr "Daftar {purposeLabel} {0}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} mengikuti" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {Kode undangan: # tersedia} other {Kode undangan: # tersedia}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Kode undangan: # tersedia} other {Kode undangan: # tersedia}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} kode undangan tersedia" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} kode undangan tersedia" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} kode undangan tersedia" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} kode undangan tersedia" #: src/view/screens/Search/Search.tsx:87 #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} belum dibaca" @@ -63,7 +63,7 @@ msgstr "{numUnreadNotifications} belum dibaca" msgid "<0/> members" msgstr "<0/> anggota" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following} <1>mengikuti" @@ -79,7 +79,7 @@ msgstr "<0>Ikuti<1>Rekomendasi<2>Pengguna" msgid "<0>Welcome to<1>Bluesky" msgstr "<0>Selamat datang diBluesky" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "⚠Handle Tidak Valid" @@ -96,26 +96,26 @@ msgstr "Versi baru dari aplikasi ini telah tersedia. Harap perbarui untuk terus msgid "Access navigation links and settings" msgstr "Akses tautan navigasi dan pengaturan" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Akses profil dan tautan navigasi lain" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "Aksesibilitas" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "Akun" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Akun diblokir" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Akun dibisukan" @@ -135,11 +135,11 @@ msgstr "Pengaturan akun" msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Akun batal diblokir" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Akun batal dibisukan" @@ -158,8 +158,8 @@ msgstr "Tambahkan peringatan konten" msgid "Add a user to this list" msgstr "Tambahkan pengguna ke daftar ini" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "Tambahkan akun" @@ -196,12 +196,12 @@ msgstr "Tambahkan kartu tautan:" msgid "Add the following DNS record to your domain:" msgstr "Tambahkan DNS record berikut ke domain Anda:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Tambahkan ke Daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Tambakan ke feed saya" @@ -214,11 +214,11 @@ msgstr "Ditambahkan" msgid "Added to list" msgstr "Ditambahkan ke daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Ditambahkan ke feed saya" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Atur jumlah suka dari balasan yang akan ditampilkan di feed Anda." @@ -226,7 +226,7 @@ msgstr "Atur jumlah suka dari balasan yang akan ditampilkan di feed Anda." msgid "Adult Content" msgstr "Konten Dewasa" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "Konten dewasa hanya dapat diaktifkan melalui Web di <0/>." @@ -234,11 +234,15 @@ msgstr "Konten dewasa hanya dapat diaktifkan melalui Web di <0/>." #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "Lanjutan" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -297,7 +301,7 @@ msgstr "Nama Kata Sandi Aplikasi hanya boleh terdiri dari huruf, angka, spasi, t msgid "App Password names must be at least 4 characters long." msgstr "Nama Kata Sandi Aplikasi harus terdiri dari minimal 4 karakter." -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "Pengaturan kata sandi aplikasi" @@ -305,13 +309,13 @@ msgstr "Pengaturan kata sandi aplikasi" #~ msgid "App passwords" #~ msgstr "Kata sandi aplikasi" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "Kata sandi Aplikasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Ajukan banding peringatan konten" @@ -330,7 +334,7 @@ msgstr "Ajukan banding untuk keputusan ini" msgid "Appeal this decision." msgstr "Ajukan banding untuk keputusan ini." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "Tampilan" @@ -342,11 +346,11 @@ msgstr "Anda yakin untuk menghapus kata sandi aplikasi \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Anda yakin untuk membuang draf ini?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Anda yakin?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Anda yakin? Ini tidak dapat dibatalkan." @@ -362,21 +366,21 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Ketelanjangan artistik atau non-erotis." -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Kembali" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "Kembali" @@ -385,42 +389,42 @@ msgstr "Kembali" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "Dasar" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "Tanggal lahir" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "Tanggal lahir:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Blokir Akun" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Blokir akun" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Daftar blokir" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Blokir akun ini?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Blokir Daftar ini" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Diblokir" @@ -433,7 +437,7 @@ msgstr "Akun yang diblokir" msgid "Blocked Accounts" msgstr "Akun yang diblokir" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Akun yang diblokir tidak dapat membalas di utas Anda, menyebut Anda, atau berinteraksi dengan Anda." @@ -441,22 +445,29 @@ msgstr "Akun yang diblokir tidak dapat membalas di utas Anda, menyebut Anda, ata msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda, dan interaksi lain dengan Anda. Anda tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Postingan yang diblokir." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokir bersifat publik. Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda, dan interaksi lain dengan Anda." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Blog" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -481,24 +492,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda ke pengguna yang tidak login. Aplikasi lain mungkin tidak menghormati permintaan ini. Ini tidak membuat akun Anda menjadi privat." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Versi {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "Bisnis" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "Tombol dinonaktifkan. Masukkan domain khusus untuk melanjutkan." +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "Tombol dinonaktifkan. Masukkan domain khusus untuk melanjutkan." #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -517,8 +529,8 @@ msgid "by you" msgstr "oleh Anda" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "Kamera" @@ -526,7 +538,7 @@ msgstr "Kamera" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis bawah. Minimal 4 karakter, namun tidak boleh lebih dari 32 karakter." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -589,7 +601,7 @@ msgstr "Batal mencari" msgid "Cancel waitlist signup" msgstr "Batal mendaftar di daftar tunggu" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "Ubah" @@ -597,12 +609,12 @@ msgstr "Ubah" #~ msgid "Change" #~ msgstr "Ubah" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Ubah handle" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Ubah Handle" @@ -610,11 +622,11 @@ msgstr "Ubah Handle" msgid "Change my email" msgstr "Ubah email saya" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -622,7 +634,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "Ubah bahasa postingan menjadi {0}" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -630,8 +642,8 @@ msgstr "" msgid "Change Your Email" msgstr "Ubah Email Anda" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -651,11 +663,11 @@ msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di baw msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "Pilih \"Semua Orang\" atau \"Tidak Ada\"" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "Pilih nama pengguna Bluesky baru atau buat" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Pilih Layanan" @@ -676,29 +688,29 @@ msgstr "Pilih algoritma yang akan digunakan untuk kustom feed Anda." msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "Pilih kata sandi Anda" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "Hapus semua data penyimpanan lama" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "Hapus semua data penyimpanan lama (mulai ulang setelah ini)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "Hapus semua data penyimpanan" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "Hapus kueri pencarian" @@ -716,7 +728,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -768,7 +781,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -777,6 +790,10 @@ msgstr "Panduan Komunitas" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Buat postingan dengan panjang hingga {MAX_GRAPHEME_LENGTH} karakter" @@ -789,12 +806,12 @@ msgstr "Tulis balasan" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Konfirmasi" @@ -818,7 +835,7 @@ msgstr "Konfirmasi pengaturan bahasa konten" msgid "Confirm delete account" msgstr "Konfirmasi hapus akun" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "Konfirmasikan usia Anda untuk mengaktifkan konten dewasa." @@ -832,12 +849,12 @@ msgstr "Kode konfirmasi" msgid "Confirms signing up {email} to the waitlist" msgstr "Konfirmasi pendaftaran {email} ke daftar tunggu" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Menghubungkan..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -867,11 +884,11 @@ msgstr "Peringatan Konten" msgid "Content warnings" msgstr "Peringatan konten" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -880,15 +897,15 @@ msgstr "Lanjutkan" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -901,13 +918,13 @@ msgstr "" msgid "Copied" msgstr "Disalin" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "Menyalin versi build ke papan klip" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Disalin ke papan klip" @@ -919,28 +936,28 @@ msgstr "Menyalin kata sandi aplikasi" msgid "Copy" msgstr "Salin" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Salin tautan ke daftar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Salin tautan ke postingan" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Salin tautan ke profil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Salin teks postingan" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" @@ -949,20 +966,20 @@ msgid "Could not load list" msgstr "Tidak dapat memuat daftar" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "Buat akun baru" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "Buat akun Bluesky baru" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Buat Akun" @@ -971,7 +988,7 @@ msgid "Create App Password" msgstr "Buat Kata Sandi Aplikasi" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "Buat akun baru" @@ -995,12 +1012,17 @@ msgstr "Buat kartu dengan gambar kecil. Tautan kartu ke {url}" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "Domain kustom" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1012,8 +1034,8 @@ msgstr "Sesuaikan media dari situs eksternal." #~ msgid "Danger Zone" #~ msgstr "Zona Berbahaya" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "Gelap" @@ -1021,7 +1043,7 @@ msgstr "Gelap" msgid "Dark mode" msgstr "Mode gelap" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1033,7 +1055,7 @@ msgstr "" msgid "Debug panel" msgstr "Panel debug" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "Hapus akun" @@ -1046,8 +1068,8 @@ msgstr "Hapus Akun" msgid "Delete app password" msgstr "Hapus kata sandi aplikasi" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Hapus Daftar" @@ -1059,23 +1081,23 @@ msgstr "Hapus akun saya" #~ msgid "Delete my account…" #~ msgstr "Hapus akun saya…" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Hapus postingan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Hapus postingan ini?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "Dihapus" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "Postingan dihapus." @@ -1091,14 +1113,14 @@ msgstr "Deskripsi" #~ msgstr "Server Dev" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Alat Pengembang" +#~ msgid "Developer Tools" +#~ msgstr "Alat Pengembang" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "Apakah Anda ingin mengatakan sesuatu?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1119,9 +1141,13 @@ msgstr "Cegah aplikasi untuk menampilkan akun saya ke pengguna yang tidak login" msgid "Discover new custom feeds" msgstr "Temukan feed khusus baru" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "Temukan feed baru" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "Temukan feed baru" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1135,7 +1161,7 @@ msgstr "Nama Tampilan" msgid "Domain verified!" msgstr "Domain terverifikasi!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "Tidak punya kode undangan?" @@ -1152,6 +1178,8 @@ msgctxt "action" msgid "Done" msgstr "Selesai" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1160,7 +1188,9 @@ msgstr "Selesai" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "Selesai" @@ -1172,7 +1202,16 @@ msgstr "Selesai{extraText}" msgid "Double tap to sign in" msgstr "Ketuk dua kali untuk masuk" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1218,7 +1257,7 @@ msgstr "Ubah" msgid "Edit image" msgstr "Edit gambar" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Edit detail daftar" @@ -1226,8 +1265,8 @@ msgstr "Edit detail daftar" msgid "Edit Moderation List" msgstr "Ubah Daftar Moderasi" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Edit Feed Saya" @@ -1236,15 +1275,15 @@ msgstr "Edit Feed Saya" msgid "Edit my profile" msgstr "Edit profil saya" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Edit profil" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Edit Profil" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Edit Feed Tersimpan" @@ -1264,17 +1303,15 @@ msgstr "Ubah deskripsi profil Anda" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "Email" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "Alamat email" @@ -1291,7 +1328,7 @@ msgstr "Email Diupdate" msgid "Email verified" msgstr "Email terverifikasi" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "Email:" @@ -1299,7 +1336,7 @@ msgstr "Email:" msgid "Enable {0} only" msgstr "Aktifkan {0} saja" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "Aktifkan Konten Dewasa" @@ -1316,11 +1353,11 @@ msgstr "Aktifkan Media Eksternal" msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Aktifkan opsi ini untuk hanya menampilkan balasan dari akun yang Anda ikuti." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "Akhir feed" @@ -1344,11 +1381,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "Masukkan domain yang ingin Anda gunakan" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "Masukkan email yang Anda gunakan untuk membuat akun. Kami akan mengirimkan \"kode reset\" untuk mengatur kata sandi baru." -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "Masukkan tanggal lahir Anda" @@ -1357,7 +1394,7 @@ msgstr "Masukkan tanggal lahir Anda" msgid "Enter your email" msgstr "Masukkan email Anda" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Masukkan alamat email Anda" @@ -1370,13 +1407,17 @@ msgid "Enter your new email address below." msgstr "Masukkan alamat email baru Anda di bawah ini." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Masukkan nama pengguna dan kata sandi Anda" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Eror:" @@ -1411,6 +1452,15 @@ msgstr "Tampilkan teks alt" msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "Media Eksternal" @@ -1420,13 +1470,13 @@ msgstr "Media Eksternal" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"play\"." -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "Pengaturan media eksternal" @@ -1439,7 +1489,7 @@ msgstr "Gagal membuat kata sandi aplikasi." msgid "Failed to create the list. Check your internet connection and try again." msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" @@ -1448,15 +1498,15 @@ msgstr "Gagal menghapus postingan, silakan coba lagi" msgid "Failed to load recommended feeds" msgstr "Gagal memuat rekomendasi feed" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Feed oleh {0}" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Feed offline" @@ -1464,18 +1514,19 @@ msgstr "Feed offline" msgid "Feed Preferences" msgstr "Preferensi Feed" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "Masukan" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Feed" @@ -1495,7 +1546,7 @@ msgstr "Feed dibuat oleh pengguna untuk mengkurasi konten. Pilih beberapa feed y msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feed adalah algoritma khusus yang dibuat oleh pengguna dengan sedikit keahlian pengkodean. <0/> untuk informasi lebih lanjut." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1521,9 +1572,13 @@ msgstr "Temukan pengguna dengan alat pencarian di sebelah kanan" msgid "Finding similar accounts..." msgstr "Mencari akun serupa..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Atur konten yang Anda lihat di beranda." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Atur konten yang Anda lihat di beranda." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1546,21 +1601,24 @@ msgstr "Balik secara horizontal" msgid "Flip vertically" msgstr "Balik secara vertikal" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Ikuti" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "Ikuti" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "Ikuti" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Ikuti {0}" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1584,7 +1642,7 @@ msgstr "Diikuti oleh {0}" msgid "Followed users" msgstr "Pengguna yang diikuti" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Hanya pengguna yang diikuti" @@ -1599,16 +1657,24 @@ msgstr "Pengikut" #~ msgid "following" #~ msgstr "mengikuti" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Mengikuti" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Mengikuti {0}" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Mengikuti Anda" @@ -1628,11 +1694,11 @@ msgstr "Untuk alasan keamanan, kami akan mengirimkan kode konfirmasi ke alamat e msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa kata sandi ini, Anda harus membuat yang baru." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "Lupa" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "Lupa kata sandi" @@ -1641,7 +1707,7 @@ msgstr "Lupa kata sandi" msgid "Forgot Password" msgstr "Lupa Kata Sandi" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "Dari <0/>" @@ -1662,8 +1728,8 @@ msgstr "Memulai" msgid "Go back" msgstr "Kembali" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1679,9 +1745,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1691,12 +1757,12 @@ msgstr "Berikutnya" msgid "Handle" msgstr "Handle" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "Bantuan" @@ -1708,11 +1774,11 @@ msgstr "" #~ msgid "Here are some accounts for your to follow" #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1721,19 +1787,19 @@ msgid "Here is your app password." msgstr "Berikut kata sandi aplikasi Anda." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Sembunyikan postingan" @@ -1742,7 +1808,7 @@ msgstr "Sembunyikan postingan" msgid "Hide the content" msgstr "Sembunyikan konten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" @@ -1750,7 +1816,7 @@ msgstr "Sembunyikan postingan ini?" msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Menyembunyikan postingan dari {0} di feed Anda" @@ -1774,22 +1840,23 @@ msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "Beranda" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "Preferensi Feed Beranda" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferensi Feed Beranda" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "Provider hosting" @@ -1833,8 +1900,8 @@ msgstr "Gambar" msgid "Image alt text" msgstr "Teks alt gambar" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "Pilihan gambar" @@ -1846,7 +1913,7 @@ msgstr "Masukkan kode yang dikirim ke email Anda untuk pengaturan ulang kata san msgid "Input confirmation code for account deletion" msgstr "Masukkan kode konfirmasi untuk penghapusan akun" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" @@ -1858,7 +1925,7 @@ msgstr "" #~ msgid "Input hosting provider address" #~ msgstr "Masukkan alamat penyedia hosting" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "Masukkan kode undangan untuk melanjutkan" @@ -1875,56 +1942,55 @@ msgid "Input password for account deletion" msgstr "Masukkan kata sandi untuk penghapusan akun" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "Masukkan kata sandi yang terkait dengan {identifier}" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "Masukkan nama pengguna atau alamat email yang Anda gunakan saat mendaftar" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "Masukkan email Anda untuk masuk ke daftar tunggu Bluesky" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "Masukkan kata sandi Anda" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Masukkan handle pengguna Anda" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Catatan posting tidak valid atau tidak didukung" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "Username atau kata sandi salah" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Undang" +#~ msgid "Invite" +#~ msgstr "Undang" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Undang Teman" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "Kode Undangan" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 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." @@ -1933,8 +1999,8 @@ msgid "Invite codes: {0} available" msgstr "Kode undangan: {0} tersedia" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "Kode undangan: {invitesAvailable} tersedia" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Kode undangan: {invitesAvailable} tersedia" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1945,6 +2011,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Karir" @@ -1952,8 +2019,8 @@ msgstr "Karir" msgid "Join the waitlist" msgstr "Gabung ke daftar tunggu" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "Gabung ke daftar tunggu." @@ -1969,7 +2036,7 @@ msgstr "" msgid "Language selection" msgstr "Pilih bahasa" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "Pengaturan bahasa" @@ -1978,7 +2045,7 @@ msgstr "Pengaturan bahasa" msgid "Language Settings" msgstr "Pengaturan Bahasa" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Bahasa" @@ -2016,11 +2083,11 @@ msgstr "Biarkan semua tidak tercentang untuk melihat bahasa apa pun." msgid "Leaving Bluesky" msgstr "Meninggalkan Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Penyimpanan lama dihapus, Anda perlu memulai ulang aplikasi sekarang." @@ -2033,16 +2100,17 @@ msgstr "Reset kata sandi Anda!" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "Pustaka" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "Terang" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "Suka" @@ -2050,7 +2118,7 @@ msgstr "Suka" msgid "Like this feed" msgstr "Suka feed ini" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "Disukai oleh" @@ -2059,7 +2127,7 @@ msgstr "Disukai oleh" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Disukai oleh {0} {1}" @@ -2083,15 +2151,15 @@ msgstr "" msgid "liked your post" msgstr "menyukai postingan Anda" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "Suka" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Suka pada postingan ini" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "Daftar" @@ -2099,19 +2167,19 @@ msgstr "Daftar" msgid "List Avatar" msgstr "Avatar Daftar" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Daftar diblokir" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Daftar oleh {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Daftar dihapus" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Daftar dibisukan" @@ -2119,35 +2187,35 @@ msgstr "Daftar dibisukan" msgid "List Name" msgstr "Nama Daftar" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Daftar tidak diblokir" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Daftar tidak dibisukan" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Daftar" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Muat postingan lainnya" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Muat notifikasi baru" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Muat postingan baru" @@ -2156,17 +2224,17 @@ msgid "Loading..." msgstr "Memuat..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Server dev lokal" +#~ msgid "Local dev server" +#~ msgstr "Server dev lokal" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "Catatan" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2185,7 +2253,15 @@ msgstr "Masuk ke akun yang tidak ada di daftar" msgid "Make sure this is where you intend to go!" msgstr "Pastikan ini adalah website yang Anda tuju!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Media" @@ -2211,14 +2287,14 @@ msgstr "Pesan dari server: {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "Moderasi" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Daftar moderasi oleh {0}" @@ -2227,7 +2303,7 @@ msgstr "Daftar moderasi oleh {0}" msgid "Moderation list by <0/>" msgstr "Daftar moderasi oleh <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2250,7 +2326,7 @@ msgstr "Daftar moderasi" msgid "Moderation Lists" msgstr "Daftar Moderasi" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "Pengaturan moderasi" @@ -2258,17 +2334,17 @@ msgstr "Pengaturan moderasi" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten." -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "Feed lainnya" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Pilihan lainnya" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Opsi posting lainnya" @@ -2276,31 +2352,35 @@ msgstr "Opsi posting lainnya" msgid "Most-liked replies first" msgstr "Balasan yang paling disukai lebih dulu" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Bisukan Akun" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Bisukan akun" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Daftar akun yang dibisukan" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Bisukan akun ini?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Bisukan Daftar ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Bisukan utasan" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Dibisukan" @@ -2317,7 +2397,7 @@ msgstr "Akun yang Dibisukan" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifikasi Anda. Pembisuan ini bersifat privat." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Pembisuan akun bersifat privat. Akun yang dibisukan tetap dapat berinteraksi dengan Anda, namun Anda tidak akan melihat postingan atau notifikasi dari mereka." @@ -2325,7 +2405,7 @@ msgstr "Pembisuan akun bersifat privat. Akun yang dibisukan tetap dapat berinter msgid "My Birthday" msgstr "Tanggal Lahir Saya" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "Feed Saya" @@ -2333,10 +2413,14 @@ msgstr "Feed Saya" msgid "My Profile" msgstr "Profil Saya" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "Feed Tersimpan Saya" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2350,15 +2434,15 @@ msgstr "Nama harus diisi" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "Menuju ke layar berikutnya" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "Menuju ke profil Anda" @@ -2397,16 +2481,17 @@ msgstr "Kata sandi baru" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "Postingan baru" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Postingan baru" @@ -2431,10 +2516,10 @@ msgstr "Balasan terbaru terlebih dahulu" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2452,10 +2537,10 @@ msgstr "Selanjutnya" msgid "Next image" msgstr "Gambar berikutnya" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2466,7 +2551,7 @@ msgstr "Tidak" msgid "No description" msgstr "Tidak ada deskripsi" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" @@ -2479,7 +2564,7 @@ msgstr "Belum ada notifikasi!" msgid "No result" msgstr "Tidak ada hasil" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "Tidak ada hasil ditemukan untuk \"{query}\"" @@ -2502,6 +2587,7 @@ msgid "Not Applicable." msgstr "Tidak Berlaku." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "Tidak ditemukan" @@ -2514,13 +2600,13 @@ msgstr "Jangan sekarang" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya akan membatasi visibilitas konten Anda pada aplikasi dan website Bluesky, dan aplikasi lain mungkin tidak mengindahkan pengaturan ini. Konten Anda mungkin tetap ditampilkan kepada pengguna yang tidak login oleh aplikasi dan website lain." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "Notifikasi" @@ -2544,7 +2630,7 @@ msgstr "Baiklah" msgid "Oldest replies first" msgstr "Balasan terlama terlebih dahulu" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "Atur ulang orientasi" @@ -2556,9 +2642,8 @@ msgstr "Satu atau lebih gambar belum ada teks alt." msgid "Only {0} can reply." msgstr "Hanya {0} dapat membalas." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "Uups!" @@ -2571,15 +2656,15 @@ msgstr "" msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "Buka tautan dengan browser dalam aplikasi" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Buka navigasi" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "Buka halaman buku cerita" @@ -2603,7 +2688,7 @@ msgstr "Membuka kamera pada perangkat" msgid "Opens composer" msgstr "Membuka penyusun postingan" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" @@ -2611,33 +2696,31 @@ msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" msgid "Opens device photo gallery" msgstr "Membuka galeri foto perangkat" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Membuka editor untuk nama tampilan profil, avatar, gambar latar belakang, dan deskripsi" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "Membuka pengaturan penyematan eksternal" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Membuka daftar pengikut" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Membuka daftar mengikuti" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "Membuka daftar kode undangan" +#~ msgid "Opens invite code list" +#~ msgstr "Membuka daftar kode undangan" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "Membuka daftar kode undangan" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "Membuka modal untuk konfirmasi penghapusan akun. Membutuhkan kode email." @@ -2645,39 +2728,39 @@ msgstr "Membuka modal untuk konfirmasi penghapusan akun. Membutuhkan kode email. msgid "Opens modal for using custom domain" msgstr "Buka modal untuk menggunakan domain kustom" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "Buka pengaturan moderasi" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "Membuka formulir pengaturan ulang kata sandi" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "Membuka layar untuk mengedit Umpan Tersimpan" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "Buka halaman dengan semua feed tersimpan" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "Buka halaman pengaturan kata sandi aplikasi" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "Buka preferensi feed beranda" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "Buka halaman storybook" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "Buka halaman log sistem" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "Buka preferensi utasan" @@ -2698,8 +2781,8 @@ msgid "Other account" msgstr "Akun lainnya" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Layanan lainnya" +#~ msgid "Other service" +#~ msgstr "Layanan lainnya" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2713,9 +2796,9 @@ msgstr "Halaman tidak ditemukan" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2729,11 +2812,11 @@ msgstr "Kata sandi diganti" msgid "Password updated!" msgstr "Kata sandi diganti!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" @@ -2750,15 +2833,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Sematkan ke beranda" @@ -2779,14 +2862,18 @@ msgstr "Putar Video" msgid "Plays the GIF" msgstr "Putar GIF" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Silakan pilih handle Anda." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Masukkan kata sandi Anda." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Harap konfirmasi email Anda sebelum mengubahnya. Ini adalah persyaratan sementara selama alat pembaruan email ditambahkan, dan akan segera dihapus." @@ -2796,22 +2883,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Masukkan nama untuk kata sandi aplikasi Anda. Semua spasi tidak diperbolehkan." #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Masukkan nama unik untuk Kata Sandi Aplikasi ini atau gunakan nama yang dibuat secara acak." #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Masukkan email Anda." @@ -2849,7 +2936,7 @@ msgctxt "action" msgid "Post" msgstr "Posting" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "Posting" @@ -2857,21 +2944,21 @@ msgstr "Posting" #~ msgid "Post" #~ msgstr "Posting" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Postingan oleh {0}" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Postingan dihapus" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "Postingan disembunyikan" @@ -2883,11 +2970,11 @@ msgstr "Bahasa postingan" msgid "Post Languages" msgstr "Bahasa Postingan" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "Postingan tidak ditemukan" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "Postingan" @@ -2911,27 +2998,27 @@ msgstr "Bahasa Utama" msgid "Prioritize Your Follows" msgstr "Prioritaskan Pengikut Anda" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "Privasi" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "Kebijakan Privasi" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "Memproses..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "Profil" @@ -2939,7 +3026,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil diperbarui" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "Amankan akun Anda dengan memverifikasi email Anda." @@ -2999,12 +3086,12 @@ msgstr "Pengguna Direkomendasikan" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Hapus" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Hapus {0} dari daftar feed saya?" @@ -3017,11 +3104,11 @@ msgstr "Hapus akun" msgid "Remove feed" msgstr "Hapus feed" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Hapus dari feed saya" @@ -3037,7 +3124,7 @@ msgstr "Hapus pratinjau gambar" msgid "Remove repost" msgstr "Hapus postingan ulang" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Hapus feed ini dari feed saya?" @@ -3050,8 +3137,8 @@ msgstr "Hapus feed ini dari feed tersimpan Anda?" msgid "Removed from list" msgstr "Dihapus dari daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Dihapus dari feed saya" @@ -3059,7 +3146,7 @@ msgstr "Dihapus dari feed saya" msgid "Removes default thumbnail from {0}" msgstr "Menghapus gambar pra tinjau bawaan dari {0}" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "Balasan" @@ -3072,12 +3159,12 @@ msgctxt "action" msgid "Reply" msgstr "Balas" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Penyaring Balasan" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Balas ke <0/>" @@ -3086,20 +3173,20 @@ msgstr "Balas ke <0/>" msgid "Report {collectionName}" msgstr "Laporkan {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Laporkan Akun" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Laporkan feed" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Laporkan Daftar" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Laporkan postingan" @@ -3128,7 +3215,7 @@ msgstr "Posting ulang atau kutip postingan" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3136,7 +3223,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "Diposting ulang oleh {0})" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Diposting ulang oleh <0/>" @@ -3144,7 +3231,7 @@ msgstr "Diposting ulang oleh <0/>" msgid "reposted your post" msgstr "posting ulang posting Anda" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Posting ulang postingan ini" @@ -3154,19 +3241,19 @@ msgid "Request Change" msgstr "Ajukan Perubahan" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "Memerlukan teks alt sebelum memposting" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Diwajibkan untuk provider ini" @@ -3179,66 +3266,65 @@ msgstr "Kode reset" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "Atur ulang onboarding" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "Reset status onboarding" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "Reset kata sandi" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "Atur ulang preferensi" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "Atur ulang status preferensi" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "Reset status onboarding" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "Reset status preferensi" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "Mencoba masuk kembali" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "Coba kembali tindakan terakhir, yang gagal" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Ulangi" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "Kembali ke halaman sebelumnya" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "SANDBOX. Postingan dan akun tidak bersifat permanen." +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "SANDBOX. Postingan dan akun tidak bersifat permanen." #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3251,7 +3337,7 @@ msgstr "Simpan" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Simpan" @@ -3291,11 +3377,11 @@ msgstr "" msgid "Scroll to top" msgstr "Gulir ke atas" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3303,8 +3389,8 @@ msgstr "Gulir ke atas" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Cari" @@ -3336,8 +3422,8 @@ msgid "Select {item}" msgstr "Pilih {item}" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Pilih Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "Pilih Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3347,8 +3433,8 @@ msgstr "Pilih dari akun yang sudah ada" msgid "Select option {i} of {numItems}" msgstr "Pilih opsi {i} dari {numItems}" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "Pilih layanan" @@ -3356,11 +3442,15 @@ msgstr "Pilih layanan" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3381,8 +3471,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3392,7 +3482,7 @@ msgstr "Pilih bahasa yang disukai untuk penerjemahaan feed Anda." msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3413,8 +3503,8 @@ msgstr "Kirim Email" #~ msgid "Send Email" #~ msgstr "Kirim Email" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "Kirim masukan" @@ -3426,33 +3516,37 @@ msgstr "Kirim Laporan" msgid "Sends email with confirmation code for account deletion" msgstr "Kirim email dengan kode konfirmasi untuk penghapusan akun" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "Tetapkan {value} untuk kebijakan moderasi konten {labelGroup}" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "Tetapkan Usia" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "Atur tema menjadi gelap" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "Atur tema menjadi terang" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "Atur tema warna ke pengaturan sistem" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3460,19 +3554,19 @@ msgstr "" msgid "Set new password" msgstr "Buat kata sandi baru" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "Atur kata sandi" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan postingan dari feed Anda. Posting ulang tetap akan terlihat." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua balasan dari feed Anda." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda." @@ -3481,8 +3575,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk utasan. Ini merupakan fitur eksperimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan Anda pada feed mengikuti. Ini merupakan fitur eksperimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan Anda pada feed mengikuti. Ini merupakan fitur eksperimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3492,11 +3590,11 @@ msgstr "" msgid "Sets Bluesky username" msgstr "Atur nama pengguna Bluesky" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "Atur email untuk pengaturan ulang kata sandi" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "Atur penyedia hosting untuk pengaturan ulang kata sandi" @@ -3504,16 +3602,16 @@ msgstr "Atur penyedia hosting untuk pengaturan ulang kata sandi" #~ msgid "Sets hosting provider to {label}" #~ msgstr "Atur penyedia hosting ke {label}" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "Atur server untuk klien Bluesky" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "Pengaturan" @@ -3526,25 +3624,25 @@ msgctxt "action" msgid "Share" msgstr "Bagikan" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Bagikan" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Bagikan feed" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "Tampilkan" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Tampilkan semua balasan" @@ -3556,21 +3654,21 @@ msgstr "Tetap tampilkan" msgid "Show embeds from {0}" msgstr "Tampilkan embed dari {0}" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Tampilkan berikut ini mirip dengan {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Tampilkan Postingan dari Feed Saya" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Tampilkan Kutipan Postingan" @@ -3586,7 +3684,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Tampilkan Balasan" @@ -3602,11 +3700,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Tampilkan balasan dengan setidaknya {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Tampilkan Posting Ulang" @@ -3623,17 +3721,18 @@ msgstr "Tampilkan konten" msgid "Show users" msgstr "Tampilkan pengguna" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Tampilkan daftar pengguna yang mirip dengan pengguna ini." -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Tampilkan postingan dari {0} di feed Anda" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3646,8 +3745,8 @@ msgid "Sign in" msgstr "Masuk" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Masuk" @@ -3660,14 +3759,14 @@ msgstr "Masuk sebagai {0}" msgid "Sign in as..." msgstr "Masuk sebagai..." -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Masuk ke" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "Keluar" @@ -3691,7 +3790,7 @@ msgstr "Daftar atau masuk untuk bergabung dalam obrolan" msgid "Sign-in Required" msgstr "Dibutuhkan Masuk" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "Masuk sebagai" @@ -3704,7 +3803,7 @@ msgid "Signs {0} out of Bluesky" msgstr "Mengeluarkan {0} dari Bluesky" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "Lewati" @@ -3714,22 +3813,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "Ada yang tidak beres dan kami tidak yakin apa itu." +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Ada yang tidak beres dan kami tidak yakin apa itu." #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "Ada yang tidak beres. Periksa email Anda dan coba lagi." -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi." @@ -3750,10 +3849,10 @@ msgid "Square" msgstr "Persegi" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "Staging" +#~ msgid "Staging" +#~ msgstr "Staging" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "Halaman status" @@ -3765,12 +3864,12 @@ msgstr "" #~ msgid "Step {step} of 3" #~ msgstr "Langkah {step} dari 3" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "Penyimpanan dihapus, Anda perlu memulai ulang aplikasi sekarang." -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "Storybook" @@ -3778,7 +3877,7 @@ msgstr "Storybook" msgid "Submit" msgstr "Kirim" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Langganan" @@ -3787,7 +3886,7 @@ msgstr "Langganan" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Langganan ke daftar ini" @@ -3803,35 +3902,35 @@ msgstr "Disarankan untuk Anda" msgid "Suggestive" msgstr "Sugestif" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Dukungan" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "Geser ke atas untuk melihat lebih banyak" +#~ msgid "Swipe up to see more" +#~ msgstr "Geser ke atas untuk melihat lebih banyak" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "Pindah Akun" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "Beralih ke {0}" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "Mengganti akun yang Anda masuki" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "Log sistem" @@ -3847,14 +3946,14 @@ msgstr "Ketuk untuk melihat sepenuhnya" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Ketentuan" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Ketentuan Layanan" @@ -3863,7 +3962,11 @@ msgstr "Ketentuan Layanan" msgid "Text input field" msgstr "Area input teks" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "Akun ini akan dapat berinteraksi dengan Anda setelah blokir dibuka." @@ -3879,7 +3982,7 @@ msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "Postingan mungkin telah dihapus." @@ -3898,11 +4001,11 @@ msgstr "Formulir dukungan telah dipindahkan. Jika Anda memerlukan bantuan, silak msgid "The Terms of Service have been moved to" msgstr "Ketentuan Layanan telah dipindahkan ke" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." @@ -3910,12 +4013,12 @@ msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet An msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan coba lagi." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Ada masalah saat memperbarui feed Anda, periksa koneksi internet Anda dan coba lagi." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3924,9 +4027,9 @@ msgstr "Ada masalah saat menghubungi server" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Ada masalah saat menghubungi server Anda" @@ -3956,19 +4059,21 @@ msgstr "Ada masalah saat mensinkronkan preferensi Anda dengan server" msgid "There was an issue with fetching your app passwords" msgstr "Ada masalah dengan pengambilan kata sandi aplikasi Anda" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Ada masalah! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi." @@ -3976,13 +4081,13 @@ msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi." msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Sepertinya ada masalah pada aplikasi. Harap beri tahu kami jika Anda mengalaminya!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -4015,13 +4120,17 @@ 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/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak tersedia. Silakan coba lagi nanti." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Feed ini kosong!" @@ -4053,7 +4162,7 @@ msgstr "Daftar ini kosong!" msgid "This name is already in use" msgstr "Nama ini sudah digunakan" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." @@ -4077,12 +4186,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Peringatan ini hanya tersedia untuk postingan dengan lampiran media." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Ini akan menyembunyikan postingan ini dari feed Anda." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "Preferensi Utasan" @@ -4090,7 +4199,7 @@ msgstr "Preferensi Utasan" msgid "Threaded Mode" msgstr "Mode Utasan" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -4102,13 +4211,13 @@ msgstr "Beralih dropdown" msgid "Transformations" msgstr "Transformasi" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Terjemahkan" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "Coba lagi" @@ -4116,34 +4225,34 @@ msgstr "Coba lagi" #~ msgid "Try again" #~ msgstr "Ulangi" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Buka blokir daftar" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Bunyikan daftar" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Buka blokir" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Buka blokir" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Buka blokir Akun" @@ -4159,40 +4268,41 @@ msgctxt "action" msgid "Unfollow" msgstr "Berhenti mengikuti" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Berhenti mengikuti {0}" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "Sayangnya, Anda tidak memenuhi syarat untuk membuat akun." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "Tidak suka" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Bunyikan" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Bunyikan Akun" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Bunyikan utasan" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Lepas sematan" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Lepas sematan daftar moderasi" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Batal simpan" @@ -4235,8 +4345,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "Gunakan ini untuk masuk ke aplikasi lain dengan handle Anda." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "Gunakan domain Anda sebagai penyedia layanan klien Bluesky Anda" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Gunakan domain Anda sebagai penyedia layanan klien Bluesky Anda" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4254,11 +4364,11 @@ msgstr "Pengguna Diblokir oleh Daftar" msgid "User Blocks You" msgstr "Pengguna Memblokir Anda" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Handle pengguna" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Daftar pengguna oleh {0}" @@ -4267,7 +4377,7 @@ msgstr "Daftar pengguna oleh {0}" msgid "User list by <0/>" msgstr "Daftar pengguna oleh<0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4285,8 +4395,8 @@ msgstr "Daftar pengguna diperbarui" msgid "User Lists" msgstr "Daftar Pengguna" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Nama pengguna atau alamat email" @@ -4303,18 +4413,18 @@ msgid "Users in \"{0}\"" msgstr "Pengguna di \"{0}\"" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "Verifikasi email" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "Verifikasi email saya" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "Verifikasi Email Saya" @@ -4331,7 +4441,7 @@ msgstr "Verifikasi Email Anda" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Lihat avatar {0}" @@ -4356,15 +4466,15 @@ msgid "Visit Site" msgstr "Kunjungi Halaman" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "Peringatkan" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4384,7 +4494,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4392,7 +4502,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4404,11 +4514,11 @@ msgstr "Kami akan segera memeriksa permohonan banding Anda." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Kami sangat senang Anda bergabung dengan kami!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Mohon maaf, kami tidak dapat menyelesaikan daftar ini. Jika hal ini terus berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}." @@ -4435,7 +4545,7 @@ msgstr "Apa yang bermasalah dengan {collectionName}?" #~ msgid "What's next?" #~ msgstr "Apa selanjutnya?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "Apa kabar?" @@ -4471,14 +4581,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4488,7 +4598,7 @@ msgstr "Ya" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4522,7 +4632,7 @@ msgstr "Anda belum memiliki kode undangan! Kami akan mengirimkan kode saat Anda msgid "You don't have any pinned feeds." msgstr "Anda tidak memiliki feed yang disematkan." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "Anda tidak memiliki feed yang disimpan!" @@ -4530,7 +4640,7 @@ msgstr "Anda tidak memiliki feed yang disimpan!" msgid "You don't have any saved feeds." msgstr "Anda tidak memiliki feed yang disimpan." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "Anda telah memblokir atau diblokir oleh penulis ini." @@ -4570,7 +4680,7 @@ msgstr "Anda belum membuat kata sandi aplikasi. Anda dapat membuatnya dengan men msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "Anda belum membisukan akun lain. Untuk membisukan akun, kunjungi profil mereka dan pilih \"Bisukan akun\" pada menu di akun mereka." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "Anda harus berusia 18 tahun atau lebih untuk mengaktifkan konten dewasa." @@ -4578,11 +4688,11 @@ msgstr "Anda harus berusia 18 tahun atau lebih untuk mengaktifkan konten dewasa. msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" @@ -4594,9 +4704,9 @@ msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebu msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4608,7 +4718,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Anda telah mencapai akhir feed Anda! Temukan beberapa akun lain untuk diikuti." -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "Akun Anda" @@ -4616,7 +4726,11 @@ msgstr "Akun Anda" msgid "Your account has been deleted" msgstr "Akun Anda telah dihapus" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "Tanggal lahir Anda" @@ -4628,7 +4742,7 @@ msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan." msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4650,7 +4764,7 @@ msgstr "Alamat email Anda belum diverifikasi. Ini merupakan langkah keamanan pen msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat apa yang terjadi." -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Handle lengkap Anda akan menjadi" @@ -4665,8 +4779,8 @@ msgstr "Handle lengkap Anda akan menjadi <0>@{0}" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Kode undangan Anda disembunyikan saat masuk menggunakan Kata Sandi Aplikasi" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Kode undangan Anda disembunyikan saat masuk menggunakan Kata Sandi Aplikasi" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4683,7 +4797,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Postingan, suka, dan blokir Anda bersifat publik. Bisukan bersifat privat." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "Profil Anda" @@ -4691,6 +4805,6 @@ msgstr "Profil Anda" msgid "Your reply has been published" msgstr "Balasan Anda telah dipublikasikan" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Handle Anda" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po new file mode 100644 index 0000000000..bfa796a4fc --- /dev/null +++ b/src/locale/locales/it/messages.po @@ -0,0 +1,4719 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-01-05 11:44+0530\n" +"PO-Revision-Date: \n" +"Last-Translator: Gabriella Nonino \n" +"Language-Team: \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.2\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: src/view/com/modals/VerifyEmail.tsx:142 +msgid "(no email)" +msgstr "(no email)" + +#: src/view/shell/desktop/RightNav.tsx:168 +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# codice d'invito disponibile} other {# codici d'inviti disponibili}}" + +#~ msgid "{0}" +#~ msgstr "{0}" + +#~ msgid "{0} {purposeLabel} List" +#~ msgstr "Llista {purposeLabel} {0}" + +#: src/view/com/profile/ProfileHeader.tsx:593 +msgid "{following} following" +msgstr "{following} seguendo" + +#: src/view/shell/desktop/RightNav.tsx:151 +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Codici d'invito: # available} other {Codici d'invito: # available}}" + +#: src/view/screens/Settings.tsx:NaN +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} codice d'invito disponibile" + +#: src/view/screens/Settings.tsx:NaN +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} codici d'invito disponibili" + +#~ msgid "{message}" +#~ msgstr "{message}" + +#: src/view/shell/Drawer.tsx:440 +msgid "{numUnreadNotifications} unread" +msgstr "{numUnreadNotifications} non letto" + +#: src/view/com/threadgate/WhoCanReply.tsx:158 +msgid "<0/> members" +msgstr "<0/> membri" + +#: src/view/com/profile/ProfileHeader.tsx:595 +msgid "<0>{following} <1>following" +msgstr "<0>{following} <1>seguiti" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:30 +msgid "<0>Choose your<1>Recommended<2>Feeds" +msgstr "<0>Scegli I tuoi<1>feeds<2>consigliati" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:37 +msgid "<0>Follow some<1>Recommended<2>Users" +msgstr "<0>Segui alcuni<1>utenti<2>consigliati" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 +msgid "<0>Welcome to<1>Bluesky" +msgstr "<0>Ti diamo il benvenuto a<1>Bluesky" + +#: src/view/com/profile/ProfileHeader.tsx:558 +msgid "⚠Invalid Handle" +msgstr "⚠Nome utente non valido" + +#: src/view/com/util/moderation/LabelInfo.tsx:45 +msgid "A content warning has been applied to this {0}." +msgstr "A questo post ĆØ stato applicato un avviso di contenuto {0}." + +#: src/lib/hooks/useOTAUpdate.ts:16 +msgid "A new version of the app is available. Please update to continue using the app." +msgstr "ƈ disponibile una nuova versione dell'app. Aggiorna per continuare a utilizzarla." + +#: src/view/com/util/ViewHeader.tsx:83 +#: src/view/screens/Search/Search.tsx:624 +msgid "Access navigation links and settings" +msgstr "Accedi alle impostazioni di navigazione" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 +msgid "Access profile and other navigation links" +msgstr "Accedi al profilo e altre impostazioni di navigazione" + +#: src/view/com/modals/EditImage.tsx:299 +#: src/view/screens/Settings/index.tsx:451 +msgid "Accessibility" +msgstr "AccessibilitĆ " + +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 +msgid "Account" +msgstr "Account" + +#: src/view/com/profile/ProfileHeader.tsx:246 +msgid "Account blocked" +msgstr "Account bloccato" + +#: src/view/com/profile/ProfileHeader.tsx:213 +msgid "Account muted" +msgstr "Account silenziato" + +#: src/view/com/modals/ModerationDetails.tsx:86 +msgid "Account Muted" +msgstr "Account Silenziato" + +#: src/view/com/modals/ModerationDetails.tsx:72 +msgid "Account Muted by List" +msgstr "Account silenziato dalla Lista" + +#: src/view/com/util/AccountDropdownBtn.tsx:41 +msgid "Account options" +msgstr "Opzioni dell'account" + +#: src/view/com/util/AccountDropdownBtn.tsx:25 +msgid "Account removed from quick access" +msgstr "Account rimosso dall'accesso immediato" + +#: src/view/com/profile/ProfileHeader.tsx:268 +msgid "Account unblocked" +msgstr "Account sbloccato" + +#: src/view/com/profile/ProfileHeader.tsx:226 +msgid "Account unmuted" +msgstr "Account non silenziato" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:150 +#: src/view/com/modals/ListAddRemoveUsers.tsx:264 +#: src/view/com/modals/UserAddRemoveLists.tsx:219 +#: src/view/screens/ProfileList.tsx:812 +msgid "Add" +msgstr "Aggiungi" + +#: src/view/com/modals/SelfLabel.tsx:56 +msgid "Add a content warning" +msgstr "Aggiungi un avviso sul contenuto" + +#: src/view/screens/ProfileList.tsx:802 +msgid "Add a user to this list" +msgstr "Aggiungi un utente a questo elenco" + +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 +msgid "Add account" +msgstr "Aggiungi account" + +#: src/view/com/composer/photos/Gallery.tsx:119 +#: src/view/com/composer/photos/Gallery.tsx:180 +#: src/view/com/modals/AltImage.tsx:116 +msgid "Add alt text" +msgstr "Aggiungi testo alternativo" + +#: src/view/screens/AppPasswords.tsx:102 +#: src/view/screens/AppPasswords.tsx:143 +#: src/view/screens/AppPasswords.tsx:156 +msgid "Add App Password" +msgstr "Aggiungi la Password per l'App" + +#: src/view/com/modals/report/InputIssueDetails.tsx:41 +#: src/view/com/modals/report/Modal.tsx:191 +msgid "Add details" +msgstr "Aggiungi i dettagli" + +#: src/view/com/modals/report/Modal.tsx:194 +msgid "Add details to report" +msgstr "Aggiungi dettagli da segnalare" + +#: src/view/com/composer/Composer.tsx:446 +msgid "Add link card" +msgstr "Aggiungi la scheda collegata al link" + +#: src/view/com/composer/Composer.tsx:451 +msgid "Add link card:" +msgstr "Aggiungi la scheda relazionata al link:" + +#: src/view/com/modals/ChangeHandle.tsx:417 +msgid "Add the following DNS record to your domain:" +msgstr "Aggiungi il seguente record DNS al tuo dominio:" + +#: src/view/com/profile/ProfileHeader.tsx:310 +msgid "Add to Lists" +msgstr "Aggiungi alle liste" + +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 +msgid "Add to my feeds" +msgstr "Aggiungi ai miei feed" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 +msgid "Added" +msgstr "Aggiunto" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/UserAddRemoveLists.tsx:144 +msgid "Added to list" +msgstr "Aggiunto alla lista" + +#: src/view/com/feeds/FeedSourceCard.tsx:127 +msgid "Added to my feeds" +msgstr "Aggiunto ai miei feeds" + +#: src/view/screens/PreferencesFollowingFeed.tsx:173 +msgid "Adjust the number of likes a reply must have to be shown in your feed." +msgstr "Modifica il numero Mi Piace che una risposta deve avere per essere mostrata nel tuo feed." + +#: src/view/com/modals/SelfLabel.tsx:75 +msgid "Adult Content" +msgstr "Contenuto per adulti" + +#: src/view/com/modals/ContentFilteringSettings.tsx:141 +msgid "Adult content can only be enabled via the Web at <0/>." +msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0/>." + +#: src/view/screens/Settings/index.tsx:664 +msgid "Advanced" +msgstr "Avanzato" + +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 +#: src/view/com/modals/ChangePassword.tsx:168 +msgid "Already have a code?" +msgstr "" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:98 +msgid "Already signed in as @{0}" +msgstr "GiĆ  effettuato l'accesso come @{0}" + +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "ALT" +msgstr "ALT" + +#: src/view/com/modals/EditImage.tsx:315 +msgid "Alt text" +msgstr "Testo alternativo" + +#: src/view/com/composer/photos/Gallery.tsx:209 +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 e ipovedenti e aiuta a fornire un contesto a tutti." + +#: src/view/com/modals/VerifyEmail.tsx:124 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "ƈ stata inviata un'e-mail a {0}. Include un codice di conferma che puoi inserire di seguito." + +#: src/view/com/modals/ChangeEmail.tsx:119 +msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." +msgstr "Una email ĆØ stata inviata al tuo indirizzo precedente, {0}. Include un codice di conferma che puoi inserire di seguito." + +#: src/view/com/profile/FollowButton.tsx:30 +#: src/view/com/profile/FollowButton.tsx:40 +msgid "An issue occurred, please try again." +msgstr "Si ĆØ verificato un problema, riprova un'altra volta." + +#: src/view/com/notifications/FeedItem.tsx:236 +#: src/view/com/threadgate/WhoCanReply.tsx:178 +msgid "and" +msgstr "e" + +#: src/screens/Onboarding/index.tsx:32 +msgid "Animals" +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:95 +msgid "App Language" +msgstr "Lingua dell'app" + +#: src/view/screens/AppPasswords.tsx:228 +msgid "App password deleted" +msgstr "Password dell'app eliminata" + +#: src/view/com/modals/AddAppPasswords.tsx:134 +msgid "App Password names can only contain letters, numbers, spaces, dashes, and underscores." +msgstr "Le password per le app possono contenere solo lettere, numeri, spazi, trattini e trattini bassi." + +#: src/view/com/modals/AddAppPasswords.tsx:99 +msgid "App Password names must be at least 4 characters long." +msgstr "I nomi delle password delle app devono contenere almeno 4 caratteri." + +#: src/view/screens/Settings/index.tsx:675 +msgid "App password settings" +msgstr "Impostazioni della password dell'app" + +#: src/view/screens/Settings.tsx:650 +#~ msgid "App passwords" +#~ msgstr "Passwords dell'app" + +#: src/Navigation.tsx:237 +#: src/view/screens/AppPasswords.tsx:187 +#: src/view/screens/Settings/index.tsx:684 +msgid "App Passwords" +msgstr "Passwords dell'App" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +msgid "Appeal content warning" +msgstr "Ricorso contro l'avviso sui contenuti" + +#: src/view/com/modals/AppealLabel.tsx:65 +msgid "Appeal Content Warning" +msgstr "Ricorso contro l'Avviso sui Contenuti" + +#~ msgid "Appeal Decision" +#~ msgstr "Decisión de apelación" + +#: src/view/com/util/moderation/LabelInfo.tsx:52 +msgid "Appeal this decision" +msgstr "Appella contro questa decisione" + +#: src/view/com/util/moderation/LabelInfo.tsx:56 +msgid "Appeal this decision." +msgstr "Appella contro questa decisione." + +#: src/view/screens/Settings/index.tsx:466 +msgid "Appearance" +msgstr "Aspetto" + +#: src/view/screens/AppPasswords.tsx:224 +msgid "Are you sure you want to delete the app password \"{name}\"?" +msgstr "Conferma di voler eliminare la password dell'app \"{name}\"?" + +#: src/view/com/composer/Composer.tsx:143 +msgid "Are you sure you'd like to discard this draft?" +msgstr "Conferma di voler eliminare questa bozza?" + +#: src/view/screens/ProfileList.tsx:365 +msgid "Are you sure?" +msgstr "Confermi?" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 +msgid "Are you sure? This cannot be undone." +msgstr "Vuoi proseguire? Questa operazione non può essere annullata." + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 +msgid "Are you writing in <0>{0}?" +msgstr "Stai scrivendo in <0>{0}?" + +#: src/screens/Onboarding/index.tsx:26 +msgid "Art" +msgstr "" + +#: src/view/com/modals/SelfLabel.tsx:123 +msgid "Artistic or non-erotic nudity." +msgstr "NuditĆ  artistica o non erotica." + +#: src/view/com/auth/create/CreateAccount.tsx:158 +#: src/view/com/auth/login/ChooseAccountForm.tsx:151 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:179 +#: src/view/com/modals/report/InputIssueDetails.tsx:46 +#: src/view/com/post-thread/PostThread.tsx:471 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 +#: src/view/com/util/ViewHeader.tsx:81 +msgid "Back" +msgstr "Indietro" + +#: src/view/com/post-thread/PostThread.tsx:479 +msgctxt "action" +msgid "Back" +msgstr "Indietro" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 +msgid "Based on your interest in {interestsText}" +msgstr "" + +#: src/view/screens/Settings/index.tsx:523 +msgid "Basics" +msgstr "Nozioni di base" + +#: src/view/com/auth/create/Step1.tsx:250 +#: src/view/com/modals/BirthDateSettings.tsx:73 +msgid "Birthday" +msgstr "Compleanno" + +#: src/view/screens/Settings/index.tsx:340 +msgid "Birthday:" +msgstr "Compleanno:" + +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 +msgid "Block Account" +msgstr "Blocca l'account" + +#: src/view/screens/ProfileList.tsx:556 +msgid "Block accounts" +msgstr "Blocca gli accounts" + +#: src/view/screens/ProfileList.tsx:506 +msgid "Block list" +msgstr "Lista di blocchi" + +#: src/view/screens/ProfileList.tsx:316 +msgid "Block these accounts?" +msgstr "Vuoi bloccare questi accounts?" + +#: src/view/screens/ProfileList.tsx:320 +msgid "Block this List" +msgstr "Blocca questa Lista" + +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 +msgid "Blocked" +msgstr "Bloccato" + +#: src/view/screens/Moderation.tsx:123 +msgid "Blocked accounts" +msgstr "Accounts bloccati" + +#: src/Navigation.tsx:130 +#: src/view/screens/ModerationBlockedAccounts.tsx:107 +msgid "Blocked Accounts" +msgstr "Accounts bloccati" + +#: src/view/com/profile/ProfileHeader.tsx:241 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "Gli account bloccati non possono rispondere nelle tue discussioni, menzionarti o interagire in nessun altro modo con te." + +#: src/view/screens/ModerationBlockedAccounts.tsx:115 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "Gli account bloccati non possono rispondere nelle tue discussioni, menzionarti in nessun altro modo con te. Non vedrai il loro contenuto e non vedranno il tuo.." + +#: src/view/com/post-thread/PostThread.tsx:324 +msgid "Blocked post." +msgstr "Post bloccato." + +#: src/view/screens/ProfileList.tsx:318 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "Il blocco ĆØ pubblico. Gli accounts bloccati non possono rispondere nelle tue discussioni, menzionarti o interagire con te in nessun altro modo." + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 +msgid "Blog" +msgstr "Blog" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 +msgid "Bluesky" +msgstr "Bluesky" + +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 +msgid "Bluesky is flexible." +msgstr "Bluesky ĆØ flessibile." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:69 +msgid "Bluesky is open." +msgstr "Bluesky ĆØ aperto." + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:56 +msgid "Bluesky is public." +msgstr "Bluesky ĆØ pubblico." + +#: src/view/com/modals/Waitlist.tsx:70 +msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." +msgstr "Bluesky utilizza gli inviti per costruire una comunitĆ  più sana. Se non conosci nessuno con un invito, puoi iscriverti alla lista d'attesa e te ne invieremo uno al più presto." + +#: src/view/screens/Moderation.tsx:226 +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 disconnessi. Altre app potrebbero non rispettare questa richiesta. Questo non rende il tuo account privato." + +#: src/view/com/modals/ServerInput.tsx:78 +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" + +#: src/screens/Onboarding/index.tsx:33 +msgid "Books" +msgstr "" + +#: src/view/screens/Settings/index.tsx:859 +msgid "Build version {0} {1}" +msgstr "Versione {0} {1}" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 +msgid "Business" +msgstr "AttivitĆ  commerciale" + +#: src/view/com/modals/ServerInput.tsx:115 +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "Pulsante disabilitato. Inserisci il dominio personalizzato per procedere." + +#: src/view/com/profile/ProfileSubpageHeader.tsx:157 +msgid "by —" +msgstr "da—" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 +msgid "by {0}" +msgstr "da {0}" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:161 +msgid "by <0/>" +msgstr "da <0/>" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:159 +msgid "by you" +msgstr "da te" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:60 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 +msgid "Camera" +msgstr "Fotocamera" + +#: src/view/com/modals/AddAppPasswords.tsx:216 +msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." +msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. Deve contenere almeno 4 caratteri, ma non più di 32 caratteri." + +#: src/components/Prompt.tsx:91 +#: src/view/com/composer/Composer.tsx:300 +#: src/view/com/composer/Composer.tsx:305 +#: src/view/com/modals/ChangeEmail.tsx:218 +#: src/view/com/modals/ChangeEmail.tsx:220 +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:268 +#: src/view/com/modals/CreateOrEditList.tsx:355 +#: src/view/com/modals/EditImage.tsx:323 +#: src/view/com/modals/EditProfile.tsx:249 +#: src/view/com/modals/InAppBrowserConsent.tsx:78 +#: src/view/com/modals/LinkWarning.tsx:87 +#: src/view/com/modals/Repost.tsx:87 +#: src/view/com/modals/VerifyEmail.tsx:247 +#: src/view/com/modals/VerifyEmail.tsx:253 +#: src/view/com/modals/Waitlist.tsx:142 +#: src/view/screens/Search/Search.tsx:693 +#: src/view/shell/desktop/Search.tsx:238 +msgid "Cancel" +msgstr "Cancella" + +#: src/view/com/modals/Confirm.tsx:88 +#: src/view/com/modals/Confirm.tsx:91 +#: src/view/com/modals/CreateOrEditList.tsx:360 +#: src/view/com/modals/DeleteAccount.tsx:156 +#: src/view/com/modals/DeleteAccount.tsx:234 +msgctxt "action" +msgid "Cancel" +msgstr "Cancella" + +#: src/view/com/modals/DeleteAccount.tsx:152 +#: src/view/com/modals/DeleteAccount.tsx:230 +msgid "Cancel account deletion" +msgstr "Annulla la cancellazione dell'account" + +#~ msgid "Cancel add image alt text" +#~ msgstr "CancelĀ·la afegir text a la imatge" + +#: src/view/com/modals/ChangeHandle.tsx:149 +msgid "Cancel change handle" +msgstr "Annulla il cambio del tuo nome utente" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:134 +msgid "Cancel image crop" +msgstr "Annulla il ritaglio dell'immagine" + +#: src/view/com/modals/EditProfile.tsx:244 +msgid "Cancel profile editing" +msgstr "Annulla la modifica del profilo" + +#: src/view/com/modals/Repost.tsx:78 +msgid "Cancel quote post" +msgstr "Annnulla la citazione del post" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:87 +#: src/view/shell/desktop/Search.tsx:234 +msgid "Cancel search" +msgstr "Annulla la ricerca" + +#: src/view/com/modals/Waitlist.tsx:136 +msgid "Cancel waitlist signup" +msgstr "Annulla l'iscrizione alla lista d'attesa" + +#: src/view/screens/Settings/index.tsx:334 +msgctxt "action" +msgid "Change" +msgstr "Cambia" + +#~ msgid "Change" +#~ msgstr "Canvia" + +#: src/view/screens/Settings/index.tsx:696 +msgid "Change handle" +msgstr "Cambia il nome utente" + +#: src/view/com/modals/ChangeHandle.tsx:161 +#: src/view/screens/Settings/index.tsx:705 +msgid "Change Handle" +msgstr "Cambia il Nome Utente" + +#: src/view/com/modals/VerifyEmail.tsx:147 +msgid "Change my email" +msgstr "Cambia la mia email" + +#: src/view/screens/Settings/index.tsx:732 +msgid "Change password" +msgstr "" + +#: src/view/screens/Settings/index.tsx:741 +msgid "Change Password" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 +msgid "Change post language to {0}" +msgstr "Cambia la lingua del post a {0}" + +#: src/view/screens/Settings/index.tsx:733 +msgid "Change your Bluesky password" +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:109 +msgid "Change Your Email" +msgstr "Cambia la tua email" + +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 +msgid "Check my status" +msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:121 +msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." +msgstr "Dai un'occhiata ad alcuni feed consigliati. Clicca + per aggiungerli al tuo elenco dei feeds." + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:185 +msgid "Check out some recommended users. Follow them to see similar users." +msgstr "Scopri alcuni utenti consigliati. Seguili per vedere utenti simili." + +#: src/view/com/modals/DeleteAccount.tsx:169 +msgid "Check your inbox for an email with the confirmation code to enter below:" +msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'e-mail con il codice di conferma da inserire di seguito:" + +#: src/view/com/modals/Threadgate.tsx:72 +msgid "Choose \"Everybody\" or \"Nobody\"" +msgstr "Scegli \"Tutti\" o \"Nessuno\"" + +#: src/view/screens/Settings/index.tsx:697 +msgid "Choose a new Bluesky username or create" +msgstr "Scegli un nuovo nome utente Bluesky o creane uno" + +#: src/view/com/auth/server-input/index.tsx:79 +msgid "Choose Service" +msgstr "Scegli il servizio" + +#: src/screens/Onboarding/StepFinished.tsx:135 +msgid "Choose the algorithms that power your custom feeds." +msgstr "" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:83 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:83 +msgid "Choose the algorithms that power your experience with custom feeds." +msgstr "Scegli gli algoritmi che alimentano la tua esperienza con feed personalizzati." + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:103 +msgid "Choose your main feeds" +msgstr "" + +#: src/view/com/auth/create/Step1.tsx:219 +msgid "Choose your password" +msgstr "Scegli la tua password" + +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 +msgid "Clear all legacy storage data" +msgstr "Cancella tutti i dati legacy in archivio" + +#: src/view/screens/Settings/index.tsx:837 +msgid "Clear all legacy storage data (restart after this)" +msgstr "Cancella tutti i dati legacy in archivio (poi ricomincia)" + +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 +msgid "Clear all storage data" +msgstr "Cancella tutti i dati in archivio" + +#: src/view/screens/Settings/index.tsx:849 +msgid "Clear all storage data (restart after this)" +msgstr "Cancella tutti i dati in archivio (poi ricomincia)" + +#: src/view/com/util/forms/SearchInput.tsx:88 +#: src/view/screens/Search/Search.tsx:674 +msgid "Clear search query" +msgstr "Annulla la ricerca" + +#: src/view/screens/Support.tsx:40 +msgid "click here" +msgstr "clicca qui" + +#: src/screens/Onboarding/index.tsx:35 +msgid "Climate" +msgstr "" + +#: src/view/com/modals/ChangePassword.tsx:265 +#: src/view/com/modals/ChangePassword.tsx:268 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 +msgid "Close active dialog" +msgstr "Chiudi il dialogo attivo" + +#: src/view/com/auth/login/PasswordUpdatedForm.tsx:38 +msgid "Close alert" +msgstr "Chiudi l'avviso" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:33 +msgid "Close bottom drawer" +msgstr "Chiudi il bottom drawer" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:26 +msgid "Close image" +msgstr "Chiudi l'immagine" + +#: src/view/com/lightbox/Lightbox.web.tsx:119 +msgid "Close image viewer" +msgstr "Chiudi il visualizzatore di immagini" + +#: src/view/shell/index.web.tsx:49 +msgid "Close navigation footer" +msgstr "Chiudi la navigazione del footer" + +#: src/view/shell/index.web.tsx:50 +msgid "Closes bottom navigation bar" +msgstr "Chiude la barra di navigazione in basso" + +#: src/view/com/auth/login/PasswordUpdatedForm.tsx:39 +msgid "Closes password update alert" +msgstr "Chiude l'avviso di aggiornamento della password" + +#: src/view/com/composer/Composer.tsx:302 +msgid "Closes post composer and discards post draft" +msgstr "Chiude l'editore del post ed elimina la bozza del post" + +#: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:27 +msgid "Closes viewer for header image" +msgstr "Chiude il visualizzatore dell'immagine di intestazione" + +#: src/view/com/notifications/FeedItem.tsx:317 +msgid "Collapses list of users for a given notification" +msgstr "Comprime l'elenco degli utenti per una determinata notifica" + +#: src/screens/Onboarding/index.tsx:41 +msgid "Comedy" +msgstr "" + +#: src/screens/Onboarding/index.tsx:27 +msgid "Comics" +msgstr "" + +#: src/Navigation.tsx:227 +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "Community Guidelines" +msgstr "Linee guida della community" + +#: src/screens/Onboarding/StepFinished.tsx:148 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + +#: src/view/com/composer/Composer.tsx:417 +msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" +msgstr "Componi un post fino a {MAX_GRAPHEME_LENGTH} caratteri" + +#: src/view/com/composer/Prompt.tsx:24 +msgid "Compose reply" +msgstr "Scrivi la risposta" + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:67 +msgid "Configure content filtering setting for category: {0}" +msgstr "" + +#: src/components/Prompt.tsx:113 +#: src/view/com/modals/AppealLabel.tsx:98 +#: src/view/com/modals/SelfLabel.tsx:154 +#: src/view/com/modals/VerifyEmail.tsx:231 +#: src/view/com/modals/VerifyEmail.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 +#: src/view/screens/PreferencesThreads.tsx:159 +msgid "Confirm" +msgstr "Conferma" + +#: src/view/com/modals/Confirm.tsx:75 +#: src/view/com/modals/Confirm.tsx:78 +msgctxt "action" +msgid "Confirm" +msgstr "Conferma" + +#: src/view/com/modals/ChangeEmail.tsx:193 +#: src/view/com/modals/ChangeEmail.tsx:195 +msgid "Confirm Change" +msgstr "Conferma il cambio" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:34 +msgid "Confirm content language settings" +msgstr "Conferma le impostazioni della lingua del contenuto" + +#: src/view/com/modals/DeleteAccount.tsx:220 +msgid "Confirm delete account" +msgstr "Conferma l'eliminazione dell'account" + +#: src/view/com/modals/ContentFilteringSettings.tsx:156 +msgid "Confirm your age to enable adult content." +msgstr "Conferma la tua etĆ  per abilitare i contenuti per adulti." + +#: src/view/com/modals/ChangeEmail.tsx:157 +#: src/view/com/modals/DeleteAccount.tsx:182 +#: src/view/com/modals/VerifyEmail.tsx:165 +msgid "Confirmation code" +msgstr "Codice di conferma" + +#: src/view/com/modals/Waitlist.tsx:120 +msgid "Confirms signing up {email} to the waitlist" +msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" + +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 +msgid "Connecting..." +msgstr "Connessione in corso..." + +#: src/view/com/auth/create/CreateAccount.tsx:213 +msgid "Contact support" +msgstr "Contatta il supporto" + +#: src/view/screens/Moderation.tsx:81 +msgid "Content filtering" +msgstr "Filtro dei contenuti" + +#: src/view/com/modals/ContentFilteringSettings.tsx:44 +msgid "Content Filtering" +msgstr "Filtro dei Contenuti" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74 +#: src/view/screens/LanguageSettings.tsx:278 +msgid "Content Languages" +msgstr "Lingue dei contenuti" + +#: src/view/com/modals/ModerationDetails.tsx:65 +msgid "Content Not Available" +msgstr "Contenuto non disponibile" + +#: src/view/com/modals/ModerationDetails.tsx:33 +#: src/view/com/util/moderation/ScreenHider.tsx:78 +msgid "Content Warning" +msgstr "Avviso sul Contenuto" + +#: src/view/com/composer/labels/LabelsBtn.tsx:31 +msgid "Content warnings" +msgstr "Avviso sui contenuti" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 +#: src/screens/Onboarding/StepFollowingFeed.tsx:153 +#: src/screens/Onboarding/StepInterests/index.tsx:248 +#: src/screens/Onboarding/StepModeration/index.tsx:118 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 +msgid "Continue" +msgstr "Continua" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:150 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepModeration/index.tsx:115 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 +msgid "Continue to the next step" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +msgid "Continue to the next step without following any accounts" +msgstr "" + +#: src/screens/Onboarding/index.tsx:44 +msgid "Cooking" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:195 +#: src/view/com/modals/InviteCodes.tsx:182 +msgid "Copied" +msgstr "Copiato" + +#: src/view/screens/Settings/index.tsx:241 +msgid "Copied build version to clipboard" +msgstr "Versione di build copiata nella clipboard" + +#: src/view/com/modals/AddAppPasswords.tsx:76 +#: src/view/com/modals/InviteCodes.tsx:152 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 +msgid "Copied to clipboard" +msgstr "Copiato nel clipboard" + +#: src/view/com/modals/AddAppPasswords.tsx:189 +msgid "Copies app password" +msgstr "Copia la password dell'app" + +#: src/view/com/modals/AddAppPasswords.tsx:188 +msgid "Copy" +msgstr "Copia" + +#: src/view/screens/ProfileList.tsx:418 +msgid "Copy link to list" +msgstr "Copia il link alla lista" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +msgid "Copy link to post" +msgstr "Copia il link al post" + +#: src/view/com/profile/ProfileHeader.tsx:295 +msgid "Copy link to profile" +msgstr "Copia il link al profilo" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 +msgid "Copy post text" +msgstr "Copia il testo del post" + +#: src/Navigation.tsx:232 +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "Copyright Policy" +msgstr "Politica sul diritto d'autore" + +#: src/view/screens/ProfileFeed.tsx:97 +msgid "Could not load feed" +msgstr "Feed non caricato" + +#: src/view/screens/ProfileList.tsx:888 +msgid "Could not load list" +msgstr "No si ĆØ potuto caricare la lista" + +#: src/view/com/auth/create/Step2.tsx:91 +#~ msgid "Country" +#~ msgstr "Paese" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:62 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 +msgid "Create a new account" +msgstr "Crea un nuovo account" + +#: src/view/screens/Settings/index.tsx:384 +msgid "Create a new Bluesky account" +msgstr "Crea un nuovo Bluesky account" + +#: src/view/com/auth/create/CreateAccount.tsx:133 +msgid "Create Account" +msgstr "Crea un account" + +#: src/view/com/modals/AddAppPasswords.tsx:226 +msgid "Create App Password" +msgstr "Crea un password per l'app" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:68 +msgid "Create new account" +msgstr "Crea un nuovo account" + +#: src/view/screens/AppPasswords.tsx:249 +msgid "Created {0}" +msgstr "Creato {0}" + +#: src/view/screens/ProfileFeed.tsx:616 +msgid "Created by <0/>" +msgstr "Creato da <0/>" + +#: src/view/screens/ProfileFeed.tsx:614 +msgid "Created by you" +msgstr "Creato da te" + +#: src/view/com/composer/Composer.tsx:448 +msgid "Creates a card with a thumbnail. The card links to {url}" +msgstr "Crea una scheda con una miniatura. La scheda si collega a {url}" + +#: src/screens/Onboarding/index.tsx:29 +msgid "Culture" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:389 +msgid "Custom domain" +msgstr "Dominio personalizzato" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 +msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." +msgstr "" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:55 +msgid "Customize media from external sites." +msgstr "Personalizza i media da i siti esterni." + +#: src/view/screens/Settings.tsx:687 +#~ msgid "Danger Zone" +#~ msgstr "Zona di Pericolo" + +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 +msgid "Dark" +msgstr "Scuro" + +#: src/view/screens/Debug.tsx:63 +msgid "Dark mode" +msgstr "Aspetto scuro" + +#: src/view/screens/Settings/index.tsx:498 +msgid "Dark Theme" +msgstr "" + +#: src/view/screens/Debug.tsx:83 +msgid "Debug panel" +msgstr "Pannello per il debug" + +#: src/view/screens/Settings/index.tsx:772 +msgid "Delete account" +msgstr "Eliminare l'account" + +#: src/view/com/modals/DeleteAccount.tsx:87 +msgid "Delete Account" +msgstr "Eliminare l'Account" + +#: src/view/screens/AppPasswords.tsx:222 +#: src/view/screens/AppPasswords.tsx:242 +msgid "Delete app password" +msgstr "Elimina la password dell'app" + +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 +msgid "Delete List" +msgstr "Elimina la lista" + +#: src/view/com/modals/DeleteAccount.tsx:223 +msgid "Delete my account" +msgstr "Cancella il mio account" + +#: src/view/screens/Settings.tsx:706 +#~ msgid "Delete my account…" +#~ msgstr "Cancella il mio account…" + +#: src/view/screens/Settings/index.tsx:784 +msgid "Delete My Account…" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 +msgid "Delete post" +msgstr "Elimina il post" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 +msgid "Delete this post?" +msgstr "Elimina questo post?" + +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 +msgid "Deleted" +msgstr "Eliminato" + +#: src/view/com/post-thread/PostThread.tsx:316 +msgid "Deleted post." +msgstr "Post eliminato." + +#: src/view/com/modals/CreateOrEditList.tsx:300 +#: src/view/com/modals/CreateOrEditList.tsx:321 +#: src/view/com/modals/EditProfile.tsx:198 +#: src/view/com/modals/EditProfile.tsx:210 +msgid "Description" +msgstr "Descrizione" + +#~ msgid "Dev Server" +#~ msgstr "Servidor de desenvolupament" + +#: src/view/screens/Settings.tsx:711 +#~ msgid "Developer Tools" +#~ msgstr "Strumenti per sviluppatori" + +#: src/view/com/composer/Composer.tsx:211 +msgid "Did you want to say anything?" +msgstr "Volevi dire qualcosa?" + +#: src/view/screens/Settings/index.tsx:504 +msgid "Dim" +msgstr "" + +#: src/view/com/composer/Composer.tsx:144 +msgid "Discard" +msgstr "Scartare" + +#: src/view/com/composer/Composer.tsx:138 +msgid "Discard draft" +msgstr "Scarta la bozza" + +#: src/view/screens/Moderation.tsx:207 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" + +#: src/view/com/posts/FollowingEmptyState.tsx:74 +#: src/view/com/posts/FollowingEndOfFeed.tsx:75 +msgid "Discover new custom feeds" +msgstr "Scopri nuovi feed personalizzati" + +#: src/view/screens/Feeds.tsx:409 +#~ msgid "Discover new feeds" +#~ msgstr "Scopri nuovi feeds" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" + +#: src/view/com/modals/EditProfile.tsx:192 +msgid "Display name" +msgstr "Nome visualizzato" + +#: src/view/com/modals/EditProfile.tsx:180 +msgid "Display Name" +msgstr "Nome Visualizzato" + +#: src/view/com/modals/ChangeHandle.tsx:487 +msgid "Domain verified!" +msgstr "Dominio verificato!" + +#: src/view/com/auth/create/Step1.tsx:170 +msgid "Don't have an invite code?" +msgstr "Non hai un codice di invito?" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:86 +#: src/view/com/modals/EditImage.tsx:333 +#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/SelfLabel.tsx:157 +#: src/view/com/modals/Threadgate.tsx:129 +#: src/view/com/modals/Threadgate.tsx:132 +#: src/view/com/modals/UserAddRemoveLists.tsx:95 +#: src/view/com/modals/UserAddRemoveLists.tsx:98 +#: src/view/screens/PreferencesThreads.tsx:162 +msgctxt "action" +msgid "Done" +msgstr "Fatto" + +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 +#: src/view/com/modals/AddAppPasswords.tsx:226 +#: src/view/com/modals/AltImage.tsx:139 +#: src/view/com/modals/ContentFilteringSettings.tsx:88 +#: src/view/com/modals/ContentFilteringSettings.tsx:96 +#: src/view/com/modals/crop-image/CropImage.web.tsx:152 +#: src/view/com/modals/InviteCodes.tsx:80 +#: src/view/com/modals/InviteCodes.tsx:123 +#: src/view/com/modals/ListAddRemoveUsers.tsx:142 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 +msgid "Done" +msgstr "Fatto" + +#: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:42 +msgid "Done{extraText}" +msgstr "Fatto{extraText}" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:45 +msgid "Double tap to sign in" +msgstr "Usa il doppio tocco per accedere" + +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 +msgid "Drop to add images" +msgstr "" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:111 +msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." +msgstr "" + +#: src/view/com/modals/EditProfile.tsx:185 +msgid "e.g. Alice Roberts" +msgstr "e.g. Anna Rossi" + +#: src/view/com/modals/EditProfile.tsx:203 +msgid "e.g. Artist, dog-lover, and avid reader." +msgstr "e.g. Artista, amo i gatti, mi piace leggere." + +#: src/view/com/modals/CreateOrEditList.tsx:283 +msgid "e.g. Great Posters" +msgstr "e.g. Gli utenti più seguiti" + +#: src/view/com/modals/CreateOrEditList.tsx:284 +msgid "e.g. Spammers" +msgstr "e.g. Spammers" + +#: src/view/com/modals/CreateOrEditList.tsx:312 +msgid "e.g. The posters who never miss." +msgstr "e.g. Utenti più prolifici." + +#: src/view/com/modals/CreateOrEditList.tsx:313 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "e.g. Utenti che rispondono ripetutamente con annunci." + +#: src/view/com/modals/InviteCodes.tsx:96 +msgid "Each code works once. You'll receive more invite codes periodically." +msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito." + +#: src/view/com/lists/ListMembers.tsx:149 +msgctxt "action" +msgid "Edit" +msgstr "Modifica" + +#: src/view/com/composer/photos/Gallery.tsx:144 +#: src/view/com/modals/EditImage.tsx:207 +msgid "Edit image" +msgstr "Modifica l'immagine" + +#: src/view/screens/ProfileList.tsx:433 +msgid "Edit list details" +msgstr "Modifica i dettagli della lista" + +#: src/view/com/modals/CreateOrEditList.tsx:250 +msgid "Edit Moderation List" +msgstr "Modifica l'elenco di moderazione" + +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 +#: src/view/screens/SavedFeeds.tsx:84 +msgid "Edit My Feeds" +msgstr "Modifica i miei feeds" + +#: src/view/com/modals/EditProfile.tsx:152 +msgid "Edit my profile" +msgstr "Modifica il mio profilo" + +#: src/view/com/profile/ProfileHeader.tsx:418 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: src/view/com/profile/ProfileHeader.tsx:423 +msgid "Edit Profile" +msgstr "Modifica il Profilo" + +#: src/view/screens/Feeds.tsx:355 +msgid "Edit Saved Feeds" +msgstr "Modifica i feeds memorizzati" + +#: src/view/com/modals/CreateOrEditList.tsx:245 +msgid "Edit User List" +msgstr "Modifica l'elenco degli utenti" + +#: src/view/com/modals/EditProfile.tsx:193 +msgid "Edit your display name" +msgstr "Modifica il tuo nome visualizzato" + +#: src/view/com/modals/EditProfile.tsx:211 +msgid "Edit your profile description" +msgstr "Modifica la descrizione del tuo profilo" + +#: src/screens/Onboarding/index.tsx:34 +msgid "Education" +msgstr "" + +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 +#: src/view/com/modals/ChangeEmail.tsx:141 +#: src/view/com/modals/Waitlist.tsx:88 +msgid "Email" +msgstr "Email" + +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 +msgid "Email address" +msgstr "Indirizzo email" + +#: src/view/com/modals/ChangeEmail.tsx:56 +#: src/view/com/modals/ChangeEmail.tsx:88 +msgid "Email updated" +msgstr "Email aggiornata" + +#: src/view/com/modals/ChangeEmail.tsx:111 +msgid "Email Updated" +msgstr "Email Aggiornata" + +#: src/view/com/modals/VerifyEmail.tsx:78 +msgid "Email verified" +msgstr "Email verificata" + +#: src/view/screens/Settings/index.tsx:312 +msgid "Email:" +msgstr "Email:" + +#: src/view/com/modals/EmbedConsent.tsx:113 +msgid "Enable {0} only" +msgstr "Attiva {0} solo" + +#: src/view/com/modals/ContentFilteringSettings.tsx:167 +msgid "Enable Adult Content" +msgstr "Attiva Contenuto per Adulti" + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:76 +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:77 +msgid "Enable adult content in your feeds" +msgstr "" + +#: src/view/com/modals/EmbedConsent.tsx:97 +msgid "Enable External Media" +msgstr "Attiva Media Esterna" + +#: src/view/screens/PreferencesExternalEmbeds.tsx:75 +msgid "Enable media players for" +msgstr "Attiva i lettori multimediali per" + +#: src/view/screens/PreferencesFollowingFeed.tsx:147 +msgid "Enable this setting to only see replies between people you follow." +msgstr "Abilita questa impostazione per vedere solo le risposte delle persone che segui." + +#: src/view/screens/Profile.tsx:455 +msgid "End of feed" +msgstr "Fine del feed" + +#: src/view/com/modals/AddAppPasswords.tsx:166 +msgid "Enter a name for this App Password" +msgstr "Inserisci un nome per questa password dell'app" + +#: src/view/com/modals/VerifyEmail.tsx:105 +msgid "Enter Confirmation Code" +msgstr "Inserire il codice di conferma" + +#~ msgid "Enter the address of your provider:" +#~ msgstr "Introdueix l'adreƧa del teu proveĆÆdor:" + +#: src/view/com/modals/ChangePassword.tsx:151 +msgid "Enter the code you received to change your password." +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:371 +msgid "Enter the domain you want to use" +msgstr "Inserisci il dominio che vuoi utilizzare" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 +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 "Inserisci l'e-mail che hai utilizzato per creare il tuo account. Ti invieremo un \"codice di reset\" in modo che tu possa impostare una nuova password." + +#: src/view/com/auth/create/Step1.tsx:251 +#: src/view/com/modals/BirthDateSettings.tsx:74 +msgid "Enter your birth date" +msgstr "Inserisci la tua data di nascita" + +#: src/view/com/modals/Waitlist.tsx:78 +msgid "Enter your email" +msgstr "Inserisci la tua email" + +#: src/view/com/auth/create/Step1.tsx:195 +msgid "Enter your email address" +msgstr "Inserisci il tuo indirizzo email" + +#: src/view/com/modals/ChangeEmail.tsx:41 +msgid "Enter your new email above" +msgstr "Inserisci la tua nuova email qui sopra" + +#: src/view/com/modals/ChangeEmail.tsx:117 +msgid "Enter your new email address below." +msgstr "Inserisci il tuo nuovo indirizzo email qui sotto." + +#: src/view/com/auth/create/Step2.tsx:188 +#~ msgid "Enter your phone number" +#~ msgstr "Inserisci il tuo numero di telefono" + +#: src/view/com/auth/login/Login.tsx:99 +msgid "Enter your username and password" +msgstr "Inserisci il tuo nome di utente e la tua password" + +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + +#: src/view/screens/Search/Search.tsx:109 +msgid "Error:" +msgstr "Errore:" + +#: src/view/com/modals/Threadgate.tsx:76 +msgid "Everybody" +msgstr "Tutti" + +#: src/view/com/modals/ChangeHandle.tsx:150 +msgid "Exits handle change process" +msgstr "Uscita dal processo di modifica" + +#: src/view/com/lightbox/Lightbox.web.tsx:120 +msgid "Exits image view" +msgstr "Uscita dalla visualizzazione dell'immagine" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:235 +msgid "Exits inputting search query" +msgstr "Uscita dall'inserzione della domanda di ricerca" + +#: src/view/com/modals/Waitlist.tsx:138 +msgid "Exits signing up for waitlist with {email}" +msgstr "Uscita dall'iscrizione alla lista d'attesa con {email}" + +#: src/view/com/lightbox/Lightbox.web.tsx:163 +msgid "Expand alt text" +msgstr "Ampliare il testo alternativo" + +#: src/view/com/composer/ComposerReplyTo.tsx:81 +#: src/view/com/composer/ComposerReplyTo.tsx:84 +msgid "Expand or collapse the full post you are replying to" +msgstr "Espandi o comprimi l'intero post a cui stai rispondendo" + +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + +#: src/view/com/modals/EmbedConsent.tsx:64 +msgid "External Media" +msgstr "Media esterni" + +#: src/view/com/modals/EmbedConsent.tsx:75 +#: src/view/screens/PreferencesExternalEmbeds.tsx:66 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "I multimediali esterni possono consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finchĆ© non si preme il pulsante \"Riproduci\"." + +#: src/Navigation.tsx:261 +#: src/view/screens/PreferencesExternalEmbeds.tsx:52 +#: src/view/screens/Settings/index.tsx:657 +msgid "External Media Preferences" +msgstr "Preferenze multimediali esterni" + +#: src/view/screens/Settings/index.tsx:648 +msgid "External media settings" +msgstr "Impostazioni multimediali esterni" + +#: src/view/com/modals/AddAppPasswords.tsx:115 +#: src/view/com/modals/AddAppPasswords.tsx:119 +msgid "Failed to create app password." +msgstr "Impossibile creare la password dell'app." + +#: src/view/com/modals/CreateOrEditList.tsx:206 +msgid "Failed to create the list. Check your internet connection and try again." +msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 +msgid "Failed to delete post, please try again" +msgstr "Non possiamo eliminare il post, riprova di nuovo" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:109 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:141 +msgid "Failed to load recommended feeds" +msgstr "Non possiamo caricare i feed consigliati" + +#: src/Navigation.tsx:192 +msgid "Feed" +msgstr "Feed" + +#: src/view/com/feeds/FeedSourceCard.tsx:231 +msgid "Feed by {0}" +msgstr "Feed realizzato da {0}" + +#: src/view/screens/Feeds.tsx:605 +msgid "Feed offline" +msgstr "Feed offline" + +#: src/view/com/feeds/FeedPage.tsx:143 +msgid "Feed Preferences" +msgstr "Preferenze del feed" + +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 +msgid "Feedback" +msgstr "Commenti" + +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 +#: src/view/shell/bottom-bar/BottomBar.tsx:181 +#: src/view/shell/desktop/LeftNav.tsx:342 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 +msgid "Feeds" +msgstr "Feeds" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:57 +msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." +msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti." + +#: src/view/screens/SavedFeeds.tsx:156 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." +msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo di esperienza nella codifica. Vedi <0/> per ulteriori informazioni." + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 +msgid "Feeds can be topical as well!" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:151 +msgid "Finalizing" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:47 +#: src/view/com/posts/FollowingEmptyState.tsx:57 +#: src/view/com/posts/FollowingEndOfFeed.tsx:58 +msgid "Find accounts to follow" +msgstr "Trova account da seguire" + +#: src/view/screens/Search/Search.tsx:439 +msgid "Find users on Bluesky" +msgstr "Trova utenti su Bluesky" + +#: src/view/screens/Search/Search.tsx:437 +msgid "Find users with the search tool on the right" +msgstr "Trova gli utenti con lo strumento di ricerca sulla destra" + +#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:150 +msgid "Finding similar accounts..." +msgstr "Trovare account simili…" + +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + +#: src/view/screens/PreferencesHomeFeed.tsx:111 +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ottimizza il contenuto che vedi nella pagina d'inizio." + +#: src/view/screens/PreferencesThreads.tsx:60 +msgid "Fine-tune the discussion threads." +msgstr "Ottimizza i la visualizzazione delle discussioni." + +#: src/screens/Onboarding/index.tsx:38 +msgid "Fitness" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:131 +msgid "Flexible" +msgstr "" + +#: src/view/com/modals/EditImage.tsx:115 +msgid "Flip horizontal" +msgstr "Gira in orizzontale" + +#: src/view/com/modals/EditImage.tsx:120 +#: src/view/com/modals/EditImage.tsx:287 +msgid "Flip vertically" +msgstr "Gira in verticale" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Segui" + +#: src/view/com/profile/FollowButton.tsx:64 +msgctxt "action" +msgid "Follow" +msgstr "Segui" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 +msgid "Follow {0}" +msgstr "Segui {0}" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 +msgid "Follow All" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:174 +msgid "Follow selected accounts and continue to the next step" +msgstr "" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:64 +msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." +msgstr "Segui alcuni utenti per iniziare. Possiamo consigliarti più utenti in base a chi trovi interessante." + +#: src/view/com/profile/ProfileCard.tsx:194 +msgid "Followed by {0}" +msgstr "Seguito da {0}" + +#: src/view/com/modals/Threadgate.tsx:98 +msgid "Followed users" +msgstr "Utenti seguiti" + +#: src/view/screens/PreferencesFollowingFeed.tsx:154 +msgid "Followed users only" +msgstr "Solo utenti seguiti" + +#: src/view/com/notifications/FeedItem.tsx:166 +msgid "followed you" +msgstr "ti segue" + +#: src/view/screens/ProfileFollowers.tsx:25 +msgid "Followers" +msgstr "Seguiti" + +#~ msgid "following" +#~ msgstr "seguint" + +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 +#: src/view/screens/ProfileFollows.tsx:25 +msgid "Following" +msgstr "Seguiti" + +#: src/view/com/profile/ProfileHeader.tsx:149 +msgid "Following {0}" +msgstr "Seguiti {0}" + +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 +msgid "Follows you" +msgstr "Ti segue" + +#: src/view/com/profile/ProfileCard.tsx:141 +msgid "Follows You" +msgstr "Ti Segue" + +#: src/screens/Onboarding/index.tsx:43 +msgid "Food" +msgstr "" + +#: src/view/com/modals/DeleteAccount.tsx:111 +msgid "For security reasons, we'll need to send a confirmation code to your email address." +msgstr "Per motivi di sicurezza, invieremo un codice di conferma al tuo indirizzo email." + +#: src/view/com/modals/AddAppPasswords.tsx:209 +msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." +msgstr "Per motivi di sicurezza non potrai visualizzarlo nuovamente. Se perdi questa password, dovrai generarne una nuova." + +#: src/view/com/auth/login/LoginForm.tsx:241 +msgid "Forgot" +msgstr "Dimenticato" + +#: src/view/com/auth/login/LoginForm.tsx:238 +msgid "Forgot password" +msgstr "Ho dimenticato il password" + +#: src/view/com/auth/login/Login.tsx:127 +#: src/view/com/auth/login/Login.tsx:143 +msgid "Forgot Password" +msgstr "Ho dimenticato il Password" + +#: src/view/com/posts/FeedItem.tsx:187 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "Da <0/>" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:43 +msgid "Gallery" +msgstr "Galleria" + +#: src/view/com/modals/VerifyEmail.tsx:189 +#: src/view/com/modals/VerifyEmail.tsx:191 +msgid "Get Started" +msgstr "Inizia" + +#: src/view/com/auth/LoggedOut.tsx:81 +#: src/view/com/auth/LoggedOut.tsx:82 +#: src/view/com/util/moderation/ScreenHider.tsx:123 +#: src/view/shell/desktop/LeftNav.tsx:104 +msgid "Go back" +msgstr "Torna indietro" + +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileList.tsx:897 +#: src/view/screens/ProfileList.tsx:902 +msgid "Go Back" +msgstr "Torna Indietro" + +#: src/screens/Onboarding/Layout.tsx:104 +#: src/screens/Onboarding/Layout.tsx:193 +msgid "Go back to previous step" +msgstr "" + +#: src/view/screens/Search/Search.tsx:724 +#: src/view/shell/desktop/Search.tsx:262 +msgid "Go to @{queryMaybeHandle}" +msgstr "Vai a @{queryMaybeHandle}" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:195 +#: src/view/com/modals/ChangePassword.tsx:165 +msgid "Go to next" +msgstr "Seguente" + +#: src/view/com/modals/ChangeHandle.tsx:265 +msgid "Handle" +msgstr "Nome Utente" + +#: src/view/com/auth/create/CreateAccount.tsx:208 +msgid "Having trouble?" +msgstr "Ci sono problemi?" + +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 +msgid "Help" +msgstr "Aiuto" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Here are some accounts for you to follow" +msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 +msgid "Here are some popular topical feeds. You can choose to follow as many as you like." +msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 +msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:153 +msgid "Here is your app password." +msgstr "Ecco la password dell'app." + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 +#: src/view/com/util/moderation/ContentHider.tsx:105 +#: src/view/com/util/moderation/PostHider.tsx:108 +msgid "Hide" +msgstr "Nascondi" + +#: src/view/com/modals/ContentFilteringSettings.tsx:224 +#: src/view/com/notifications/FeedItem.tsx:325 +msgctxt "action" +msgid "Hide" +msgstr "Nascondi" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 +msgid "Hide post" +msgstr "Nascondi il messaggio" + +#: src/view/com/util/moderation/ContentHider.tsx:67 +#: src/view/com/util/moderation/PostHider.tsx:61 +msgid "Hide the content" +msgstr "Nascondere il contenuto" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 +msgid "Hide this post?" +msgstr "Vuoi nascondere questo post?" + +#: src/view/com/notifications/FeedItem.tsx:315 +msgid "Hide user list" +msgstr "Nascondi elenco utenti" + +#: src/view/com/profile/ProfileHeader.tsx:487 +msgid "Hides posts from {0} in your feed" +msgstr "Nasconde i post di {0} nel tuo feed" + +#: src/view/com/posts/FeedErrorMessage.tsx:111 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "Si ĆØ verificato un problema durante il contatto con il server del feed. Informa il proprietario del feed del problema." + +#: src/view/com/posts/FeedErrorMessage.tsx:99 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "Il server del feed sembra non ĆØ configurato correttamente. Informa il proprietario del feed del problema." + +#: src/view/com/posts/FeedErrorMessage.tsx:105 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "Il server del feed sembra essere offline. Informa il proprietario del feed di questo problema." + +#: src/view/com/posts/FeedErrorMessage.tsx:102 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietario del feed di questo problema." + +#: src/view/com/posts/FeedErrorMessage.tsx:96 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "Stiamo riscontrando problemi nel trovare questo feed. Potrebbe essere stato cancellato." + +#: src/Navigation.tsx:435 +#: src/view/shell/bottom-bar/BottomBar.tsx:137 +#: src/view/shell/desktop/LeftNav.tsx:306 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 +msgid "Home" +msgstr "Home" + +#: src/Navigation.tsx:247 +#: src/view/com/pager/FeedsTabBarMobile.tsx:123 +#: src/view/screens/PreferencesHomeFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferenze per i feed per la pagina d'inizio" + +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 +msgid "Hosting provider" +msgstr "Servizio di hosting" + +#~ msgid "Hosting provider address" +#~ msgstr "AdreƧa del proveĆÆdor d'allotjament" + +#: src/view/com/modals/InAppBrowserConsent.tsx:44 +msgid "How should we open this link?" +msgstr "Come dovremmo aprire questo link?" + +#: src/view/com/modals/VerifyEmail.tsx:214 +msgid "I have a code" +msgstr "Ho un codice" + +#: src/view/com/modals/VerifyEmail.tsx:216 +msgid "I have a confirmation code" +msgstr "Ho un codice di conferma" + +#: src/view/com/modals/ChangeHandle.tsx:283 +msgid "I have my own domain" +msgstr "Ho il mio dominio" + +#: src/view/com/lightbox/Lightbox.web.tsx:165 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "Se il testo alternativo ĆØ lungo, attiva/disattiva lo stato del testo alternativo" + +#: src/view/com/modals/SelfLabel.tsx:127 +msgid "If none are selected, suitable for all ages." +msgstr "Se niente ĆØ selezionato, adatto a tutte le etĆ ." + +#: src/view/com/modals/ChangePassword.tsx:146 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/view/com/util/images/Gallery.tsx:38 +msgid "Image" +msgstr "Immagine" + +#: src/view/com/modals/AltImage.tsx:120 +msgid "Image alt text" +msgstr "Testo alternativo dell'immagine" + +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 +msgid "Image options" +msgstr "Opzioni per l'immagine" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:138 +msgid "Input code sent to your email for password reset" +msgstr "Inserisci il codice inviato alla tua email per reimpostare la password" + +#: src/view/com/modals/DeleteAccount.tsx:184 +msgid "Input confirmation code for account deletion" +msgstr "Inserisci il codice di conferma per la cancellazione dell'account" + +#: src/view/com/auth/create/Step1.tsx:200 +msgid "Input email for Bluesky account" +msgstr "Inserisci l'e-mail per l'account di Bluesky" + +#: src/view/com/auth/create/Step1.tsx:158 +msgid "Input invite code to proceed" +msgstr "Inserisci il codice di invito per procedere" + +#: src/view/com/modals/AddAppPasswords.tsx:180 +msgid "Input name for app password" +msgstr "Inserisci il nome per la password dell'app" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:162 +msgid "Input new password" +msgstr "Inserisci la nuova password" + +#: src/view/com/modals/DeleteAccount.tsx:203 +msgid "Input password for account deletion" +msgstr "Inserisci la password per la cancellazione dell'account" + +#: src/view/com/auth/create/Step2.tsx:196 +#~ msgid "Input phone number for SMS verification" +#~ msgstr "Inserisci il numero di telefono per la verifica via SMS" + +#: src/view/com/auth/login/LoginForm.tsx:230 +msgid "Input the password tied to {identifier}" +msgstr "Inserisci la password relazionata a {identifier}" + +#: src/view/com/auth/login/LoginForm.tsx:197 +msgid "Input the username or email address you used at signup" +msgstr "Inserisci il nome utente o l'indirizzo email che hai utilizzato al momento della registrazione" + +#: src/view/com/auth/create/Step2.tsx:271 +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "Inserisci il codice di verifica che ti abbiamo inviato tramite SMS" + +#: src/view/com/modals/Waitlist.tsx:90 +msgid "Input your email to get on the Bluesky waitlist" +msgstr "Inserisci la tua email per entrare nella lista d'attesa di Bluesky" + +#: src/view/com/auth/login/LoginForm.tsx:229 +msgid "Input your password" +msgstr "Inserisci la tua password" + +#: src/view/com/auth/create/Step2.tsx:80 +msgid "Input your user handle" +msgstr "Inserisci il tuo identificatore" + +#: src/view/com/post-thread/PostThreadItem.tsx:224 +msgid "Invalid or unsupported post record" +msgstr "Protocollo del post non valido o non supportato" + +#: src/view/com/auth/login/LoginForm.tsx:113 +msgid "Invalid username or password" +msgstr "Nome dell'utente o password errato" + +#: src/view/screens/Settings.tsx:411 +#~ msgid "Invite" +#~ msgstr "Invita" + +#: src/view/com/modals/InviteCodes.tsx:93 +msgid "Invite a Friend" +msgstr "Invita un amico" + +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 +msgid "Invite code" +msgstr "Codice d'invito" + +#: src/view/com/auth/create/state.ts:158 +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/view/com/modals/InviteCodes.tsx:170 +msgid "Invite codes: {0} available" +msgstr "Codici di invito: {0} disponibili" + +#: src/view/shell/Drawer.tsx:645 +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Codici di invito: {invitesAvailable} disponibili" + +#: src/view/com/modals/InviteCodes.tsx:169 +msgid "Invite codes: 1 available" +msgstr "Codici di invito: 1 disponibile" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:64 +msgid "It shows posts from the people you follow as they happen." +msgstr "" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 +msgid "Jobs" +msgstr "Lavori" + +#: src/view/com/modals/Waitlist.tsx:67 +msgid "Join the waitlist" +msgstr "Iscriviti alla lista d'attesa" + +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 +msgid "Join the waitlist." +msgstr "Iscriviti alla lista d'attesa." + +#: src/view/com/modals/Waitlist.tsx:128 +msgid "Join Waitlist" +msgstr "Iscriviti alla Lista d'Attesa" + +#: src/screens/Onboarding/index.tsx:24 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:104 +msgid "Language selection" +msgstr "Seleziona la lingua" + +#: src/view/screens/Settings/index.tsx:594 +msgid "Language settings" +msgstr "Impostazione delle lingue" + +#: src/Navigation.tsx:140 +#: src/view/screens/LanguageSettings.tsx:89 +msgid "Language Settings" +msgstr "Impostazione delle Lingue" + +#: src/view/screens/Settings/index.tsx:603 +msgid "Languages" +msgstr "Lingue" + +#: src/view/com/auth/create/StepHeader.tsx:20 +msgid "Last step!" +msgstr "Ultimo passo!" + +#: src/view/com/util/moderation/ContentHider.tsx:103 +msgid "Learn more" +msgstr "Ulteriori informazioni" + +#: src/view/com/util/moderation/PostAlerts.tsx:47 +#: src/view/com/util/moderation/ProfileHeaderAlerts.tsx:65 +#: src/view/com/util/moderation/ScreenHider.tsx:104 +msgid "Learn More" +msgstr "Ulteriori Informazioni" + +#: src/view/com/util/moderation/ContentHider.tsx:85 +#: src/view/com/util/moderation/PostAlerts.tsx:40 +#: src/view/com/util/moderation/PostHider.tsx:78 +#: src/view/com/util/moderation/ProfileHeaderAlerts.tsx:49 +#: src/view/com/util/moderation/ScreenHider.tsx:101 +msgid "Learn more about this warning" +msgstr "Ulteriori informazioni su questo avviso" + +#: src/view/screens/Moderation.tsx:243 +msgid "Learn more about what is public on Bluesky." +msgstr "Scopri cosa ĆØ pubblico su Bluesky." + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:82 +msgid "Leave them all unchecked to see any language." +msgstr "Deseleziona tutte per vedere qualsiasi lingua." + +#: src/view/com/modals/LinkWarning.tsx:51 +msgid "Leaving Bluesky" +msgstr "Stai lasciando Bluesky" + +#: src/screens/Deactivated.tsx:128 +msgid "left to go." +msgstr "" + +#: src/view/screens/Settings/index.tsx:278 +msgid "Legacy storage cleared, you need to restart the app now." +msgstr "L'archivio legacy ĆØ stato cancellato, riattiva la app." + +#: src/view/com/auth/login/Login.tsx:128 +#: src/view/com/auth/login/Login.tsx:144 +msgid "Let's get your password reset!" +msgstr "Reimpostazione della password!" + +#: src/screens/Onboarding/StepFinished.tsx:151 +msgid "Let's go!" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 +msgid "Library" +msgstr "Biblioteca" + +#: src/view/screens/Settings/index.tsx:479 +msgid "Light" +msgstr "Chiaro" + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 +msgid "Like" +msgstr "Mi piace" + +#: src/view/screens/ProfileFeed.tsx:591 +msgid "Like this feed" +msgstr "Metti mi piace a questo feed" + +#: src/Navigation.tsx:197 +msgid "Liked by" +msgstr "Piaciuto a" + +#: src/view/screens/PostLikedBy.tsx:27 +#: src/view/screens/ProfileFeedLikedBy.tsx:27 +msgid "Liked By" +msgstr "" + +#: src/view/com/feeds/FeedSourceCard.tsx:279 +msgid "Liked by {0} {1}" +msgstr "ƈ piaciuto a {0} {1}" + +#: src/view/screens/ProfileFeed.tsx:606 +msgid "Liked by {likeCount} {0}" +msgstr "ƈ piaciuto a {likeCount} {0}" + +#: src/view/com/notifications/FeedItem.tsx:170 +msgid "liked your custom feed" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:171 +#~ msgid "liked your custom feed{0}" +#~ msgstr "ĆØ piaciuto il feed personalizzato{0}" + +#: src/view/com/notifications/FeedItem.tsx:155 +msgid "liked your post" +msgstr "ĆØ piaciuto il tuo post" + +#: src/view/screens/Profile.tsx:183 +msgid "Likes" +msgstr "Mi piace" + +#: src/view/com/post-thread/PostThreadItem.tsx:181 +msgid "Likes on this post" +msgstr "Mi Piace in questo post" + +#: src/Navigation.tsx:166 +msgid "List" +msgstr "Lista" + +#: src/view/com/modals/CreateOrEditList.tsx:261 +msgid "List Avatar" +msgstr "Lista avatar" + +#: src/view/screens/ProfileList.tsx:324 +msgid "List blocked" +msgstr "Lista bloccata" + +#: src/view/com/feeds/FeedSourceCard.tsx:233 +msgid "List by {0}" +msgstr "Lista di {0}" + +#: src/view/screens/ProfileList.tsx:378 +msgid "List deleted" +msgstr "Lista cancellata" + +#: src/view/screens/ProfileList.tsx:283 +msgid "List muted" +msgstr "Lista muta" + +#: src/view/com/modals/CreateOrEditList.tsx:275 +msgid "List Name" +msgstr "Nome della lista" + +#: src/view/screens/ProfileList.tsx:343 +msgid "List unblocked" +msgstr "Lista sbloccata" + +#: src/view/screens/ProfileList.tsx:302 +msgid "List unmuted" +msgstr "Lista non mutata" + +#: src/Navigation.tsx:110 +#: src/view/screens/Profile.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 +msgid "Lists" +msgstr "Liste" + +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 +msgid "Load more posts" +msgstr "Carica più post" + +#: src/view/screens/Notifications.tsx:159 +msgid "Load new notifications" +msgstr "Carica più notifiche" + +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 +msgid "Load new posts" +msgstr "Carica nuovi posts" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:95 +msgid "Loading..." +msgstr "Caricamento..." + +#: src/view/com/modals/ServerInput.tsx:50 +#~ msgid "Local dev server" +#~ msgstr "Server di sviluppo locale" + +#: src/Navigation.tsx:207 +msgid "Log" +msgstr "Log" + +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 +msgid "Log out" +msgstr "" + +#: src/view/screens/Moderation.tsx:136 +msgid "Logged-out visibility" +msgstr "VisibilitĆ  degli utenti non connettati" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:133 +msgid "Login to account that is not listed" +msgstr "Accedi all'account che non ĆØ nella lista" + +#~ msgid "Looks like this feed is only available to users with a Bluesky account. Please sign up or sign in to view this feed!" +#~ msgstr "Parece que este canal de noticias sólo estĆ” disponible para usuarios con una cuenta Bluesky. Por favor, Ā”regĆ­strate o inicia sesión para ver este canal!" + +#: src/view/com/modals/LinkWarning.tsx:65 +msgid "Make sure this is where you intend to go!" +msgstr "Assicurati che questo sia dove intendi andare!" + +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 +msgid "Media" +msgstr "Media" + +#: src/view/com/threadgate/WhoCanReply.tsx:139 +msgid "mentioned users" +msgstr "utenti menzionati" + +#: src/view/com/modals/Threadgate.tsx:93 +msgid "Mentioned users" +msgstr "Utenti menzionati" + +#: src/view/com/util/ViewHeader.tsx:81 +#: src/view/screens/Search/Search.tsx:623 +msgid "Menu" +msgstr "Menù" + +#~ msgid "Message from server" +#~ msgstr "Missatge del servidor" + +#: src/view/com/posts/FeedErrorMessage.tsx:197 +msgid "Message from server: {0}" +msgstr "Messaggio dal server: {0}" + +#: src/Navigation.tsx:115 +#: src/view/screens/Moderation.tsx:64 +#: src/view/screens/Settings/index.tsx:625 +#: src/view/shell/desktop/LeftNav.tsx:397 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 +msgid "Moderation" +msgstr "Moderazione" + +#: src/view/com/lists/ListCard.tsx:93 +#: src/view/com/modals/UserAddRemoveLists.tsx:206 +msgid "Moderation list by {0}" +msgstr "Lista di moderazione di {0}" + +#: src/view/screens/ProfileList.tsx:774 +msgid "Moderation list by <0/>" +msgstr "Lista di moderazione di <0/>" + +#: src/view/com/lists/ListCard.tsx:91 +#: src/view/com/modals/UserAddRemoveLists.tsx:204 +#: src/view/screens/ProfileList.tsx:772 +msgid "Moderation list by you" +msgstr "Le tue liste di moderazione" + +#: src/view/com/modals/CreateOrEditList.tsx:197 +msgid "Moderation list created" +msgstr "Lista di moderazione creata" + +#: src/view/com/modals/CreateOrEditList.tsx:183 +msgid "Moderation list updated" +msgstr "Lista di moderazione aggiornata" + +#: src/view/screens/Moderation.tsx:95 +msgid "Moderation lists" +msgstr "Liste di moderazione" + +#: src/Navigation.tsx:120 +#: src/view/screens/ModerationModlists.tsx:58 +msgid "Moderation Lists" +msgstr "Liste di Moderazione" + +#: src/view/screens/Settings/index.tsx:619 +msgid "Moderation settings" +msgstr "Impostazioni di moderazione" + +#: src/view/com/modals/ModerationDetails.tsx:35 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "Il moderatore ha scelto di mettere un avviso generale sul contenuto." + +#: src/view/shell/desktop/Feeds.tsx:63 +msgid "More feeds" +msgstr "Altri feed" + +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 +msgid "More options" +msgstr "Altre opzioni" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 +msgid "More post options" +msgstr "Altre impostazioni per il post" + +#: src/view/screens/PreferencesThreads.tsx:82 +msgid "Most-liked replies first" +msgstr "Dai prioritĆ  alle risposte con più likes" + +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 +msgid "Mute Account" +msgstr "Silenziare Account" + +#: src/view/screens/ProfileList.tsx:544 +msgid "Mute accounts" +msgstr "Silenziare accounts" + +#: src/view/screens/ProfileList.tsx:491 +msgid "Mute list" +msgstr "Silenziare la lista" + +#: src/view/screens/ProfileList.tsx:275 +msgid "Mute these accounts?" +msgstr "Vuoi silenziare queste liste?" + +#: src/view/screens/ProfileList.tsx:279 +msgid "Mute this List" +msgstr "Silenzia questa Lista" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Mute thread" +msgstr "Silenzia questa discussione" + +#: src/view/com/lists/ListCard.tsx:102 +msgid "Muted" +msgstr "Silenziato" + +#: src/view/screens/Moderation.tsx:109 +msgid "Muted accounts" +msgstr "Account silenziato" + +#: src/Navigation.tsx:125 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "Accounts Silenziati" + +#: src/view/screens/ModerationMutedAccounts.tsx:115 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tue notifiche. Silenziare ĆØ completamente privato." + +#: src/view/screens/ProfileList.tsx:277 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "Silenziare un account ĆØ privato. Gli account silenziati possono interagire con te, ma non vedrai i loro post nĆ© riceverai le loro notifiche." + +#: src/view/com/modals/BirthDateSettings.tsx:56 +msgid "My Birthday" +msgstr "Il mio Compleanno" + +#: src/view/screens/Feeds.tsx:663 +msgid "My Feeds" +msgstr "I miei Feeds" + +#: src/view/shell/desktop/LeftNav.tsx:65 +msgid "My Profile" +msgstr "Il mio Profilo" + +#: src/view/screens/Settings/index.tsx:582 +msgid "My Saved Feeds" +msgstr "I miei Feeds Salvati" + +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + +#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/CreateOrEditList.tsx:290 +msgid "Name" +msgstr "Nome" + +#: src/view/com/modals/CreateOrEditList.tsx:145 +msgid "Name is required" +msgstr "Il nome ĆØ obbligatorio" + +#: src/screens/Onboarding/index.tsx:25 +msgid "Nature" +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:196 +#: src/view/com/modals/ChangePassword.tsx:166 +msgid "Navigates to the next screen" +msgstr "Vai alla schermata successiva" + +#: src/view/shell/Drawer.tsx:71 +msgid "Navigates to your profile" +msgstr "Vai al tuo profilo" + +#: src/view/com/modals/EmbedConsent.tsx:107 +#: src/view/com/modals/EmbedConsent.tsx:123 +msgid "Never load embeds from {0}" +msgstr "Non caricare mai gli inserimenti di {0}" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:72 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:72 +msgid "Never lose access to your followers and data." +msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati." + +#: src/screens/Onboarding/StepFinished.tsx:119 +msgid "Never lose access to your followers or data." +msgstr "" + +#: src/view/screens/Lists.tsx:76 +msgctxt "action" +msgid "New" +msgstr "Nuovo" + +#: src/view/screens/ModerationModlists.tsx:78 +msgid "New" +msgstr "Nuovo" + +#: src/view/com/modals/CreateOrEditList.tsx:252 +msgid "New Moderation List" +msgstr "Nuova Lista di Moderazione" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:150 +msgid "New password" +msgstr "Nuovo Password" + +#: src/view/com/modals/ChangePassword.tsx:215 +msgid "New Password" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:192 +msgctxt "action" +msgid "New post" +msgstr "Nuovo Post" + +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:248 +msgid "New post" +msgstr "Nuovo post" + +#: src/view/shell/desktop/LeftNav.tsx:258 +msgctxt "action" +msgid "New Post" +msgstr "Nuovo post" + +#~ msgid "New Post" +#~ msgstr "Nova publicació" + +#: src/view/com/modals/CreateOrEditList.tsx:247 +msgid "New User List" +msgstr "Nuova lista utenti" + +#: src/view/screens/PreferencesThreads.tsx:79 +msgid "Newest replies first" +msgstr "Mostrare prima le risposte più recenti" + +#: src/screens/Onboarding/index.tsx:23 +msgid "News" +msgstr "" + +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:187 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:198 +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 +#: src/view/com/modals/ChangePassword.tsx:251 +#: src/view/com/modals/ChangePassword.tsx:253 +msgid "Next" +msgstr "Seguente" + +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 +msgctxt "action" +msgid "Next" +msgstr "Seguente" + +#: src/view/com/lightbox/Lightbox.web.tsx:149 +msgid "Next image" +msgstr "Immagine seguente" + +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 +#: src/view/screens/PreferencesThreads.tsx:106 +#: src/view/screens/PreferencesThreads.tsx:129 +msgid "No" +msgstr "No" + +#: src/view/screens/ProfileFeed.tsx:584 +#: src/view/screens/ProfileList.tsx:754 +msgid "No description" +msgstr "Senza descrizione" + +#: src/view/com/profile/ProfileHeader.tsx:170 +msgid "No longer following {0}" +msgstr "Non segui più {0}" + +#: src/view/com/notifications/Feed.tsx:109 +msgid "No notifications yet!" +msgstr "Ancora nessuna notifica!" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:97 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:191 +msgid "No result" +msgstr "Nessun risultato" + +#: src/view/screens/Feeds.tsx:495 +msgid "No results found for \"{query}\"" +msgstr "Nessun risultato trovato per \"{query}\"" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/screens/Search/Search.tsx:280 +#: src/view/screens/Search/Search.tsx:308 +msgid "No results found for {query}" +msgstr "Nessun risultato trovato per {query}" + +#: src/view/com/modals/EmbedConsent.tsx:129 +msgid "No thanks" +msgstr "No grazie" + +#: src/view/com/modals/Threadgate.tsx:82 +msgid "Nobody" +msgstr "Nessuno" + +#: src/view/com/modals/SelfLabel.tsx:135 +msgid "Not Applicable." +msgstr "Non applicabile." + +#: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 +msgid "Not Found" +msgstr "Non trovato" + +#: src/view/com/modals/VerifyEmail.tsx:246 +#: src/view/com/modals/VerifyEmail.tsx:252 +msgid "Not right now" +msgstr "Non adesso" + +#: src/view/screens/Moderation.tsx:233 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "Nota: Bluesky ĆØ una rete aperta e pubblica. Questa impostazione limita solo la visibilitĆ  dei tuoi contenuti sull'app e sul sito Web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web." + +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 +#: src/view/shell/desktop/LeftNav.tsx:361 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 +msgid "Notifications" +msgstr "Notifica" + +#: src/view/com/modals/SelfLabel.tsx:103 +msgid "Nudity" +msgstr "NuditĆ " + +#: src/view/com/util/ErrorBoundary.tsx:35 +msgid "Oh no!" +msgstr "Oh no!" + +#: src/screens/Onboarding/StepInterests/index.tsx:128 +msgid "Oh no! Something went wrong." +msgstr "" + +#: src/view/com/auth/login/PasswordUpdatedForm.tsx:41 +msgid "Okay" +msgstr "Va bene" + +#: src/view/screens/PreferencesThreads.tsx:78 +msgid "Oldest replies first" +msgstr "Prima le risposte più vecchie" + +#: src/view/screens/Settings/index.tsx:234 +msgid "Onboarding reset" +msgstr "Reimpostazione dell'onboarding" + +#: src/view/com/composer/Composer.tsx:375 +msgid "One or more images is missing alt text." +msgstr "A una o più immagini manca il testo alternativo." + +#: src/view/com/threadgate/WhoCanReply.tsx:100 +msgid "Only {0} can reply." +msgstr "Solo {0} può rispondere." + +#: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 +msgid "Oops!" +msgstr "Ops!" + +#: src/screens/Onboarding/StepFinished.tsx:115 +msgid "Open" +msgstr "" + +#: src/view/com/composer/Composer.tsx:470 +#: src/view/com/composer/Composer.tsx:471 +msgid "Open emoji picker" +msgstr "Apri il selettore emoji" + +#: src/view/screens/Settings/index.tsx:712 +msgid "Open links with in-app browser" +msgstr "Apri i links con il navigatore della app" + +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 +msgid "Open navigation" +msgstr "Apri la navigazione" + +#: src/view/screens/Settings/index.tsx:804 +msgid "Open storybook page" +msgstr "Apri la pagina della cronologia" + +#: src/view/com/util/forms/DropdownButton.tsx:154 +msgid "Opens {numItems} options" +msgstr "Apre le {numItems} opzioni" + +#: src/view/screens/Log.tsx:54 +msgid "Opens additional details for a debug entry" +msgstr "Apre dettagli aggiuntivi per una debug entry" + +#: src/view/com/notifications/FeedItem.tsx:348 +msgid "Opens an expanded list of users in this notification" +msgstr "Apre un elenco ampliato di utenti in questa notifica" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:61 +msgid "Opens camera on device" +msgstr "Apre la fotocamera sul dispositivo" + +#: src/view/com/composer/Prompt.tsx:25 +msgid "Opens composer" +msgstr "Apre il compositore" + +#: src/view/screens/Settings/index.tsx:595 +msgid "Opens configurable language settings" +msgstr "Apre le impostazioni configurabili delle lingue" + +#: src/view/com/composer/photos/SelectPhotoBtn.tsx:44 +msgid "Opens device photo gallery" +msgstr "Apre la galleria fotografica del dispositivo" + +#: src/view/com/profile/ProfileHeader.tsx:420 +msgid "Opens editor for profile display name, avatar, background image, and description" +msgstr "Apre l'editor per il nome configurato del profilo, l'avatar, l'immagine di sfondo e la descrizione" + +#: src/view/screens/Settings/index.tsx:649 +msgid "Opens external embeds settings" +msgstr "Apre le impostazioni esterne per gli incorporamenti" + +#: src/view/com/profile/ProfileHeader.tsx:575 +msgid "Opens followers list" +msgstr "Apre la lista dei followers" + +#: src/view/com/profile/ProfileHeader.tsx:594 +msgid "Opens following list" +msgstr "Apre la lista di chi segui" + +#: src/view/screens/Settings.tsx:412 +#~ msgid "Opens invite code list" +#~ msgstr "Apre la lista dei codici di invito" + +#: src/view/com/modals/InviteCodes.tsx:172 +msgid "Opens list of invite codes" +msgstr "Apre la lista dei codici di invito" + +#: src/view/screens/Settings/index.tsx:774 +msgid "Opens modal for account deletion confirmation. Requires email code." +msgstr "Apre il modal per la conferma dell'eliminazione dell'account. Richiede un codice email." + +#: src/view/com/modals/ChangeHandle.tsx:281 +msgid "Opens modal for using custom domain" +msgstr "Apre il modal per l'utilizzo del dominio personalizzato" + +#: src/view/screens/Settings/index.tsx:620 +msgid "Opens moderation settings" +msgstr "Apre le impostazioni di moderazione" + +#: src/view/com/auth/login/LoginForm.tsx:239 +msgid "Opens password reset form" +msgstr "Apre il modulo di reimpostazione della password" + +#: src/view/screens/Feeds.tsx:356 +msgid "Opens screen to edit Saved Feeds" +msgstr "Apre la schermata per modificare i feed salvati" + +#: src/view/screens/Settings/index.tsx:576 +msgid "Opens screen with all saved feeds" +msgstr "Apre la schermata con tutti i feed salvati" + +#: src/view/screens/Settings/index.tsx:676 +msgid "Opens the app password settings page" +msgstr "Apre la pagina delle impostazioni della password dell'app" + +#: src/view/screens/Settings/index.tsx:535 +msgid "Opens the home feed preferences" +msgstr "Apre le preferenze del home feed" + +#: src/view/screens/Settings/index.tsx:805 +msgid "Opens the storybook page" +msgstr "Apri la pagina della cronologia" + +#: src/view/screens/Settings/index.tsx:793 +msgid "Opens the system log page" +msgstr "Apre la pagina del registro di sistema" + +#: src/view/screens/Settings/index.tsx:556 +msgid "Opens the threads preferences" +msgstr "Apre le preferenze dei threads" + +#: src/view/com/util/forms/DropdownButton.tsx:280 +msgid "Option {0} of {numItems}" +msgstr "Opzione {0} di {numItems}" + +#: src/view/com/modals/Threadgate.tsx:89 +msgid "Or combine these options:" +msgstr "Oppure combina queste opzioni:" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:138 +msgid "Other account" +msgstr "Altro account" + +#: src/view/com/modals/ServerInput.tsx:88 +#~ msgid "Other service" +#~ msgstr "Altro servizio" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:91 +msgid "Other..." +msgstr "Altro..." + +#: src/view/screens/NotFound.tsx:45 +msgid "Page not found" +msgstr "Pagina non trovata" + +#: src/view/screens/NotFound.tsx:42 +msgid "Page Not Found" +msgstr "" + +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:161 +#: src/view/com/modals/DeleteAccount.tsx:202 +msgid "Password" +msgstr "Password" + +#: src/view/com/auth/login/Login.tsx:157 +msgid "Password updated" +msgstr "Password aggiornata" + +#: src/view/com/auth/login/PasswordUpdatedForm.tsx:28 +msgid "Password updated!" +msgstr "Password aggiornata!" + +#: src/Navigation.tsx:160 +msgid "People followed by @{0}" +msgstr "Persone seguite da @{0}" + +#: src/Navigation.tsx:153 +msgid "People following @{0}" +msgstr "Persone che seguono @{0}" + +#: src/view/com/lightbox/Lightbox.tsx:66 +msgid "Permission to access camera roll is required." +msgstr "ƈ richiesta l'autorizzazione per accedere al la cartella delle immagini." + +#: src/view/com/lightbox/Lightbox.tsx:72 +msgid "Permission to access camera roll was denied. Please enable it in your system settings." +msgstr "L'autorizzazione per accedere la cartella delle immagini ĆØ stata negata. Si prega di abilitarla nelle impostazioni del sistema." + +#: src/screens/Onboarding/index.tsx:31 +msgid "Pets" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:183 +#~ msgid "Phone number" +#~ msgstr "Numero di telefono" + +#: src/view/com/modals/SelfLabel.tsx:121 +msgid "Pictures meant for adults." +msgstr "Immagini per adulti." + +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 +msgid "Pin to home" +msgstr "Fissa sulla pagina principale" + +#: src/view/screens/SavedFeeds.tsx:88 +msgid "Pinned Feeds" +msgstr "Feed Fissati" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:111 +msgid "Play {0}" +msgstr "Riproduci {0}" + +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:54 +#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:55 +msgid "Play Video" +msgstr "Riproduci video" + +#: src/view/com/util/post-embeds/ExternalGifEmbed.tsx:110 +msgid "Plays the GIF" +msgstr "Riproduci questa GIF" + +#: src/view/com/auth/create/state.ts:124 +msgid "Please choose your handle." +msgstr "Scegli il tuo nome utente." + +#: src/view/com/auth/create/state.ts:117 +msgid "Please choose your password." +msgstr "Scegli la tua password." + +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/modals/ChangeEmail.tsx:67 +msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." +msgstr "Conferma la tua email prima di cambiarla. Si tratta di un requisito temporaneo durante l'aggiunta degli strumenti di aggiornamento della posta elettronica e verrĆ  presto rimosso." + +#: src/view/com/modals/AddAppPasswords.tsx:90 +msgid "Please enter a name for your app password. All spaces is not allowed." +msgstr "Inserisci un nome per la password dell'app. Tutti gli spazi non sono consentiti." + +#: src/view/com/auth/create/Step2.tsx:206 +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "Inserisci un numero di telefono in grado di ricevere messaggi di testo SMS." + +#: src/view/com/modals/AddAppPasswords.tsx:145 +msgid "Please enter a unique name for this App Password or use our randomly generated one." +msgstr "Inserisci un nome unico per la password dell'app o utilizzane uno generato automaticamente." + +#: src/view/com/auth/create/state.ts:170 +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "Inserisci il codice che hai ricevuto via SMS." + +#: src/view/com/auth/create/Step2.tsx:282 +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." + +#: src/view/com/auth/create/state.ts:103 +msgid "Please enter your email." +msgstr "Inserisci la tua email." + +#: src/view/com/modals/DeleteAccount.tsx:191 +msgid "Please enter your password as well:" +msgstr "Inserisci anche la tua password:" + +#: src/view/com/modals/AppealLabel.tsx:72 +#: src/view/com/modals/AppealLabel.tsx:75 +msgid "Please tell us why you think this content warning was incorrectly applied!" +msgstr "Spiegaci perchĆ© ritieni che questo avviso sui contenuti sia stato applicato in modo errato!" + +#~ msgid "Please tell us why you think this decision was incorrect." +#~ msgstr "Por favor, dinos por quĆ© crees que esta decisión fue incorrecta." + +#: src/view/com/modals/VerifyEmail.tsx:101 +msgid "Please Verify Your Email" +msgstr "Verifica la tua email" + +#: src/view/com/composer/Composer.tsx:215 +msgid "Please wait for your link card to finish loading" +msgstr "Attendi il caricamento della scheda di collegamento" + +#: src/screens/Onboarding/index.tsx:37 +msgid "Politics" +msgstr "" + +#: src/view/com/modals/SelfLabel.tsx:111 +msgid "Porn" +msgstr "Porno" + +#: src/view/com/composer/Composer.tsx:350 +#: src/view/com/composer/Composer.tsx:358 +msgctxt "action" +msgid "Post" +msgstr "Post" + +#: src/view/com/post-thread/PostThread.tsx:303 +msgctxt "description" +msgid "Post" +msgstr "Post" + +#~ msgid "Post" +#~ msgstr "Publicació" + +#: src/view/com/post-thread/PostThreadItem.tsx:173 +msgid "Post by {0}" +msgstr "Pubblicato da {0}" + +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 +msgid "Post by @{0}" +msgstr "Pubblicato da @{0}" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +msgid "Post deleted" +msgstr "Post eliminato" + +#: src/view/com/post-thread/PostThread.tsx:461 +msgid "Post hidden" +msgstr "Post nascosto" + +#: src/view/com/composer/select-language/SelectLangBtn.tsx:87 +msgid "Post language" +msgstr "Lingua del post" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:75 +msgid "Post Languages" +msgstr "Lingue del post" + +#: src/view/com/post-thread/PostThread.tsx:513 +msgid "Post not found" +msgstr "Post non trovato" + +#: src/view/screens/Profile.tsx:180 +msgid "Posts" +msgstr "Post" + +#: src/view/com/posts/FeedErrorMessage.tsx:64 +msgid "Posts hidden" +msgstr "Post nascosto" + +#: src/view/com/modals/LinkWarning.tsx:46 +msgid "Potentially Misleading Link" +msgstr "Link potenzialmente fuorviante" + +#: src/view/com/lightbox/Lightbox.web.tsx:135 +msgid "Previous image" +msgstr "Immagine precedente" + +#: src/view/screens/LanguageSettings.tsx:187 +msgid "Primary Language" +msgstr "Lingua principale" + +#: src/view/screens/PreferencesThreads.tsx:97 +msgid "Prioritize Your Follows" +msgstr "Dai prioritĆ  a quelli che segui" + +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 +msgid "Privacy" +msgstr "Privacy" + +#: src/Navigation.tsx:217 +#: src/view/screens/PrivacyPolicy.tsx:29 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 +msgid "Privacy Policy" +msgstr "Informativa sulla privacy" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 +msgid "Processing..." +msgstr "Elaborazione in corso…" + +#: src/view/shell/bottom-bar/BottomBar.tsx:247 +#: src/view/shell/desktop/LeftNav.tsx:415 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 +msgid "Profile" +msgstr "Profilo" + +#: src/view/com/modals/EditProfile.tsx:128 +msgid "Profile updated" +msgstr "Profilo aggiornato" + +#: src/view/screens/Settings/index.tsx:949 +msgid "Protect your account by verifying your email." +msgstr "Proteggi il tuo account verificando la tua email." + +#: src/screens/Onboarding/StepFinished.tsx:101 +msgid "Public" +msgstr "" + +#: src/view/screens/ModerationModlists.tsx:61 +msgid "Public, shareable lists of users to mute or block in bulk." +msgstr "Elenchi pubblici e condivisibili di utenti da disattivare o bloccare in blocco." + +#: src/view/screens/Lists.tsx:61 +msgid "Public, shareable lists which can drive feeds." +msgstr "Elenchi pubblici e condivisibili che possono gestire i feeds." + +#: src/view/com/composer/Composer.tsx:335 +msgid "Publish post" +msgstr "Pubblica il post" + +#: src/view/com/composer/Composer.tsx:335 +msgid "Publish reply" +msgstr "Pubblica la risposta" + +#: src/view/com/modals/Repost.tsx:65 +msgctxt "action" +msgid "Quote post" +msgstr "Cita il post" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:58 +msgid "Quote post" +msgstr "Cita il post" + +#: src/view/com/modals/Repost.tsx:70 +msgctxt "action" +msgid "Quote Post" +msgstr "Cita il post" + +#~ msgid "Quote Post" +#~ msgstr "Cita una publicació" + +#: src/view/screens/PreferencesThreads.tsx:86 +msgid "Random (aka \"Poster's Roulette\")" +msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")" + +#: src/view/com/modals/EditImage.tsx:236 +msgid "Ratios" +msgstr "Rapporti" + +#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:116 +msgid "Recommended Feeds" +msgstr "Feeds consigliati" + +#: src/view/com/auth/onboarding/RecommendedFollows.tsx:180 +msgid "Recommended Users" +msgstr "Utenti consigliati" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:264 +#: src/view/com/modals/SelfLabel.tsx:83 +#: src/view/com/modals/UserAddRemoveLists.tsx:219 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 +msgid "Remove" +msgstr "Rimuovi" + +#: src/view/com/feeds/FeedSourceCard.tsx:108 +msgid "Remove {0} from my feeds?" +msgstr "Rimuovere {0} dai miei feeds?" + +#: src/view/com/util/AccountDropdownBtn.tsx:22 +msgid "Remove account" +msgstr "Rimuovi l'account" + +#: src/view/com/posts/FeedErrorMessage.tsx:131 +#: src/view/com/posts/FeedErrorMessage.tsx:166 +msgid "Remove feed" +msgstr "Rimuovi il feed" + +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 +msgid "Remove from my feeds" +msgstr "Rimuovi dai miei feed" + +#: src/view/com/composer/photos/Gallery.tsx:167 +msgid "Remove image" +msgstr "Rimuovi l'immagine" + +#: src/view/com/composer/ExternalEmbed.tsx:70 +msgid "Remove image preview" +msgstr "Rimuovi l'anteprima dell'immagine" + +#: src/view/com/modals/Repost.tsx:47 +msgid "Remove repost" +msgstr "Rimuovi la ripubblicazione" + +#: src/view/com/feeds/FeedSourceCard.tsx:175 +msgid "Remove this feed from my feeds?" +msgstr "Rimuovere questo feed dai miei feeds?" + +#: src/view/com/posts/FeedErrorMessage.tsx:132 +msgid "Remove this feed from your saved feeds?" +msgstr "Elimina questo feed dai feeds salvati?" + +#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/UserAddRemoveLists.tsx:152 +msgid "Removed from list" +msgstr "Elimina dalla lista" + +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 +msgid "Removed from my feeds" +msgstr "Rimuovere dai miei feeds" + +#: src/view/com/composer/ExternalEmbed.tsx:71 +msgid "Removes default thumbnail from {0}" +msgstr "Elimina la miniatura predefinita da {0}" + +#: src/view/screens/Profile.tsx:181 +msgid "Replies" +msgstr "Risposte" + +#: src/view/com/threadgate/WhoCanReply.tsx:98 +msgid "Replies to this thread are disabled" +msgstr "Le risposte a questo thread sono disabilitate" + +#: src/view/com/composer/Composer.tsx:348 +msgctxt "action" +msgid "Reply" +msgstr "Rispondi" + +#: src/view/screens/PreferencesFollowingFeed.tsx:144 +msgid "Reply Filters" +msgstr "Filtri di risposta" + +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 +msgctxt "description" +msgid "Reply to <0/>" +msgstr "Rispondi a <0/>" + +#: src/view/com/modals/report/Modal.tsx:166 +msgid "Report {collectionName}" +msgstr "Segnala {collectionName}" + +#: src/view/com/profile/ProfileHeader.tsx:361 +msgid "Report Account" +msgstr "Segnala il conto" + +#: src/view/screens/ProfileFeed.tsx:293 +msgid "Report feed" +msgstr "Segnala il feed" + +#: src/view/screens/ProfileList.tsx:459 +msgid "Report List" +msgstr "Segnala la lista" + +#: src/view/com/modals/report/SendReportButton.tsx:37 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 +msgid "Report post" +msgstr "Segnala il post" + +#: src/view/com/modals/Repost.tsx:43 +#: src/view/com/modals/Repost.tsx:48 +#: src/view/com/modals/Repost.tsx:53 +#: src/view/com/util/post-ctrls/RepostButton.tsx:61 +msgctxt "action" +msgid "Repost" +msgstr "Ripubblicare" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:48 +msgid "Repost" +msgstr "Ripubblicare" + +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:94 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:105 +msgid "Repost or quote post" +msgstr "Ripubblicare o citare il post" + +#: src/view/screens/PostRepostedBy.tsx:27 +#~ msgid "Reposted by" +#~ msgstr "Ripubblicato da" + +#: src/view/screens/PostRepostedBy.tsx:27 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:205 +msgid "Reposted by {0}" +msgstr "" + +#: src/view/com/posts/FeedItem.tsx:206 +#~ msgid "Reposted by {0})" +#~ msgstr "Ripubblicato da {0})" + +#: src/view/com/posts/FeedItem.tsx:222 +msgid "Reposted by <0/>" +msgstr "Ripubblicato da <0/>" + +#: src/view/com/notifications/FeedItem.tsx:162 +msgid "reposted your post" +msgstr "ripubblicato il tuo post" + +#: src/view/com/post-thread/PostThreadItem.tsx:186 +msgid "Reposts of this post" +msgstr "Ripubblicazione di questo post" + +#: src/view/com/modals/ChangeEmail.tsx:181 +#: src/view/com/modals/ChangeEmail.tsx:183 +msgid "Request Change" +msgstr "Richiedi un cambio" + +#: src/view/com/auth/create/Step2.tsx:219 +#~ msgid "Request code" +#~ msgstr "Richiedi un codice" + +#: src/view/com/modals/ChangePassword.tsx:239 +#: src/view/com/modals/ChangePassword.tsx:241 +msgid "Request Code" +msgstr "" + +#: src/view/screens/Settings/index.tsx:456 +msgid "Require alt text before posting" +msgstr "Richiedi il testo alternativo prima di pubblicare" + +#: src/view/com/auth/create/Step1.tsx:153 +msgid "Required for this provider" +msgstr "Obbligatorio per questo operatore" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:124 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:136 +msgid "Reset code" +msgstr "Reimpostare il codice" + +#: src/view/com/modals/ChangePassword.tsx:190 +msgid "Reset Code" +msgstr "" + +#: src/view/screens/Settings/index.tsx:824 +msgid "Reset onboarding" +msgstr "Reimposta l'incorporazione" + +#: src/view/screens/Settings/index.tsx:827 +msgid "Reset onboarding state" +msgstr "Reimposta lo stato dell' incorporazione" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 +msgid "Reset password" +msgstr "Reimposta la password" + +#: src/view/screens/Settings/index.tsx:814 +msgid "Reset preferences" +msgstr "Reimposta le preferenze" + +#: src/view/screens/Settings/index.tsx:817 +msgid "Reset preferences state" +msgstr "Reimposta lo stato delle preferenze" + +#: src/view/screens/Settings/index.tsx:825 +msgid "Resets the onboarding state" +msgstr "Reimposta lo stato dell'incorporazione" + +#: src/view/screens/Settings/index.tsx:815 +msgid "Resets the preferences state" +msgstr "Reimposta lo stato delle preferenze" + +#: src/view/com/auth/login/LoginForm.tsx:269 +msgid "Retries login" +msgstr "Ritenta l'accesso" + +#: src/view/com/util/error/ErrorMessage.tsx:57 +#: src/view/com/util/error/ErrorScreen.tsx:74 +msgid "Retries the last action, which errored out" +msgstr "Ritenta l'ultima azione che ha generato un errore" + +#: src/screens/Onboarding/StepInterests/index.tsx:221 +#: src/screens/Onboarding/StepInterests/index.tsx:224 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 +#: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:72 +msgid "Retry" +msgstr "Riprova" + +#: src/view/com/auth/create/Step2.tsx:247 +#~ msgid "Retry." +#~ msgstr "Riprova." + +#: src/view/screens/ProfileList.tsx:898 +msgid "Return to previous page" +msgstr "Ritorna alla pagina precedente" + +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "SANDBOX. I post e gli account non sono permanenti." + +#: src/view/com/lightbox/Lightbox.tsx:132 +#: src/view/com/modals/CreateOrEditList.tsx:345 +msgctxt "action" +msgid "Save" +msgstr "Salva" + +#: src/view/com/modals/BirthDateSettings.tsx:94 +#: src/view/com/modals/BirthDateSettings.tsx:97 +#: src/view/com/modals/ChangeHandle.tsx:173 +#: src/view/com/modals/CreateOrEditList.tsx:337 +#: src/view/com/modals/EditProfile.tsx:224 +#: src/view/screens/ProfileFeed.tsx:346 +msgid "Save" +msgstr "Salva" + +#: src/view/com/modals/AltImage.tsx:130 +msgid "Save alt text" +msgstr "Salva il testo alternativo" + +#: src/view/com/modals/EditProfile.tsx:232 +msgid "Save Changes" +msgstr "Salva i cambi" + +#: src/view/com/modals/ChangeHandle.tsx:170 +msgid "Save handle change" +msgstr "Salva la modifica del tuo identificatore" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:144 +msgid "Save image crop" +msgstr "Salva il ritaglio dell'immagine" + +#: src/view/screens/SavedFeeds.tsx:122 +msgid "Saved Feeds" +msgstr "Canali salvati" + +#: src/view/com/modals/EditProfile.tsx:225 +msgid "Saves any changes to your profile" +msgstr "Salva eventuali modifiche al tuo profilo" + +#: src/view/com/modals/ChangeHandle.tsx:171 +msgid "Saves handle change to {handle}" +msgstr "Salva la modifica del cambio dell'utente in {handle}" + +#: src/screens/Onboarding/index.tsx:36 +msgid "Science" +msgstr "" + +#: src/view/screens/ProfileList.tsx:854 +msgid "Scroll to top" +msgstr "Scorri verso l'alto" + +#: src/Navigation.tsx:440 +#: src/view/com/auth/LoggedOut.tsx:122 +#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 +#: src/view/screens/Search/Search.tsx:418 +#: src/view/screens/Search/Search.tsx:645 +#: src/view/screens/Search/Search.tsx:663 +#: src/view/shell/bottom-bar/BottomBar.tsx:159 +#: src/view/shell/desktop/LeftNav.tsx:324 +#: src/view/shell/desktop/Search.tsx:214 +#: src/view/shell/desktop/Search.tsx:223 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 +msgid "Search" +msgstr "Cerca" + +#: src/view/screens/Search/Search.tsx:712 +#: src/view/shell/desktop/Search.tsx:255 +msgid "Search for \"{query}\"" +msgstr "Cerca \"{query}\"" + +#: src/view/com/auth/LoggedOut.tsx:104 +#: src/view/com/auth/LoggedOut.tsx:105 +#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +msgid "Search for users" +msgstr "Cerca utenti" + +#: src/view/com/modals/ChangeEmail.tsx:110 +msgid "Security Step Required" +msgstr "Passaggio di sicurezza obbligatorio" + +#: src/view/screens/SavedFeeds.tsx:163 +msgid "See this guide" +msgstr "Consulta questa guida" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:39 +msgid "See what's next" +msgstr "Scopri cosa c'ĆØ dopo" + +#: src/view/com/util/Selector.tsx:106 +msgid "Select {item}" +msgstr "Seleziona {item}" + +#: src/view/com/modals/ServerInput.tsx:75 +#~ msgid "Select Bluesky Social" +#~ msgstr "Seleziona Bluesky Social" + +#: src/view/com/auth/login/Login.tsx:117 +msgid "Select from an existing account" +msgstr "Seleziona da un account esistente" + +#: src/view/com/util/Selector.tsx:107 +msgid "Select option {i} of {numItems}" +msgstr "Seleziona l'opzione {i} di {numItems}" + +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 +msgid "Select service" +msgstr "Selecciona el servei" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 +msgid "Select some accounts below to follow" +msgstr "" + +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 +msgid "Select topical feeds to follow from the list below" +msgstr "" + +#: src/screens/Onboarding/StepModeration/index.tsx:75 +msgid "Select what you want to see (or not see), and we’ll handle the rest." +msgstr "" + +#: src/view/screens/LanguageSettings.tsx:281 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "Seleziona le lingue che desideri includere nei feed a cui sei iscritto. Se non ne viene selezionata nessuna, verranno visualizzate tutte le lingue." + +#: src/view/screens/LanguageSettings.tsx:98 +msgid "Select your app language for the default text to display in the app" +msgstr "Seleziona la lingua dell'app per il testo predefinito da visualizzare nell'app" + +#: src/screens/Onboarding/StepInterests/index.tsx:196 +msgid "Select your interests from the options below" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:155 +#~ msgid "Select your phone's country" +#~ msgstr "Seleziona il Paese del tuo cellulare" + +#: src/view/screens/LanguageSettings.tsx:190 +msgid "Select your preferred language for translations in your feed." +msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed." + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:116 +msgid "Select your primary algorithmic feeds" +msgstr "" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 +msgid "Select your secondary algorithmic feeds" +msgstr "" + +#: src/view/com/modals/VerifyEmail.tsx:202 +#: src/view/com/modals/VerifyEmail.tsx:204 +msgid "Send Confirmation Email" +msgstr "Invia email di conferma" + +#: src/view/com/modals/DeleteAccount.tsx:131 +msgid "Send email" +msgstr "Invia email" + +#: src/view/com/modals/DeleteAccount.tsx:144 +msgctxt "action" +msgid "Send Email" +msgstr "Invia email" + +#~ msgid "Send Email" +#~ msgstr "Envia correu" + +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 +msgid "Send feedback" +msgstr "Invia feedback" + +#: src/view/com/modals/report/SendReportButton.tsx:45 +msgid "Send Report" +msgstr "Invia segnalazione" + +#: src/view/com/modals/DeleteAccount.tsx:133 +msgid "Sends email with confirmation code for account deletion" +msgstr "Invia un'email con il codice di conferma per la cancellazione dell'account" + +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 +msgid "Set {value} for {labelGroup} content moderation policy" +msgstr "Imposta {value} per la politica di moderazione dei contenuti di {labelGroup}" + +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 +msgctxt "action" +msgid "Set Age" +msgstr "Imposta l'etĆ " + +#: src/view/screens/Settings/index.tsx:488 +msgid "Set color theme to dark" +msgstr "Imposta il colore del tema scuro" + +#: src/view/screens/Settings/index.tsx:481 +msgid "Set color theme to light" +msgstr "Imposta il colore del tema su chiaro" + +#: src/view/screens/Settings/index.tsx:475 +msgid "Set color theme to system setting" +msgstr "Imposta il colore del tema basato sulle impostazioni del tuo sistema" + +#: src/view/screens/Settings/index.tsx:514 +msgid "Set dark theme to the dark theme" +msgstr "" + +#: src/view/screens/Settings/index.tsx:507 +msgid "Set dark theme to the dim theme" +msgstr "" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:104 +msgid "Set new password" +msgstr "Imposta una nuova password" + +#: src/view/com/auth/create/Step1.tsx:225 +msgid "Set password" +msgstr "Imposta la password" + +#: src/view/screens/PreferencesFollowingFeed.tsx:225 +msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." +msgstr "Seleziona \"No\" per nascondere tutti i post con le citazioni dal tuo feed. I repost saranno ancora visibili." + +#: src/view/screens/PreferencesFollowingFeed.tsx:122 +msgid "Set this setting to \"No\" to hide all replies from your feed." +msgstr "Seleziona \"No\" per nascondere tutte le risposte dal tuo feed." + +#: src/view/screens/PreferencesFollowingFeed.tsx:191 +msgid "Set this setting to \"No\" to hide all reposts from your feed." +msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed." + +#: src/view/screens/PreferencesThreads.tsx:122 +msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." +msgstr "Seleziona \"SƬ\" per mostrare le risposte in una visualizzazione concatenata. Questa ĆØ una funzionalitĆ  sperimentale." + +#: src/view/screens/PreferencesHomeFeed.tsx:261 +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Seleziona \"SƬ\" per mostrare esempi dei feed salvati nel feed successivo. Questa ĆØ una funzionalitĆ  sperimentale." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:50 +msgid "Set up your account" +msgstr "" + +#: src/view/com/modals/ChangeHandle.tsx:266 +msgid "Sets Bluesky username" +msgstr "Imposta il tuo nome utente di Bluesky" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 +msgid "Sets email for password reset" +msgstr "Imposta l'email per la reimpostazione della password" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 +msgid "Sets hosting provider for password reset" +msgstr "Imposta il provider del hosting per la reimpostazione della password" + +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 +msgid "Sets server for the Bluesky client" +msgstr "Imposta il server per il client Bluesky" + +#: src/Navigation.tsx:135 +#: src/view/screens/Settings/index.tsx:294 +#: src/view/shell/desktop/LeftNav.tsx:433 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 +msgid "Settings" +msgstr "Impostazioni" + +#: src/view/com/modals/SelfLabel.tsx:125 +msgid "Sexual activity or erotic nudity." +msgstr "AttivitĆ  sessuale o nuditĆ  erotica." + +#: src/view/com/lightbox/Lightbox.tsx:141 +msgctxt "action" +msgid "Share" +msgstr "Condividi" + +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 +msgid "Share" +msgstr "Condividi" + +#: src/view/screens/ProfileFeed.tsx:305 +msgid "Share feed" +msgstr "Condividi il feed" + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 +#: src/view/com/util/moderation/ContentHider.tsx:107 +#: src/view/com/util/moderation/PostHider.tsx:108 +#: src/view/screens/Settings/index.tsx:344 +msgid "Show" +msgstr "Mostra" + +#: src/view/screens/PreferencesFollowingFeed.tsx:68 +msgid "Show all replies" +msgstr "Mostra tutte le repliche" + +#: src/view/com/util/moderation/ScreenHider.tsx:132 +msgid "Show anyway" +msgstr "Mostra comunque" + +#: src/view/com/modals/EmbedConsent.tsx:87 +msgid "Show embeds from {0}" +msgstr "Mostra incorporamenti di {0}" + +#: src/view/com/profile/ProfileHeader.tsx:459 +msgid "Show follows similar to {0}" +msgstr "Mostra follows simile a {0}" + +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 +msgid "Show More" +msgstr "Mostra di più" + +#: src/view/screens/PreferencesFollowingFeed.tsx:258 +msgid "Show Posts from My Feeds" +msgstr "Mostra post dai miei feed" + +#: src/view/screens/PreferencesFollowingFeed.tsx:222 +msgid "Show Quote Posts" +msgstr "Mostra post con citazioni" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:118 +msgid "Show quote-posts in Following feed" +msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:134 +msgid "Show quotes in Following" +msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:94 +msgid "Show re-posts in Following feed" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:119 +msgid "Show Replies" +msgstr "Mostra risposte" + +#: src/view/screens/PreferencesThreads.tsx:100 +msgid "Show replies by people you follow before all other replies." +msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." + +#: src/screens/Onboarding/StepFollowingFeed.tsx:86 +msgid "Show replies in Following" +msgstr "" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:70 +msgid "Show replies in Following feed" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:70 +msgid "Show replies with at least {value} {0}" +msgstr "Mostra risposte con almeno {value} {0}" + +#: src/view/screens/PreferencesFollowingFeed.tsx:188 +msgid "Show Reposts" +msgstr "Mostra ripubblicazioni" + +#: src/screens/Onboarding/StepFollowingFeed.tsx:110 +msgid "Show reposts in Following" +msgstr "" + +#: src/view/com/util/moderation/ContentHider.tsx:67 +#: src/view/com/util/moderation/PostHider.tsx:61 +msgid "Show the content" +msgstr "Mostra il contenuto" + +#: src/view/com/notifications/FeedItem.tsx:346 +msgid "Show users" +msgstr "Mostra utenti" + +#: src/view/com/profile/ProfileHeader.tsx:462 +msgid "Shows a list of users similar to this user." +msgstr "Mostra un elenco di utenti simili a questo utente." + +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 +msgid "Shows posts from {0} in your feed" +msgstr "Mostra i post di {0} nel tuo feed" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:70 +#: src/view/com/auth/login/Login.tsx:98 +#: src/view/com/auth/SplashScreen.tsx:79 +#: src/view/shell/bottom-bar/BottomBar.tsx:285 +#: src/view/shell/bottom-bar/BottomBar.tsx:286 +#: src/view/shell/bottom-bar/BottomBar.tsx:288 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:178 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:179 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:181 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:59 +msgid "Sign in" +msgstr "Accedi" + +#: src/view/com/auth/HomeLoggedOutCTA.tsx:78 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 +msgid "Sign In" +msgstr "Accedi" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:44 +msgid "Sign in as {0}" +msgstr "Accedi come... {0}" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:118 +#: src/view/com/auth/login/Login.tsx:116 +msgid "Sign in as..." +msgstr "Accedi come..." + +#: src/view/com/auth/login/LoginForm.tsx:137 +msgid "Sign into" +msgstr "Accedere a" + +#: src/view/com/modals/SwitchAccount.tsx:64 +#: src/view/com/modals/SwitchAccount.tsx:69 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 +msgid "Sign out" +msgstr "Disconnettiti" + +#: src/view/shell/bottom-bar/BottomBar.tsx:275 +#: src/view/shell/bottom-bar/BottomBar.tsx:276 +#: src/view/shell/bottom-bar/BottomBar.tsx:278 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:168 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:169 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:171 +#: src/view/shell/NavSignupCard.tsx:49 +#: src/view/shell/NavSignupCard.tsx:50 +#: src/view/shell/NavSignupCard.tsx:52 +msgid "Sign up" +msgstr "Iscrizione" + +#: src/view/shell/NavSignupCard.tsx:42 +msgid "Sign up or sign in to join the conversation" +msgstr "Iscriviti o accedi per partecipare alla conversazione" + +#: src/view/com/util/moderation/ScreenHider.tsx:76 +msgid "Sign-in Required" +msgstr "ƈ richiesta l'autenticazione" + +#: src/view/screens/Settings/index.tsx:355 +msgid "Signed in as" +msgstr "Registrato come" + +#: src/view/com/auth/login/ChooseAccountForm.tsx:103 +msgid "Signed in as @{0}" +msgstr "Registrato come @{0}" + +#: src/view/com/modals/SwitchAccount.tsx:66 +msgid "Signs {0} out of Bluesky" +msgstr "{0} esce da Bluesky" + +#: src/screens/Onboarding/StepInterests/index.tsx:235 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 +msgid "Skip" +msgstr "Salta questo passo" + +#: src/screens/Onboarding/StepInterests/index.tsx:232 +msgid "Skip this flow" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:82 +#~ msgid "SMS verification" +#~ msgstr "Verifica tramite SMS" + +#: src/screens/Onboarding/index.tsx:40 +msgid "Software Dev" +msgstr "" + +#: src/view/com/modals/ProfilePreview.tsx:62 +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Qualcosa ĆØ andato storto ma non siamo sicuri di cosa." + +#: src/view/com/modals/Waitlist.tsx:51 +msgid "Something went wrong. Check your email and try again." +msgstr "Qualcosa ĆØ andato storto. Controlla la tua email e riprova." + +#: src/App.native.tsx:61 +msgid "Sorry! Your session expired. Please log in again." +msgstr "Scusa! La tua sessione ĆØ scaduta. Per favore accedi di nuovo." + +#: src/view/screens/PreferencesThreads.tsx:69 +msgid "Sort Replies" +msgstr "Ordina le risposte" + +#: src/view/screens/PreferencesThreads.tsx:72 +msgid "Sort replies to the same post by:" +msgstr "Ordina le risposte allo stesso post per:" + +#: src/screens/Onboarding/index.tsx:30 +msgid "Sports" +msgstr "" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:122 +msgid "Square" +msgstr "Quadrato" + +#: src/view/com/modals/ServerInput.tsx:62 +#~ msgid "Staging" +#~ msgstr "Allestimento" + +#: src/view/screens/Settings/index.tsx:871 +msgid "Status page" +msgstr "Pagina di stato" + +#: src/view/com/auth/create/StepHeader.tsx:22 +msgid "Step {0} of {numSteps}" +msgstr "Passo {0} di {numSteps}" + +#: src/view/screens/Settings/index.tsx:274 +msgid "Storage cleared, you need to restart the app now." +msgstr "Spazio di archiviazione eliminato. Riavvia l'app." + +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 +msgid "Storybook" +msgstr "Cronologia" + +#: src/view/com/modals/AppealLabel.tsx:101 +msgid "Submit" +msgstr "Invia" + +#: src/view/screens/ProfileList.tsx:608 +msgid "Subscribe" +msgstr "Iscriviti" + +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:173 +#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 +msgid "Subscribe to the {0} feed" +msgstr "" + +#: src/view/screens/ProfileList.tsx:604 +msgid "Subscribe to this list" +msgstr "Iscriviti alla lista" + +#: src/view/screens/Search/Search.tsx:373 +msgid "Suggested Follows" +msgstr "Followers suggeriti" + +#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:64 +msgid "Suggested for you" +msgstr "Suggerito per te" + +#: src/view/com/modals/SelfLabel.tsx:95 +msgid "Suggestive" +msgstr "Suggestivo" + +#: src/Navigation.tsx:212 +#: src/view/screens/Support.tsx:30 +#: src/view/screens/Support.tsx:33 +msgid "Support" +msgstr "Supporto" + +#: src/view/com/modals/ProfilePreview.tsx:110 +#~ msgid "Swipe up to see more" +#~ msgstr "Scorri verso l'alto per vedere di più" + +#: src/view/com/modals/SwitchAccount.tsx:117 +msgid "Switch Account" +msgstr "Cambia account" + +#: src/view/com/modals/SwitchAccount.tsx:97 +#: src/view/screens/Settings/index.tsx:130 +msgid "Switch to {0}" +msgstr "Cambia a {0}" + +#: src/view/com/modals/SwitchAccount.tsx:98 +#: src/view/screens/Settings/index.tsx:131 +msgid "Switches the account you are logged in to" +msgstr "Cambia l'account dal quale hai effettuato l'accesso" + +#: src/view/screens/Settings/index.tsx:472 +msgid "System" +msgstr "Sistema" + +#: src/view/screens/Settings/index.tsx:795 +msgid "System log" +msgstr "Registro di sistema" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:112 +msgid "Tall" +msgstr "Alto" + +#: src/view/com/util/images/AutoSizedImage.tsx:70 +msgid "Tap to view fully" +msgstr "Tocca per visualizzare completamente" + +#: src/screens/Onboarding/index.tsx:39 +msgid "Tech" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:81 +msgid "Terms" +msgstr "Termini" + +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 +#: src/view/screens/TermsOfService.tsx:29 +#: src/view/shell/Drawer.tsx:256 +msgid "Terms of Service" +msgstr "Termini di servizio" + +#: src/view/com/modals/AppealLabel.tsx:70 +#: src/view/com/modals/report/InputIssueDetails.tsx:51 +msgid "Text input field" +msgstr "Campo di testo" + +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 +msgid "The account will be able to interact with you after unblocking." +msgstr "L'account sarĆ  in grado di interagire con te dopo lo sblocco." + +#: src/view/screens/CommunityGuidelines.tsx:36 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "Le Linee guida della community sono state spostate a<0/>" + +#: src/view/screens/CopyrightPolicy.tsx:33 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "La politica sul copyright ĆØ stata spostata a <0/>" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "The following steps will help customize your Bluesky experience." +msgstr "" + +#: src/view/com/post-thread/PostThread.tsx:516 +msgid "The post may have been deleted." +msgstr "Il post potrebbe essere stato cancellato." + +#: src/view/screens/PrivacyPolicy.tsx:33 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "La politica sulla privacy ĆØ stata spostata a <0/><0/>" + +#: src/view/screens/Support.tsx:36 +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 "Il modulo di supporto ĆØ stato spostato. Se hai bisogno di aiuto, <0/> o visita {HELP_DESK_URL} per metterti in contatto con noi." + +#~ 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 "El formulari de suport ha estat traslladat. Si necessites ajuda, <0/> o visita {HELP_DESK_URL} per contactar amb nosaltres." + +#: src/view/screens/TermsOfService.tsx:33 +msgid "The Terms of Service have been moved to" +msgstr "I Termini di Servizio sono stati spostati a" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 +msgid "There are many feeds to try:" +msgstr "" + +#: src/view/screens/ProfileFeed.tsx:550 +msgid "There was an an issue contacting the server, please check your internet connection and try again." +msgstr "Si ĆØ verificato un problema nel contattare il server, controlla la tua connessione Internet e riprova." + +#: src/view/com/posts/FeedErrorMessage.tsx:139 +msgid "There was an an issue removing this feed. Please check your internet connection and try again." +msgstr "Si ĆØ verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." + +#: src/view/screens/ProfileFeed.tsx:210 +msgid "There was an an issue updating your feeds, please check your internet connection and try again." +msgstr "Si ĆØ verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." + +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 +#: src/view/screens/SavedFeeds.tsx:209 +#: src/view/screens/SavedFeeds.tsx:231 +#: src/view/screens/SavedFeeds.tsx:252 +msgid "There was an issue contacting the server" +msgstr "Si ĆØ verificato un problema durante il contatto con il server" + +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 +#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 +msgid "There was an issue contacting your server" +msgstr "Si ĆØ verificato un problema durante il contatto con il tuo server" + +#: src/view/com/notifications/Feed.tsx:117 +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/view/com/posts/Feed.tsx:263 +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." + +#: src/view/com/lists/ListMembers.tsx:172 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "Si ĆØ verificato un problema durante il recupero dell'elenco. Tocca qui per riprovare." + +#: src/view/com/feeds/ProfileFeedgens.tsx:148 +#: src/view/com/lists/ProfileLists.tsx:155 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "Si ĆØ verificato un problema durante il recupero delle tue liste. Tocca qui per riprovare." + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:63 +#: src/view/com/modals/ContentFilteringSettings.tsx:126 +msgid "There was an issue syncing your preferences with the server" +msgstr "Si ĆØ verificato un problema durante la sincronizzazione delle tue preferenze con il server" + +#: src/view/screens/AppPasswords.tsx:66 +msgid "There was an issue with fetching your app passwords" +msgstr "Si ĆØ verificato un problema durante il recupero delle password dell'app" + +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 +msgid "There was an issue! {0}" +msgstr "Si ĆØ verificato un problema! {0}" + +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "Si ĆØ verificato un problema. Per favore controlla la tua connessione Internet e prova di nuovo." + +#: src/view/com/util/ErrorBoundary.tsx:36 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "Si ĆØ verificato un problema imprevisto nell'applicazione. Per favore facci sapere se ti ĆØ successo!" + +#: src/screens/Deactivated.tsx:106 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:55 +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "C'ĆØ qualcosa di sbagliato in questo numero. Scegli il tuo Paese e inserisci il tuo numero di telefono completo!" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 +msgid "These are popular accounts you might like:" +msgstr "" + +#~ msgid "This {0} has been labeled." +#~ msgstr "Este {0} ha sido etiquetado." + +#: src/view/com/util/moderation/ScreenHider.tsx:88 +msgid "This {screenDescription} has been flagged:" +msgstr "Questa {screenDescription} ĆØ stata segnalata:" + +#: src/view/com/util/moderation/ScreenHider.tsx:83 +msgid "This account has requested that users sign in to view their profile." +msgstr "Questo account ha richiesto agli utenti di accedere Bluesky per visualizzare il profilo." + +#: src/view/com/modals/EmbedConsent.tsx:68 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "Questo contenuto ĆØ hosted da {0}. Vuoi abilitare i media esterni?" + +#: src/view/com/modals/ModerationDetails.tsx:67 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "Questo contenuto non ĆØ disponibile perchĆ© uno degli utenti coinvolti ha bloccato l'altro." + +#: src/view/com/posts/FeedErrorMessage.tsx:108 +msgid "This content is not viewable without a Bluesky account." +msgstr "Questo contenuto non ĆØ visualizzabile senza un account Bluesky." + +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/view/com/posts/FeedErrorMessage.tsx:114 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "Questo canale al momento sta ricevendo molte visite ed ĆØ temporaneamente non disponibile. Riprova più tardi." + +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 +msgid "This feed is empty!" +msgstr "Questo feed ĆØ vuoto!" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:37 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "Questo feed ĆØ vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua." + +#: src/view/com/modals/BirthDateSettings.tsx:61 +msgid "This information is not shared with other users." +msgstr "Queste informazioni non vengono condivise con altri utenti." + +#: src/view/com/modals/VerifyEmail.tsx:119 +msgid "This is important in case you ever need to change your email or reset your password." +msgstr "Questo ĆØ importante nel caso in cui avessi bisogno di modificare la tua email o reimpostare la password." + +#~ msgid "This is the service that keeps you online." +#~ msgstr "Aquest Ć©s el servei que et mantĆ© connectat." + +#: src/view/com/modals/LinkWarning.tsx:58 +msgid "This link is taking you to the following website:" +msgstr "Questo link ti porta al seguente sito web:" + +#: src/view/screens/ProfileList.tsx:834 +msgid "This list is empty!" +msgstr "La lista ĆØ vuota!" + +#: src/view/com/modals/AddAppPasswords.tsx:106 +msgid "This name is already in use" +msgstr "Questo nome ĆØ giĆ  in uso" + +#: src/view/com/post-thread/PostThreadItem.tsx:123 +msgid "This post has been deleted." +msgstr "Questo post ĆØ stato cancellato." + +#: src/view/com/modals/ModerationDetails.tsx:62 +msgid "This user has blocked you. You cannot view their content." +msgstr "Questo utente ti ha bloccato. Non ĆØ possibile visualizzare il suo contenuto." + +#: src/view/com/modals/ModerationDetails.tsx:42 +msgid "This user is included in the <0/> list which you have blocked." +msgstr "Questo utente ĆØ incluso nell'elenco <0/> che hai bloccato." + +#: src/view/com/modals/ModerationDetails.tsx:74 +msgid "This user is included in the <0/> list which you have muted." +msgstr "" + +#: src/view/com/modals/ModerationDetails.tsx:74 +#~ msgid "This user is included the <0/> list which you have muted." +#~ msgstr "Questo utente ĆØ incluso nell'elenco <0/> che hai silenziato." + +#: src/view/com/modals/SelfLabel.tsx:137 +msgid "This warning is only available for posts with media attached." +msgstr "Questo avviso ĆØ disponibile solo per i post con contenuti multimediali allegati." + +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 +msgid "This will hide this post from your feeds." +msgstr "Questo nasconderĆ  il post dai tuoi feeds." + +#: src/view/screens/PreferencesThreads.tsx:53 +#: src/view/screens/Settings/index.tsx:565 +msgid "Thread Preferences" +msgstr "Preferenze delle discussioni" + +#: src/view/screens/PreferencesThreads.tsx:119 +msgid "Threaded Mode" +msgstr "ModalitĆ  discussione" + +#: src/Navigation.tsx:255 +msgid "Threads Preferences" +msgstr "Preferenze per le discussioni" + +#: src/view/com/util/forms/DropdownButton.tsx:246 +msgid "Toggle dropdown" +msgstr "Attiva/disattiva il menu a discesa" + +#: src/view/com/modals/EditImage.tsx:271 +msgid "Transformations" +msgstr "Trasformazioni" + +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 +msgid "Translate" +msgstr "Tradurre" + +#: src/view/com/util/error/ErrorScreen.tsx:82 +msgctxt "action" +msgid "Try again" +msgstr "Riprova" + +#~ msgid "Try again" +#~ msgstr "Torna-ho a provar" + +#: src/view/screens/ProfileList.tsx:506 +msgid "Un-block list" +msgstr "Sblocca la lista" + +#: src/view/screens/ProfileList.tsx:491 +msgid "Un-mute list" +msgstr "Riattiva questa lista" + +#: src/view/com/auth/create/CreateAccount.tsx:58 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:87 +#: src/view/com/auth/login/Login.tsx:76 +#: src/view/com/auth/login/LoginForm.tsx:118 +#: src/view/com/modals/ChangePassword.tsx:70 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet." + +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 +msgid "Unblock" +msgstr "Sblocca" + +#: src/view/com/profile/ProfileHeader.tsx:436 +msgctxt "action" +msgid "Unblock" +msgstr "Sblocca" + +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 +msgid "Unblock Account" +msgstr "Sblocca il conto" + +#: src/view/com/modals/Repost.tsx:42 +#: src/view/com/modals/Repost.tsx:55 +#: src/view/com/util/post-ctrls/RepostButton.tsx:60 +#: src/view/com/util/post-ctrls/RepostButton.web.tsx:48 +msgid "Undo repost" +msgstr "Annulla la ripubblicazione" + +#: src/view/com/profile/FollowButton.tsx:55 +msgctxt "action" +msgid "Unfollow" +msgstr "Smetti di seguire" + +#: src/view/com/profile/ProfileHeader.tsx:485 +msgid "Unfollow {0}" +msgstr "Smetti di seguire {0}" + +#: src/view/com/auth/create/state.ts:262 +msgid "Unfortunately, you do not meet the requirements to create an account." +msgstr "Sfortunatamente, non soddisfi i requisiti per creare un account." + +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 +msgid "Unlike" +msgstr "Togli Mi piace" + +#: src/view/screens/ProfileList.tsx:597 +msgid "Unmute" +msgstr "Riattiva" + +#: src/view/com/profile/ProfileHeader.tsx:326 +msgid "Unmute Account" +msgstr "Riattiva questo account" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 +msgid "Unmute thread" +msgstr "Riattiva questa discussione" + +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 +msgid "Unpin" +msgstr "Stacca dal profilo" + +#: src/view/screens/ProfileList.tsx:474 +msgid "Unpin moderation list" +msgstr "Stacca la lista di moderazione" + +#: src/view/screens/ProfileFeed.tsx:346 +msgid "Unsave" +msgstr "Rimuovi" + +#: src/view/com/modals/UserAddRemoveLists.tsx:70 +msgid "Update {displayName} in Lists" +msgstr "Aggiorna {displayName} negli elenchi" + +#: src/lib/hooks/useOTAUpdate.ts:15 +msgid "Update Available" +msgstr "Aggiornamento disponibile" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:204 +msgid "Updating..." +msgstr "In aggiornamento..." + +#: src/view/com/modals/ChangeHandle.tsx:455 +msgid "Upload a text file to:" +msgstr "Carica una file di testo a:" + +#: src/view/screens/AppPasswords.tsx:195 +msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." +msgstr "Utilizza le password dell'app per accedere ad altri client Bluesky senza fornire l'accesso completo al tuo account o alla tua password." + +#: src/view/com/modals/ChangeHandle.tsx:515 +msgid "Use default provider" +msgstr "Utilizza il tuo provider predefinito" + +#: src/view/com/modals/InAppBrowserConsent.tsx:56 +#: src/view/com/modals/InAppBrowserConsent.tsx:58 +msgid "Use in-app browser" +msgstr "Utilizza il browser dell'app" + +#: src/view/com/modals/InAppBrowserConsent.tsx:66 +#: src/view/com/modals/InAppBrowserConsent.tsx:68 +msgid "Use my default browser" +msgstr "Utilizza il mio browser predefinito" + +#: src/view/com/modals/AddAppPasswords.tsx:155 +msgid "Use this to sign into the other app along with your handle." +msgstr "Utilizza questo per accedere all'altra app insieme al tuo nome utente." + +#: src/view/com/modals/ServerInput.tsx:105 +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Utilizza il tuo dominio come provider di servizi clienti Bluesky" + +#: src/view/com/modals/InviteCodes.tsx:200 +msgid "Used by:" +msgstr "Usato da:" + +#: src/view/com/modals/ModerationDetails.tsx:54 +msgid "User Blocked" +msgstr "Utente bloccato" + +#: src/view/com/modals/ModerationDetails.tsx:40 +msgid "User Blocked by List" +msgstr "Utente bloccato dalla lista" + +#: src/view/com/modals/ModerationDetails.tsx:60 +msgid "User Blocks You" +msgstr "Questo utente ti blocca" + +#: src/view/com/auth/create/Step2.tsx:79 +msgid "User handle" +msgstr "Handle dell'utente" + +#: src/view/com/lists/ListCard.tsx:85 +#: src/view/com/modals/UserAddRemoveLists.tsx:198 +msgid "User list by {0}" +msgstr "Lista utenti di {0}" + +#: src/view/screens/ProfileList.tsx:762 +msgid "User list by <0/>" +msgstr "Lista utenti di<0/>" + +#: src/view/com/lists/ListCard.tsx:83 +#: src/view/com/modals/UserAddRemoveLists.tsx:196 +#: src/view/screens/ProfileList.tsx:760 +msgid "User list by you" +msgstr "La tua lista utenti" + +#: src/view/com/modals/CreateOrEditList.tsx:196 +msgid "User list created" +msgstr "Lista utenti creata" + +#: src/view/com/modals/CreateOrEditList.tsx:182 +msgid "User list updated" +msgstr "Lista utenti aggiornata" + +#: src/view/screens/Lists.tsx:58 +msgid "User Lists" +msgstr "Lista utenti" + +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 +msgid "Username or email address" +msgstr "Nome utente o indirizzo Email" + +#: src/view/screens/ProfileList.tsx:796 +msgid "Users" +msgstr "Utenti" + +#: src/view/com/threadgate/WhoCanReply.tsx:143 +msgid "users followed by <0/>" +msgstr "utenti seguiti da <0/>" + +#: src/view/com/modals/Threadgate.tsx:106 +msgid "Users in \"{0}\"" +msgstr "Utenti in Ā«{0}Ā»" + +#: src/view/com/auth/create/Step2.tsx:243 +#~ msgid "Verification code" +#~ msgstr "Codice di verifica" + +#: src/view/screens/Settings/index.tsx:910 +msgid "Verify email" +msgstr "Verifica Email" + +#: src/view/screens/Settings/index.tsx:935 +msgid "Verify my email" +msgstr "Verifica la mia email" + +#: src/view/screens/Settings/index.tsx:944 +msgid "Verify My Email" +msgstr "Verifica la Mia Email" + +#: src/view/com/modals/ChangeEmail.tsx:205 +#: src/view/com/modals/ChangeEmail.tsx:207 +msgid "Verify New Email" +msgstr "Verifica la nuova email" + +#: src/view/com/modals/VerifyEmail.tsx:103 +msgid "Verify Your Email" +msgstr "Verifica la tua email" + +#: src/screens/Onboarding/index.tsx:42 +msgid "Video Games" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:662 +msgid "View {0}'s avatar" +msgstr "Vedi l'avatar di {0}" + +#: src/view/screens/Log.tsx:52 +msgid "View debug entry" +msgstr "Vedi le informazioni del debug" + +#: src/view/com/posts/FeedSlice.tsx:103 +msgid "View full thread" +msgstr "Vedi la discussione completa" + +#: src/view/com/posts/FeedErrorMessage.tsx:172 +msgid "View profile" +msgstr "Vedi il profilo" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:128 +msgid "View the avatar" +msgstr "Vedi l'avatar" + +#: src/view/com/modals/LinkWarning.tsx:75 +msgid "Visit Site" +msgstr "Visita il sito" + +#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 +msgid "Warn" +msgstr "Avvisa" + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 +msgid "We also think you'll like \"For You\" by Skygaze:" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:93 +msgid "We hope you have a wonderful time. Remember, Bluesky is:" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "Abbiamo esaurito i posts dei tuoi follower. Ecco le ultime novitĆ  da <0/>." + +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +msgid "We recommend our \"Discover\" feed:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:133 +msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." +msgstr "" + +#: src/screens/Deactivated.tsx:137 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/view/com/modals/AppealLabel.tsx:48 +msgid "We'll look into your appeal promptly." +msgstr "Esamineremo il tuo ricorso al più presto." + +#: src/screens/Onboarding/StepInterests/index.tsx:138 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/view/com/auth/create/CreateAccount.tsx:134 +msgid "We're so excited to have you join us!" +msgstr "Siamo felici che tu ti unisca a noi!" + +#: src/view/screens/ProfileList.tsx:86 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il problema persiste, contatta il creatore della lista, @{handleOrDid}." + +#: src/view/screens/Search/Search.tsx:253 +msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "Siamo spiacenti, ma non ĆØ stato possibile completare la ricerca. Riprova tra qualche minuto." + +#: src/view/screens/NotFound.tsx:48 +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." + +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:46 +msgid "Welcome to <0>Bluesky" +msgstr "Ti diamo il benvenuto a <0>Bluesky" + +#: src/screens/Onboarding/StepInterests/index.tsx:130 +msgid "What are your interests?" +msgstr "" + +#: src/view/com/modals/report/Modal.tsx:169 +msgid "What is the issue with this {collectionName}?" +msgstr "Qual ĆØ il problema con questo {collectionName}?" + +#~ msgid "What's next?" +#~ msgstr "ĀæQuĆ© sigue?" + +#: src/view/com/auth/SplashScreen.tsx:59 +#: src/view/com/composer/Composer.tsx:279 +msgid "What's up?" +msgstr "Come va?" + +#: src/view/com/modals/lang-settings/PostLanguagesSettings.tsx:78 +msgid "Which languages are used in this post?" +msgstr "Che lingue sono utilizzate in questo post?" + +#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 +msgid "Which languages would you like to see in your algorithmic feeds?" +msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feeds?" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 +#: src/view/com/modals/Threadgate.tsx:66 +msgid "Who can reply" +msgstr "Chi può rispondere" + +#: src/view/com/modals/crop-image/CropImage.web.tsx:102 +msgid "Wide" +msgstr "Largo" + +#: src/view/com/composer/Composer.tsx:415 +msgid "Write post" +msgstr "Scrivi un post" + +#: src/view/com/composer/Composer.tsx:278 +#: src/view/com/composer/Prompt.tsx:33 +msgid "Write your reply" +msgstr "Scrivi la tua risposta" + +#: src/screens/Onboarding/index.tsx:28 +msgid "Writers" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:263 +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 +#: src/view/screens/PreferencesThreads.tsx:106 +#: src/view/screens/PreferencesThreads.tsx:129 +msgid "Yes" +msgstr "Si" + +#: src/screens/Deactivated.tsx:130 +msgid "You are in line." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:67 +#: src/view/com/posts/FollowingEndOfFeed.tsx:68 +msgid "You can also discover new Custom Feeds to follow." +msgstr "Puoi anche scoprire nuovi feed personalizzati da seguire." + +#~ msgid "You can change hosting providers at any time." +#~ msgstr "Pots canviar el teu proveĆÆdor d'allotjament quan vulguis." + +#: src/screens/Onboarding/StepFollowingFeed.tsx:142 +msgid "You can change these settings later." +msgstr "" + +#: src/view/com/auth/login/Login.tsx:158 +#: src/view/com/auth/login/PasswordUpdatedForm.tsx:31 +msgid "You can now sign in with your new password." +msgstr "Adesso puoi accedere con la tua nuova password." + +#: src/view/com/modals/InviteCodes.tsx:66 +msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." +msgstr "Non hai ancora alcun codice di invito! Te ne invieremo alcuni quando utilizzerai Bluesky per un po' più a lungo." + +#: src/view/screens/SavedFeeds.tsx:102 +msgid "You don't have any pinned feeds." +msgstr "Non hai fissato nessun feed." + +#: src/view/screens/Feeds.tsx:452 +msgid "You don't have any saved feeds!" +msgstr "Non hai salvato nessun feed!" + +#: src/view/screens/SavedFeeds.tsx:135 +msgid "You don't have any saved feeds." +msgstr "Non hai salvato nessun feed." + +#: src/view/com/post-thread/PostThread.tsx:464 +msgid "You have blocked the author or you have been blocked by the author." +msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore." + +#: src/view/com/modals/ModerationDetails.tsx:56 +msgid "You have blocked this user. You cannot view their content." +msgstr "Hai bloccato questo utente. Non ĆØ possibile visualizzare il contenuto." + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:57 +#: src/view/com/auth/login/SetNewPasswordForm.tsx:92 +#: src/view/com/modals/ChangePassword.tsx:87 +#: src/view/com/modals/ChangePassword.tsx:121 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/view/com/modals/ModerationDetails.tsx:87 +msgid "You have muted this user." +msgstr "Hai silenziato questo utente." + +#: src/view/com/feeds/ProfileFeedgens.tsx:136 +msgid "You have no feeds." +msgstr "Non hai feeds." + +#: src/view/com/lists/MyLists.tsx:89 +#: src/view/com/lists/ProfileLists.tsx:140 +msgid "You have no lists." +msgstr "Non hai liste." + +#: src/view/screens/ModerationBlockedAccounts.tsx:132 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and selected \"Block account\" from the menu on their account." +msgstr "Non hai ancora bloccato nessun conto. Per bloccare un conto, vai al profilo e seleziona \"Blocca conto\" dal menu del suo conto." + +#: src/view/screens/AppPasswords.tsx:87 +msgid "You have not created any app passwords yet. You can create one by pressing the button below." +msgstr "Non hai ancora creato alcuna password per l'app. Puoi crearne uno premendo il pulsante qui sotto." + +#: src/view/screens/ModerationMutedAccounts.tsx:131 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." +msgstr "Non hai ancora disattivato alcun account. Per disattivare un account, vai al suo profilo e seleziona \"Disattiva account\" dal menu del account." + +#: src/view/com/modals/ContentFilteringSettings.tsx:175 +msgid "You must be 18 or older to enable adult content." +msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti." + +#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:103 +msgid "You must be 18 years or older to enable adult content" +msgstr "" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 +msgid "You will no longer receive notifications for this thread" +msgstr "Non riceverai più notifiche per questo filo di discussione" + +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 +msgid "You will now receive notifications for this thread" +msgstr "Adesso riceverai le notifiche per questa discussione" + +#: src/view/com/auth/login/SetNewPasswordForm.tsx:107 +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 reset\". Inserisci il codice qui, poi inserisci la nuova password." + +#: src/screens/Onboarding/StepModeration/index.tsx:72 +msgid "You're in control" +msgstr "" + +#: src/screens/Deactivated.tsx:87 +#: src/screens/Deactivated.tsx:88 +#: src/screens/Deactivated.tsx:103 +msgid "You're in line" +msgstr "" + +#: src/screens/Onboarding/StepFinished.tsx:90 +msgid "You're ready to go!" +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:48 +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/auth/create/Step1.tsx:74 +msgid "Your account" +msgstr "Il tuo account" + +#: src/view/com/modals/DeleteAccount.tsx:67 +msgid "Your account has been deleted" +msgstr "Il tuo account ĆØ stato eliminato" + +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 +msgid "Your birth date" +msgstr "La tua data di nascita" + +#: src/view/com/modals/InAppBrowserConsent.tsx:47 +msgid "Your choice will be saved, but can be changed later in settings." +msgstr "La tua scelta verrĆ  salvata, ma potrĆ  essere modificata successivamente nelle impostazioni." + +#: src/screens/Onboarding/StepFollowingFeed.tsx:61 +msgid "Your default feed is \"Following\"" +msgstr "" + +#: src/view/com/auth/create/state.ts:110 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:70 +#: src/view/com/modals/ChangePassword.tsx:54 +msgid "Your email appears to be invalid." +msgstr "Your email appears to be invalid." + +#: src/view/com/modals/Waitlist.tsx:109 +msgid "Your email has been saved! We'll be in touch soon." +msgstr "La tua email ĆØ stata salvata! Ci metteremo in contatto al più presto." + +#: src/view/com/modals/ChangeEmail.tsx:125 +msgid "Your email has been updated but not verified. As a next step, please verify your new email." +msgstr "La tua email ĆØ stata aggiornata ma non verificata. Come passo successivo, verifica la tua nuova email." + +#: src/view/com/modals/VerifyEmail.tsx:114 +msgid "Your email has not yet been verified. This is an important security step which we recommend." +msgstr "La tua email non ĆØ stata ancora verificata. Ti consigliamo di fare questo importante passo per la sicurezza del tuo account." + +#: src/view/com/posts/FollowingEmptyState.tsx:47 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "Il tuo feed seguente ĆØ vuoto! Segui più utenti per vedere cosa sta succedendo." + +#: src/view/com/auth/create/Step2.tsx:83 +msgid "Your full handle will be" +msgstr "Il tuo nome di utente completo sarĆ " + +#: src/view/com/modals/ChangeHandle.tsx:270 +msgid "Your full handle will be <0>@{0}" +msgstr "Il tuo nome di utente completo sarĆ  <0>@{0}" + +#~ msgid "Your hosting provider" +#~ msgstr "El teu proveĆÆdor d'allotjament" + +#: src/view/screens/Settings.tsx:NaN +#: src/view/shell/Drawer.tsx:660 +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "I tuoi codici di invito vengono celati quando accedi utilizzando una password per l'app" + +#: src/view/com/modals/ChangePassword.tsx:155 +msgid "Your password has been changed successfully!" +msgstr "" + +#: src/view/com/composer/Composer.tsx:267 +msgid "Your post has been published" +msgstr "Il tuo post ĆØ stato pubblicato" + +#: src/screens/Onboarding/StepFinished.tsx:105 +#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:59 +#: src/view/com/auth/onboarding/WelcomeMobile.tsx:59 +msgid "Your posts, likes, and blocks are public. Mutes are private." +msgstr "I tuoi post, i tuoi Mi piace e i tuoi blocchi sono pubblici. I conti silenziati sono privati." + +#: src/view/com/modals/SwitchAccount.tsx:84 +#: src/view/screens/Settings/index.tsx:118 +msgid "Your profile" +msgstr "Il tuo profilo" + +#: src/view/com/composer/Composer.tsx:266 +msgid "Your reply has been published" +msgstr "La tua risposta ĆØ stata pubblicata" + +#: src/view/com/auth/create/Step2.tsx:65 +msgid "Your user handle" +msgstr "Il tuo handle utente" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 4637b9eaf7..a0ad5ffb8d 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -18,8 +18,8 @@ msgid "(no email)" msgstr "ćƒ”ćƒ¼ćƒ«ćŒć‚ć‚Šć¾ć›ć‚“" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, other {# å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, other {# å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½}}" #: src/view/com/modals/CreateOrEditList.tsx:185 #: src/view/screens/Settings.tsx:294 @@ -30,29 +30,29 @@ msgstr "{0, plural, other {# å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½}}" #~ msgid "{0} {purposeLabel} List" #~ msgstr "{0} {purposeLabel} ćƒŖć‚¹ćƒˆ" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following}äŗŗć‚’ćƒ•ć‚©ćƒ­ćƒ¼äø­" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, other {ę‹›å¾…ć‚³ćƒ¼ćƒ‰: # å€‹åˆ©ē”ØåÆčƒ½}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, other {ę‹›å¾…ć‚³ćƒ¼ćƒ‰: # å€‹åˆ©ē”ØåÆčƒ½}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable}å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable}å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable}å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable}å€‹ć®ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒåˆ©ē”ØåÆčƒ½" #: src/view/screens/Search/Search.tsx:87 #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}件の未読" @@ -64,7 +64,7 @@ msgstr "{numUnreadNotifications}件の未読" msgid "<0/> members" msgstr "<0/>のピンバー" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following}<1>äŗŗć‚’ćƒ•ć‚©ćƒ­ćƒ¼äø­" @@ -80,7 +80,7 @@ msgstr "<1>恊恙恙悁恮<2>ćƒ¦ćƒ¼ć‚¶ćƒ¼<0>ć‚’ćƒ•ć‚©ćƒ­ćƒ¼" msgid "<0>Welcome to<1>Bluesky" msgstr "<1>Bluesky<0>ćøć‚ˆć†ć“ć" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "āš äøę­£ćŖćƒćƒ³ćƒ‰ćƒ«" @@ -97,26 +97,26 @@ msgstr "ę–°ć—ć„ćƒćƒ¼ć‚øćƒ§ćƒ³ć®ć‚¢ćƒ—ćƒŖćŒåˆ©ē”ØåÆčƒ½ć§ć™ć€‚ē¶™ē¶šć—ć¦ msgid "Access navigation links and settings" msgstr "ćƒŠćƒ“ć‚²ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖćƒ³ć‚ÆćØčØ­å®šć«ć‚¢ć‚Æć‚»ć‚¹" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ćØä»–ć®ćƒŠćƒ“ć‚²ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖćƒ³ć‚Æć«ć‚¢ć‚Æć‚»ć‚¹" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "ć‚¢ć‚Æć‚»ć‚·ćƒ“ćƒŖćƒ†ć‚£" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æć—ć¾ć—ćŸ" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆć—ć¾ć—ćŸ" @@ -136,11 +136,11 @@ msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚Ŗćƒ—ć‚·ćƒ§ćƒ³" msgid "Account removed from quick access" msgstr "ć‚Æć‚¤ćƒƒć‚Æć‚¢ć‚Æć‚»ć‚¹ć‹ć‚‰ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’č§£é™¤" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ćƒ–ćƒ­ćƒƒć‚Æć‚’č§£é™¤ć—ć¾ć—ćŸ" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ćƒŸćƒ„ćƒ¼ćƒˆć‚’č§£é™¤ć—ć¾ć—ćŸ" @@ -159,8 +159,8 @@ msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®č­¦å‘Šć‚’čæ½åŠ " msgid "Add a user to this list" msgstr "ćƒŖć‚¹ćƒˆć«ćƒ¦ćƒ¼ć‚¶ćƒ¼ć‚’čæ½åŠ " -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’čæ½åŠ " @@ -197,12 +197,12 @@ msgstr "ćƒŖćƒ³ć‚Æć‚«ćƒ¼ćƒ‰ć‚’čæ½åŠ ļ¼š" msgid "Add the following DNS record to your domain:" msgstr "ꬔ恮DNSćƒ¬ć‚³ćƒ¼ćƒ‰ć‚’ćƒ‰ćƒ”ć‚¤ćƒ³ć«čæ½åŠ ć—ć¦ćć ć•ć„ļ¼š" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ćƒŖć‚¹ćƒˆć«čæ½åŠ " -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć«čæ½åŠ " @@ -215,11 +215,11 @@ msgstr "追加済み" msgid "Added to list" msgstr "ćƒŖć‚¹ćƒˆć«čæ½åŠ " -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć«čæ½åŠ " -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "čæ”äæ”ćŒćƒ•ć‚£ćƒ¼ćƒ‰ć«č”Øē¤ŗć•ć‚Œć‚‹ćŸć‚ć«åæ…č¦ćŖć€Œć„ć„ć­ć€ć®ę•°ć‚’čŖæę•“ć—ć¾ć™ć€‚" @@ -227,7 +227,7 @@ msgstr "čæ”äæ”ćŒćƒ•ć‚£ćƒ¼ćƒ‰ć«č”Øē¤ŗć•ć‚Œć‚‹ćŸć‚ć«åæ…č¦ćŖć€Œć„ć„ć­ć€ msgid "Adult Content" msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćÆć‚¦ć‚§ćƒ–(<0/>)ć‹ć‚‰ć®ćæęœ‰åŠ¹åŒ–ć§ćć¾ć™ć€‚" @@ -235,11 +235,15 @@ msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćÆć‚¦ć‚§ćƒ–(<0/>)ć‹ć‚‰ć®ćæęœ‰åŠ¹åŒ–ć§ć #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćÆć‚¦ć‚§ćƒ–(<0>bsky.app)ć‹ć‚‰ć®ćæęœ‰åŠ¹åŒ–ć§ćć¾ć™ć€‚" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "高度な設定" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "ć‚³ćƒ¼ćƒ‰ć‚’ć™ć§ć«ęŒć£ć¦ć„ć¾ć™ć‹ļ¼Ÿ" @@ -298,7 +302,7 @@ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®åå‰ć«ćÆć€č‹±ę•°å­—ć€ć‚¹ćƒšćƒ¼ć‚¹ć€ćƒ msgid "App Password names must be at least 4 characters long." msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®åå‰ćÆé•·ć•ćŒ4ę–‡å­—ä»„äøŠć§ć‚ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®čØ­å®š" @@ -306,13 +310,13 @@ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®čØ­å®š" #~ msgid "App passwords" #~ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®č­¦å‘Šć«ē•°č­°ć‚’ē”³ć—ē«‹ć¦ć‚‹" @@ -332,7 +336,7 @@ msgstr "ć“ć®åˆ¤ę–­ć«ē•°č­°ć‚’ē”³ć—ē«‹ć¦ć‚‹" msgid "Appeal this decision." msgstr "ć“ć®åˆ¤ę–­ć«ē•°č­°ć‚’ē”³ć—ē«‹ć¦ć‚‹" -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "čƒŒę™Æ" @@ -344,11 +348,11 @@ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć€Œ{name}ć€ć‚’ęœ¬å½“ć«å‰Šé™¤ć—ć¾ć™ć‹ļ¼Ÿ" msgid "Are you sure you'd like to discard this draft?" msgstr "ęœ¬å½“ć«ć“ć®äø‹ę›øćć‚’ē “ę£„ć—ć¾ć™ć‹ļ¼Ÿ" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ęœ¬å½“ć«ć‚ˆć‚ć—ć„ć§ć™ć‹ļ¼Ÿ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ęœ¬å½“ć«ć‚ˆć‚ć—ć„ć§ć™ć‹ļ¼Ÿć“ć‚ŒćÆå…ƒć«ęˆ»ć›ć¾ć›ć‚“ć€‚" @@ -364,21 +368,21 @@ msgstr "ć‚¢ćƒ¼ćƒˆ" msgid "Artistic or non-erotic nudity." msgstr "čŠøč”“ēš„ć¾ćŸćÆę€§ēš„ć§ćÆćŖć„ćƒŒćƒ¼ćƒ‰ć€‚" -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ęˆ»ć‚‹" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "ęˆ»ć‚‹" @@ -387,42 +391,42 @@ msgstr "ęˆ»ć‚‹" msgid "Based on your interest in {interestsText}" msgstr "怌{interestsText}ć€ćøć®čˆˆå‘³ć«åŸŗć„ć„ćŸćŠć™ć™ć‚ć§ć™ć€‚" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "基本" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "čŖ•ē”Ÿę—„" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "čŖ•ē”Ÿę—„ļ¼š" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æ" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æ" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "ćƒŖć‚¹ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æ" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ć“ć‚Œć‚‰ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æć—ć¾ć™ć‹ļ¼Ÿ" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "ć“ć®ćƒŖć‚¹ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æ" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "ćƒ–ćƒ­ćƒƒć‚Æć•ć‚Œć¦ć„ć¾ć™" @@ -435,7 +439,7 @@ msgstr "ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" msgid "Blocked Accounts" msgstr "ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć€ć‚ćŖćŸć®ć‚¹ćƒ¬ćƒƒćƒ‰ć§ć®čæ”äæ”ć€ć‚ćŖćŸćøć®ćƒ”ćƒ³ć‚·ćƒ§ćƒ³ć€ćć®ä»–ć®ę–¹ę³•ć§ć‚ćŖćŸćØć‚„ć‚Šå–ć‚Šć™ć‚‹ć“ćØćÆć§ćć¾ć›ć‚“ć€‚" @@ -443,22 +447,29 @@ msgstr "ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć€ć‚ćŖćŸć®ć‚¹ćƒ¬ćƒƒćƒ‰ć§ć®čæ” msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć€ć‚ćŖćŸć®ć‚¹ćƒ¬ćƒƒćƒ‰ć§ć®čæ”äæ”ć€ć‚ćŖćŸćøć®ćƒ”ćƒ³ć‚·ćƒ§ćƒ³ć€ćć®ä»–ć®ę–¹ę³•ć§ć‚ćŖćŸćØć‚„ć‚Šå–ć‚Šć™ć‚‹ć“ćØćÆć§ćć¾ć›ć‚“ć€‚ć‚ćŖćŸćÆē›øę‰‹ć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’č¦‹ć‚‹ć“ćØćŒć§ććšć€ē›øę‰‹ćÆć‚ćŖćŸć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’č¦‹ć‚‹ć“ćØćŒć§ććŖććŖć‚Šć¾ć™ć€‚" -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "ęŠ•ēØæć‚’ćƒ–ćƒ­ćƒƒć‚Æć—ć¾ć—ćŸć€‚" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ćƒ–ćƒ­ćƒƒć‚Æć—ćŸć“ćØćÆå…¬é–‹ć•ć‚Œć¾ć™ć€‚ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć€ć‚ćŖćŸć®ć‚¹ćƒ¬ćƒƒćƒ‰ć§ć®čæ”äæ”ć€ć‚ćŖćŸćøć®ćƒ”ćƒ³ć‚·ćƒ§ćƒ³ć€ćć®ä»–ć®ę–¹ę³•ć§ć‚ćŖćŸćØć‚„ć‚Šå–ć‚Šć™ć‚‹ć“ćØćÆć§ćć¾ć›ć‚“ć€‚" #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "惖惭悰" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "Bluesky ćÆć€ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚° ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ć‚’éøęŠžć§ćć‚‹ć‚Ŗćƒ¼ćƒ—ćƒ³ ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć§ć™ć€‚ ć‚«ć‚¹ć‚æćƒ  ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚°ćÆć€é–‹ē™ŗč€…å‘ć‘ć®ćƒ™ćƒ¼ć‚æē‰ˆć§åˆ©ē”Øć§ćć‚‹ć‚ˆć†ć«ćŖć‚Šć¾ć—ćŸć€‚" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -483,24 +494,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "BlueskyćÆćƒ­ć‚°ć‚¢ć‚¦ćƒˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ć«ć‚ćŖćŸć®ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć‚„ęŠ•ēØæć‚’č”Øē¤ŗć—ć¾ć›ć‚“ć€‚ä»–ć®ć‚¢ćƒ—ćƒŖćÆć“ć®ćƒŖć‚Æć‚Øć‚¹ćƒˆć«åæœć˜ćŖć„å “åˆćŒć‚ć‚Šć¾ć™ć€‚ć“ć®čØ­å®šćÆć‚ćŖćŸć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’éžå…¬é–‹ć«ć™ć‚‹ć‚‚ć®ć§ćÆć‚ć‚Šć¾ć›ć‚“ć€‚" #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "ę›øē±" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "ćƒ“ćƒ«ćƒ‰ćƒćƒ¼ć‚øćƒ§ćƒ³ {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "ćƒ“ć‚øćƒć‚¹" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "ćƒœć‚æćƒ³ćÆē„”åŠ¹ć§ć™ć€‚ē¶šć‘ć‚‹ćŸć‚ć«ćÆć‚«ć‚¹ć‚æćƒ ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "ćƒœć‚æćƒ³ćÆē„”åŠ¹ć§ć™ć€‚ē¶šć‘ć‚‹ćŸć‚ć«ćÆć‚«ć‚¹ć‚æćƒ ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -519,8 +531,8 @@ msgid "by you" msgstr "ä½œęˆč€…ļ¼šć‚ćŖćŸ" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "ć‚«ćƒ”ćƒ©" @@ -528,7 +540,7 @@ msgstr "ć‚«ćƒ”ćƒ©" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "č‹±ę•°å­—ć€ć‚¹ćƒšćƒ¼ć‚¹ć€ćƒć‚¤ćƒ•ćƒ³ć€ć‚¢ćƒ³ćƒ€ćƒ¼ć‚¹ć‚³ć‚¢ć®ćæćŒä½æē”ØåÆčƒ½ć§ć™ć€‚é•·ć•ćÆ4ę–‡å­—ä»„äøŠ32ę–‡å­—ä»„äø‹ć§ć‚ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -592,7 +604,7 @@ msgstr "ę¤œē“¢ć‚’ć‚­ćƒ£ćƒ³ć‚»ćƒ«" msgid "Cancel waitlist signup" msgstr "Waitlistć®ē™»éŒ²ć‚’ć‚­ćƒ£ćƒ³ć‚»ćƒ«" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "変曓" @@ -601,12 +613,12 @@ msgstr "変曓" #~ msgid "Change" #~ msgstr "変曓" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "ćƒćƒ³ćƒ‰ćƒ«ć‚’å¤‰ę›“" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "ćƒćƒ³ćƒ‰ćƒ«ć‚’å¤‰ę›“" @@ -614,11 +626,11 @@ msgstr "ćƒćƒ³ćƒ‰ćƒ«ć‚’å¤‰ę›“" msgid "Change my email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å¤‰ę›“" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“" @@ -626,7 +638,7 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“" msgid "Change post language to {0}" msgstr "ęŠ•ēØæć®čØ€čŖžć‚’{0}に変曓します" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "Blueskyć®ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“" @@ -634,8 +646,8 @@ msgstr "Blueskyć®ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“" msgid "Change Your Email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å¤‰ę›“" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "ć‚¹ćƒ†ćƒ¼ć‚æć‚¹ć‚’ē¢ŗčŖ" @@ -655,11 +667,11 @@ msgstr "å…„åŠ›ć—ćŸćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć®å—äæ”ćƒˆćƒ¬ć‚¤ć‚’ē¢ŗčŖć—ć¦ć€ä»„ msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "ć€Œå…Øå“”ć€ć‹ć€Œčæ”äæ”äøåÆć€ć®ć©ć”ć‚‰ć‹ć‚’éøęŠž" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "Blueskyć®åˆ„ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼åć‚’éøęŠžć™ć‚‹ć‹ć€ę–°č¦ć«ä½œęˆć—ć¾ć™" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "ć‚µćƒ¼ćƒ“ć‚¹ć‚’éøęŠž" @@ -680,29 +692,29 @@ msgstr "ć‚«ć‚¹ć‚æćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ä½æē”Øć—ć¦ć‚ćŖćŸć®ä½“éØ“ć‚’å¼·åŒ–ć™ć‚‹ msgid "Choose your main feeds" msgstr "ćƒ”ć‚¤ćƒ³ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’éøęŠž" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å…„åŠ›" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "ćƒ¬ć‚¬ć‚·ćƒ¼ć‚¹ćƒˆćƒ¬ćƒ¼ć‚øćƒ‡ćƒ¼ć‚æć‚’ć™ć¹ć¦ć‚ÆćƒŖć‚¢" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "ć™ć¹ć¦ć®ćƒ¬ć‚¬ć‚·ćƒ¼ć‚¹ćƒˆćƒ¬ćƒ¼ć‚øćƒ‡ćƒ¼ć‚æć‚’ć‚ÆćƒŖć‚¢ļ¼ˆć“ć®å¾Œå†čµ·å‹•ć—ć¾ć™ļ¼‰" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "ć™ć¹ć¦ć®ć‚¹ćƒˆćƒ¬ćƒ¼ć‚øćƒ‡ćƒ¼ć‚æć‚’ć‚ÆćƒŖć‚¢" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "ć™ć¹ć¦ć®ć‚¹ćƒˆćƒ¬ćƒ¼ć‚øćƒ‡ćƒ¼ć‚æć‚’ć‚ÆćƒŖć‚¢ļ¼ˆć“ć®å¾Œå†čµ·å‹•ć—ć¾ć™ļ¼‰" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "ę¤œē“¢ć‚Æć‚ØćƒŖć‚’ć‚ÆćƒŖć‚¢" @@ -720,7 +732,8 @@ msgstr "ę°—č±”" msgid "Close" msgstr "閉恘悋" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "ć‚¢ć‚Æćƒ†ć‚£ćƒ–ćŖćƒ€ć‚¤ć‚¢ćƒ­ć‚°ć‚’é–‰ć˜ć‚‹" @@ -772,7 +785,7 @@ msgstr "ć‚³ćƒ”ćƒ‡ć‚£ćƒ¼" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒ¼ć‚¬ć‚¤ćƒ‰ćƒ©ć‚¤ćƒ³" @@ -781,6 +794,10 @@ msgstr "ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒ¼ć‚¬ć‚¤ćƒ‰ćƒ©ć‚¤ćƒ³" msgid "Complete onboarding and start using your account" msgstr "åˆęœŸčØ­å®šć‚’å®Œäŗ†ć—ć¦ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½æć„å§‹ć‚ć‚‹" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "{MAX_GRAPHEME_LENGTH}ę–‡å­—ć¾ć§ć®ęŠ•ēØæć‚’ä½œęˆ" @@ -793,12 +810,12 @@ msgstr "čæ”äæ”ć‚’ä½œęˆ" msgid "Configure content filtering setting for category: {0}" msgstr "ć“ć®ć‚«ćƒ†ć‚“ćƒŖć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćƒ•ć‚£ćƒ«ć‚æćƒŖćƒ³ć‚°ć‚’čØ­å®šļ¼š {0}" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ē¢ŗčŖ" @@ -822,7 +839,7 @@ msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®čØ€čŖžčØ­å®šć‚’ē¢ŗčŖ" msgid "Confirm delete account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®å‰Šé™¤ć‚’ē¢ŗčŖ" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ćŸć‚ć«å¹“é½¢ć‚’ē¢ŗčŖć—ć¦ćć ć•ć„ć€‚" @@ -836,12 +853,12 @@ msgstr "ē¢ŗčŖć‚³ćƒ¼ćƒ‰" msgid "Confirms signing up {email} to the waitlist" msgstr "{email}恮Waitlistćøć®ē™»éŒ²ć‚’ē¢ŗčŖ" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ęŽ„ē¶šäø­..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "ć‚µćƒćƒ¼ćƒˆć«é€£ēµ”" @@ -871,11 +888,11 @@ msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®č­¦å‘Š" msgid "Content warnings" msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®č­¦å‘Š" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -884,15 +901,15 @@ msgstr "続蔌" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "ę¬”ć®ć‚¹ćƒ†ćƒƒćƒ—ćøé€²ć‚€" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "ę¬”ć®ć‚¹ćƒ†ćƒƒćƒ—ćøé€²ć‚€" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒ•ć‚©ćƒ­ćƒ¼ć›ćšć«ę¬”ć®ć‚¹ćƒ†ćƒƒćƒ—ćøé€²ć‚€" @@ -905,13 +922,13 @@ msgstr "料理" msgid "Copied" msgstr "ć‚³ćƒ”ćƒ¼ć—ć¾ć—ćŸ" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "ćƒ“ćƒ«ćƒ‰ćƒćƒ¼ć‚øćƒ§ćƒ³ć‚’ć‚ÆćƒŖćƒƒćƒ—ćƒœćƒ¼ćƒ‰ć«ć‚³ćƒ”ćƒ¼ć—ć¾ć—ćŸ" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "ć‚ÆćƒŖćƒƒćƒ—ćƒœćƒ¼ćƒ‰ć«ć‚³ćƒ”ćƒ¼ć—ć¾ć—ćŸ" @@ -923,28 +940,28 @@ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ć‚³ćƒ”ćƒ¼ć—ć¾ć™" msgid "Copy" msgstr "ć‚³ćƒ”ćƒ¼" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "ćƒŖć‚¹ćƒˆćøć®ćƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "ęŠ•ēØæćøć®ćƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ćøć®ćƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ęŠ•ēØæć®ćƒ†ć‚­ć‚¹ćƒˆć‚’ć‚³ćƒ”ćƒ¼" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "č‘—ä½œęØ©ćƒćƒŖć‚·ćƒ¼" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć®ćƒ­ćƒ¼ćƒ‰ć«å¤±ę•—ć—ć¾ć—ćŸ" @@ -953,20 +970,20 @@ msgid "Could not load list" msgstr "ćƒŖć‚¹ćƒˆć®ćƒ­ćƒ¼ćƒ‰ć«å¤±ę•—ć—ć¾ć—ćŸ" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "国" +#~ msgid "Country" +#~ msgstr "国" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "ę–°ć—ć„ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆ" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "ꖰ恗恄Blueskyć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆ" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆ" @@ -975,7 +992,7 @@ msgid "Create App Password" msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ä½œęˆ" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "ę–°ć—ć„ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆ" @@ -999,12 +1016,17 @@ msgstr "ć‚µćƒ ćƒć‚¤ćƒ«ä»˜ćć®ć‚«ćƒ¼ćƒ‰ć‚’ä½œęˆć—ć¾ć™ć€‚ćć®ć‚«ćƒ¼ćƒ‰ćÆ msgid "Culture" msgstr "ę–‡åŒ–" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "ć‚«ć‚¹ć‚æćƒ " + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "ć‚«ć‚¹ć‚æćƒ ćƒ‰ćƒ”ć‚¤ćƒ³" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£ćƒ¼ć«ć‚ˆć£ć¦ä½œęˆć•ć‚ŒćŸć‚«ć‚¹ć‚æćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ćÆć€ć‚ćŖćŸć«ę–°ć—ć„ä½“éØ“ć‚’ć‚‚ćŸć‚‰ć—ć€ć‚ćŖćŸćŒå„½ććŖć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’č¦‹ć¤ć‘ć‚‹ć®ć«å½¹ē«‹ć”ć¾ć™ć€‚" @@ -1016,8 +1038,8 @@ msgstr "å¤–éƒØć‚µć‚¤ćƒˆć®ćƒ”ćƒ‡ć‚£ć‚¢ć‚’ć‚«ć‚¹ć‚æćƒžć‚¤ć‚ŗć—ć¾ć™ć€‚" #~ msgid "Danger Zone" #~ msgstr "å±é™ŗåœ°åøÆ" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "ćƒ€ćƒ¼ć‚Æ" @@ -1025,7 +1047,7 @@ msgstr "ćƒ€ćƒ¼ć‚Æ" msgid "Dark mode" msgstr "ćƒ€ćƒ¼ć‚Æćƒ¢ćƒ¼ćƒ‰" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "ćƒ€ćƒ¼ć‚Æćƒ†ćƒ¼ćƒž" @@ -1037,7 +1059,7 @@ msgstr "ćƒ€ćƒ¼ć‚Æćƒ†ćƒ¼ćƒž" msgid "Debug panel" msgstr "ćƒ‡ćƒćƒƒć‚°ćƒ‘ćƒćƒ«" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å‰Šé™¤" @@ -1050,8 +1072,8 @@ msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å‰Šé™¤" msgid "Delete app password" msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å‰Šé™¤" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "ćƒŖć‚¹ćƒˆć‚’å‰Šé™¤" @@ -1063,23 +1085,23 @@ msgstr "ćƒžć‚¤ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å‰Šé™¤" #~ msgid "Delete my account…" #~ msgstr "ćƒžć‚¤ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å‰Šé™¤ā€¦" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "ćƒžć‚¤ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å‰Šé™¤ā€¦" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ęŠ•ēØæć‚’å‰Šé™¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ć“ć®ęŠ•ēØæć‚’å‰Šé™¤ć—ć¾ć™ć‹ļ¼Ÿ" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "å‰Šé™¤ć•ć‚Œć¦ć„ć¾ć™" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "ęŠ•ēØæć‚’å‰Šé™¤ć—ć¾ć—ćŸć€‚" @@ -1095,14 +1117,14 @@ msgstr "čŖ¬ę˜Ž" #~ msgstr "é–‹ē™ŗč€…ć‚µćƒ¼ćƒćƒ¼" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "é–‹ē™ŗč€…ćƒ„ćƒ¼ćƒ«" +#~ msgid "Developer Tools" +#~ msgstr "é–‹ē™ŗč€…ćƒ„ćƒ¼ćƒ«" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "ćŖć«ć‹čØ€ć„ćŸć„ć“ćØćÆć‚ć£ćŸļ¼Ÿ" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "ć‚°ćƒ¬ćƒ¼" @@ -1123,9 +1145,13 @@ msgstr "ć‚¢ćƒ—ćƒŖćŒćƒ­ć‚°ć‚¢ć‚¦ćƒˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ć«č‡Ŗåˆ†ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ msgid "Discover new custom feeds" msgstr "ę–°ć—ć„ć‚«ć‚¹ć‚æćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’č¦‹ć¤ć‘ć‚‹" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "ę–°ć—ć„ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’č¦‹ć¤ć‘ć‚‹" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "ę–°ć—ć„ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’č¦‹ć¤ć‘ć‚‹" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1139,7 +1165,7 @@ msgstr "č”Øē¤ŗå" msgid "Domain verified!" msgstr "ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’ē¢ŗčŖć—ć¾ć—ćŸļ¼" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ć‚’ćŠęŒć”ć§ćŖć„å “åˆ" @@ -1156,6 +1182,8 @@ msgctxt "action" msgid "Done" msgstr "å®Œäŗ†" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1164,7 +1192,9 @@ msgstr "å®Œäŗ†" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "å®Œäŗ†" @@ -1176,7 +1206,16 @@ msgstr "å®Œäŗ†{extraText}" msgid "Double tap to sign in" msgstr "ćƒ€ćƒ–ćƒ«ć‚æćƒƒćƒ—ć§ć‚µć‚¤ćƒ³ć‚¤ćƒ³" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "ćƒ‰ćƒ­ćƒƒćƒ—ć—ć¦ē”»åƒć‚’čæ½åŠ ć™ć‚‹" @@ -1222,7 +1261,7 @@ msgstr "編集" msgid "Edit image" msgstr "ē”»åƒć‚’ē·Øé›†" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "ćƒŖć‚¹ćƒˆć®č©³ē“°ć‚’ē·Øé›†" @@ -1230,8 +1269,8 @@ msgstr "ćƒŖć‚¹ćƒˆć®č©³ē“°ć‚’ē·Øé›†" msgid "Edit Moderation List" msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆć‚’ē·Øé›†" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ē·Øé›†" @@ -1240,15 +1279,15 @@ msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ē·Øé›†" msgid "Edit my profile" msgstr "ćƒžć‚¤ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć‚’ē·Øé›†" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć‚’ē·Øé›†" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć‚’ē·Øé›†" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ē·Øé›†" @@ -1268,17 +1307,15 @@ msgstr "ć‚ćŖćŸć®ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć®čŖ¬ę˜Žć‚’ē·Øé›†ć—ć¾ć™" msgid "Education" msgstr "教育" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹" @@ -1295,7 +1332,7 @@ msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ćÆę›“ę–°ć•ć‚Œć¾ć—ćŸ" msgid "Email verified" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ćÆčŖčØ¼ć•ć‚Œć¾ć—ćŸ" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ļ¼š" @@ -1303,7 +1340,7 @@ msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ļ¼š" msgid "Enable {0} only" msgstr "{0}ć®ćæęœ‰åŠ¹ć«ć™ć‚‹" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’ęœ‰åŠ¹ć«ć™ć‚‹" @@ -1320,11 +1357,11 @@ msgstr "å¤–éƒØćƒ”ćƒ‡ć‚£ć‚¢ć‚’ęœ‰åŠ¹ć«ć™ć‚‹" msgid "Enable media players for" msgstr "ęœ‰åŠ¹ć«ć™ć‚‹ćƒ”ćƒ‡ć‚£ć‚¢ćƒ—ćƒ¬ć‚¤ćƒ¤ćƒ¼" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "ć“ć®čØ­å®šć‚’ęœ‰åŠ¹ć«ć™ć‚‹ćØć€č‡Ŗåˆ†ćŒćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ć„ć‚‹ćƒ¦ćƒ¼ć‚¶ćƒ¼ć‹ć‚‰ć®čæ”äæ”ć ć‘ćŒč”Øē¤ŗć•ć‚Œć¾ć™ć€‚" -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć®ēµ‚ć‚ć‚Š" @@ -1348,11 +1385,11 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“ć™ć‚‹ćŸć‚ć«å—ć‘å–ć£ćŸć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ› msgid "Enter the domain you want to use" msgstr "ä½æē”Øć™ć‚‹ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "čŖ•ē”Ÿę—„ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" @@ -1361,7 +1398,7 @@ msgstr "čŖ•ē”Ÿę—„ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" msgid "Enter your email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" @@ -1374,13 +1411,17 @@ msgid "Enter your new email address below." msgstr "ä»„äø‹ć«ę–°ć—ć„ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "é›»č©±ē•Ŗå·ć‚’å…„åŠ›" +#~ msgid "Enter your phone number" +#~ msgstr "é›»č©±ē•Ŗå·ć‚’å…„åŠ›" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼åćØćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "ć‚Øćƒ©ćƒ¼ļ¼š" @@ -1415,6 +1456,15 @@ msgstr "ALTćƒ†ć‚­ć‚¹ćƒˆć‚’å±•é–‹" msgid "Expand or collapse the full post you are replying to" msgstr "čæ”äæ”ć™ć‚‹ęŠ•ēØæå…Øä½“ć‚’å±•é–‹ć¾ćŸćÆęŠ˜ć‚ŠćŸćŸć‚€" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "ē§ć®ćƒ‡ćƒ¼ć‚æć‚’ć‚Øć‚Æć‚¹ćƒćƒ¼ćƒˆć™ć‚‹" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "ē§ć®ćƒ‡ćƒ¼ć‚æć‚’ć‚Øć‚Æć‚¹ćƒćƒ¼ćƒˆć™ć‚‹" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "å¤–éƒØćƒ”ćƒ‡ć‚£ć‚¢" @@ -1424,13 +1474,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "å¤–éƒØćƒ”ćƒ‡ć‚£ć‚¢ć®čØ­å®š" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "å¤–éƒØćƒ”ćƒ‡ć‚£ć‚¢ć®čØ­å®š" @@ -1443,7 +1493,7 @@ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®ä½œęˆć«å¤±ę•—ć—ć¾ć—ćŸć€‚" msgid "Failed to create the list. Check your internet connection and try again." msgstr "ćƒŖć‚¹ćƒˆć®ä½œęˆć«å¤±ę•—ć—ć¾ć—ćŸć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆćøć®ęŽ„ē¶šć‚’ē¢ŗčŖć®äøŠć€ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "ęŠ•ēØæć®å‰Šé™¤ć«å¤±ę•—ć—ć¾ć—ćŸć€‚ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" @@ -1452,15 +1502,15 @@ msgstr "ęŠ•ēØæć®å‰Šé™¤ć«å¤±ę•—ć—ć¾ć—ćŸć€‚ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ msgid "Failed to load recommended feeds" msgstr "ćŠć™ć™ć‚ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć®ćƒ­ćƒ¼ćƒ‰ć«å¤±ę•—ć—ć¾ć—ćŸ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "{0}ć«ć‚ˆć‚‹ćƒ•ć‚£ćƒ¼ćƒ‰" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćÆć‚Ŗćƒ•ćƒ©ć‚¤ćƒ³ć§ć™" @@ -1468,18 +1518,19 @@ msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćÆć‚Ŗćƒ•ćƒ©ć‚¤ćƒ³ć§ć™" msgid "Feed Preferences" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć®čØ­å®š" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćƒćƒƒć‚Æ" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰" @@ -1499,7 +1550,7 @@ msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćÆć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’ę•“ē†ć™ć‚‹ē‚ŗć«ćƒ¦ćƒ¼ć‚¶ćƒ¼ć«ć‚ˆć£ msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćÆćƒ¦ćƒ¼ć‚¶ćƒ¼ćŒćƒ—ćƒ­ć‚°ćƒ©ćƒŸćƒ³ć‚°ć®å°‚é–€ēŸ„č­˜ć‚’ęŒć£ć¦ę§‹ēÆ‰ć™ć‚‹ć‚«ć‚¹ć‚æćƒ ć‚¢ćƒ«ć‚“ćƒŖć‚ŗćƒ ć§ć™ć€‚č©³ē“°ć«ć¤ć„ć¦ćÆć€<0/>ć‚’å‚ē…§ć—ć¦ćć ć•ć„ć€‚" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć«ćÆē‰¹å®šć®č©±é”Œć«ē„¦ē‚¹ć‚’å½“ć¦ćŸć‚‚ć®ć‚‚ć‚ć‚Šć¾ć™ļ¼" @@ -1525,9 +1576,13 @@ msgstr "å³å“ć®ę¤œē“¢ćƒ„ćƒ¼ćƒ«ć§ćƒ¦ćƒ¼ć‚¶ćƒ¼ć‚’ę¤œē“¢" msgid "Finding similar accounts..." msgstr "ä¼¼ć¦ć„ć‚‹ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ę¤œē“¢äø­..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ćƒ›ćƒ¼ćƒ ē”»é¢ć«č”Øē¤ŗć•ć‚Œć‚‹ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’å¾®čŖæę•“ć—ć¾ć™ć€‚" +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ćƒ›ćƒ¼ćƒ ē”»é¢ć«č”Øē¤ŗć•ć‚Œć‚‹ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’å¾®čŖæę•“ć—ć¾ć™ć€‚" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1550,21 +1605,24 @@ msgstr "ę°“å¹³ę–¹å‘ć«åč»¢" msgid "Flip vertically" msgstr "åž‚ē›“ę–¹å‘ć«åč»¢" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "ćƒ•ć‚©ćƒ­ćƒ¼" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "ćƒ•ć‚©ćƒ­ćƒ¼" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "ćƒ•ć‚©ćƒ­ćƒ¼" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "{0}ć‚’ćƒ•ć‚©ćƒ­ćƒ¼" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "ć™ć¹ć¦ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒ•ć‚©ćƒ­ćƒ¼" @@ -1588,7 +1646,7 @@ msgstr "{0}ćŒćƒ•ć‚©ćƒ­ćƒ¼äø­" msgid "Followed users" msgstr "č‡Ŗåˆ†ćŒćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ć„ć‚‹ćƒ¦ćƒ¼ć‚¶ćƒ¼" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "č‡Ŗåˆ†ćŒćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ć„ć‚‹ćƒ¦ćƒ¼ć‚¶ćƒ¼ć®ćæ" @@ -1604,16 +1662,24 @@ msgstr "ćƒ•ć‚©ćƒ­ćƒÆćƒ¼" #~ msgid "following" #~ msgstr "ćƒ•ć‚©ćƒ­ćƒ¼äø­" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ćƒ•ć‚©ćƒ­ćƒ¼äø­" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "{0}ć‚’ćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ć„ć¾ć™" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "ć‚ćŖćŸć‚’ćƒ•ć‚©ćƒ­ćƒ¼" @@ -1633,11 +1699,11 @@ msgstr "ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£äøŠć®ē†ē”±ć‹ć‚‰ć€ć‚ćŖćŸć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£äøŠć®ē†ē”±ć‹ć‚‰ć€ć“ć‚Œć‚’å†åŗ¦č”Øē¤ŗć™ć‚‹ć“ćØćÆć§ćć¾ć›ć‚“ć€‚ć“ć®ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ē“›å¤±ć—ćŸå “åˆćÆć€ę–°ć—ć„ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ē”Ÿęˆć™ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "åæ˜ć‚ŒćŸ" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’åæ˜ć‚ŒćŸ" @@ -1646,7 +1712,7 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’åæ˜ć‚ŒćŸ" msgid "Forgot Password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’åæ˜ć‚ŒćŸ" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>恋悉" @@ -1667,8 +1733,8 @@ msgstr "開始" msgid "Go back" msgstr "ęˆ»ć‚‹" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1684,9 +1750,9 @@ msgstr "å‰ć®ć‚¹ćƒ†ćƒƒćƒ—ć«ęˆ»ć‚‹" msgid "Go to @{queryMaybeHandle}" msgstr "@{queryMaybeHandle}へ" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1696,12 +1762,12 @@ msgstr "欔へ" msgid "Handle" msgstr "ćƒćƒ³ćƒ‰ćƒ«" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "ä½•ć‹å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć‹ļ¼Ÿ" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "ćƒ˜ćƒ«ćƒ—" @@ -1713,11 +1779,11 @@ msgstr "ć‚ćŖćŸćŒćƒ•ć‚©ćƒ­ćƒ¼ć—ćć†ćŖć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ē“¹ä»‹ć—ć¾ć™" #~ msgid "Here are some accounts for your to follow" #~ msgstr "ć‚ćŖćŸćŒćƒ•ć‚©ćƒ­ćƒ¼ć—ćć†ćŖć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ē“¹ä»‹ć—ć¾ć™" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "äŗŗę°—ć®ć‚ć‚‹ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ē“¹ä»‹ć—ć¾ć™ć€‚å„½ććŖć ć‘ćƒ•ć‚©ćƒ­ćƒ¼ć™ć‚‹ć“ćØćŒć§ćć¾ć™ć€‚" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "怌{interestsText}ć€ćøć®čˆˆå‘³ć«åŸŗć„ć„ćŸćŠć™ć™ć‚ć§ć™ć€‚å„½ććŖć ć‘ćƒ•ć‚©ćƒ­ćƒ¼ć™ć‚‹ć“ćØćŒć§ćć¾ć™ć€‚" @@ -1726,19 +1792,19 @@ msgid "Here is your app password." msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćŠēŸ„ć‚‰ć›ć—ć¾ć™ć€‚" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "éžč”Øē¤ŗ" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "éžč”Øē¤ŗ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "ęŠ•ēØæć‚’éžč”Øē¤ŗ" @@ -1747,7 +1813,7 @@ msgstr "ęŠ•ēØæć‚’éžč”Øē¤ŗ" msgid "Hide the content" msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’éžč”Øē¤ŗ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ć“ć®ęŠ•ēØæć‚’éžč”Øē¤ŗć«ć—ć¾ć™ć‹ļ¼Ÿ" @@ -1755,7 +1821,7 @@ msgstr "ć“ć®ęŠ•ēØæć‚’éžč”Øē¤ŗć«ć—ć¾ć™ć‹ļ¼Ÿ" msgid "Hide user list" msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒŖć‚¹ćƒˆć‚’éžč”Øē¤ŗ" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "{0}ć®ęŠ•ēØæć‚’ć‚ćŖćŸć®ćƒ•ć‚£ćƒ¼ćƒ‰ć§éžč”Øē¤ŗć«ć—ć¾ć™" @@ -1779,22 +1845,23 @@ msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć‚µćƒ¼ćƒćƒ¼ć®ååæœćŒę‚Ŗć„ć‚ˆć†ć§ć™ć€‚ć“ć®å•é”Œć‚’ msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ć“ć®ćƒ•ć‚£ćƒ¼ćƒ‰ćŒč¦‹ć¤ć‹ć‚‰ćŖć„ć‚ˆć†ć§ć™ć€‚ć‚‚ć—ć‹ć—ćŸć‚‰å‰Šé™¤ć•ć‚ŒćŸć®ć‹ć‚‚ć—ć‚Œć¾ć›ć‚“ć€‚" -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "ćƒ›ćƒ¼ćƒ " -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "ćƒ›ćƒ¼ćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ć®čØ­å®š" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "ćƒ›ćƒ¼ćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ć®čØ­å®š" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚°ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼" @@ -1839,8 +1906,8 @@ msgstr "ē”»åƒ" msgid "Image alt text" msgstr "ē”»åƒć®ALTćƒ†ć‚­ć‚¹ćƒˆ" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "ē”»åƒć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³" @@ -1852,7 +1919,7 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆć™ć‚‹ćŸć‚ć«ć‚ćŖćŸć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ msgid "Input confirmation code for account deletion" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆå‰Šé™¤ć®ćŸć‚ć«ē¢ŗčŖć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "Blueskyć‚¢ć‚«ć‚¦ćƒ³ćƒˆē”Øć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" @@ -1864,7 +1931,7 @@ msgstr "Blueskyć‚¢ć‚«ć‚¦ćƒ³ćƒˆē”Øć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›ć—ć¦ćć  #~ msgid "Input hosting provider address" #~ msgstr "ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚°ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ć®ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ę¬”ć«é€²ć‚€" @@ -1881,56 +1948,55 @@ msgid "Input password for account deletion" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆå‰Šé™¤ć®ćŸć‚ć«ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å…„åŠ›" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "SMSčŖčØ¼ć«ē”Øć„ć‚‹é›»č©±ē•Ŗå·ć‚’å…„åŠ›" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "SMSčŖčØ¼ć«ē”Øć„ć‚‹é›»č©±ē•Ŗå·ć‚’å…„åŠ›" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "{identifier}ć«ē“ć„ććƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å…„åŠ›" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "ć‚µć‚¤ćƒ³ć‚¢ćƒƒćƒ—ę™‚ć«ä½æē”Øć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼åć¾ćŸćÆćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "ćƒ†ć‚­ć‚¹ćƒˆćƒ”ćƒƒć‚»ćƒ¼ć‚øć§é€ć‚‰ć‚Œć¦ććŸčŖčØ¼ć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "ćƒ†ć‚­ć‚¹ćƒˆćƒ”ćƒƒć‚»ćƒ¼ć‚øć§é€ć‚‰ć‚Œć¦ććŸčŖčØ¼ć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "Bluesky恮Waitlistć«ē™»éŒ²ć™ć‚‹ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "ć‚ćŖćŸć®ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å…„åŠ›" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "ć‚ćŖćŸć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒćƒ³ćƒ‰ćƒ«ć‚’å…„åŠ›" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "ē„”åŠ¹ć¾ćŸćÆć‚µćƒćƒ¼ćƒˆć•ć‚Œć¦ć„ćŖć„ęŠ•ēØæć®ćƒ¬ć‚³ćƒ¼ćƒ‰" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "ē„”åŠ¹ćŖćƒ¦ćƒ¼ć‚¶ćƒ¼åć¾ćŸćÆćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "招待" +#~ msgid "Invite" +#~ msgstr "招待" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "å‹é”ć‚’ę‹›å¾…" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒē¢ŗčŖć§ćć¾ć›ć‚“ć€‚ę­£ć—ćå…„åŠ›ć•ć‚Œć¦ć„ć‚‹ć“ćØć‚’ē¢ŗčŖć—ć€ć‚‚ć†äø€åŗ¦å®Ÿč”Œć—ć¦ćć ć•ć„ć€‚" @@ -1939,8 +2005,8 @@ msgid "Invite codes: {0} available" msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ļ¼š{0}å€‹ä½æē”ØåÆčƒ½" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "ä½æē”ØåÆčƒ½ćŖę‹›å¾…ć‚³ćƒ¼ćƒ‰ļ¼š {invitesAvailable} 個" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "ä½æē”ØåÆčƒ½ćŖę‹›å¾…ć‚³ćƒ¼ćƒ‰ļ¼š {invitesAvailable} 個" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1951,6 +2017,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "ć‚ćŖćŸćŒćƒ•ć‚©ćƒ­ćƒ¼ć—ćŸäŗŗć®ęŠ•ēØæćŒéšę™‚č”Øē¤ŗć•ć‚Œć¾ć™ć€‚" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "仕事" @@ -1958,8 +2025,8 @@ msgstr "仕事" msgid "Join the waitlist" msgstr "Waitlistć«å‚åŠ " -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "Waitlistć«å‚åŠ ć—ć¾ć™ć€‚" @@ -1975,7 +2042,7 @@ msgstr "報道" msgid "Language selection" msgstr "čØ€čŖžć®éøęŠž" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "čØ€čŖžć®čØ­å®š" @@ -1984,7 +2051,7 @@ msgstr "čØ€čŖžć®čØ­å®š" msgid "Language Settings" msgstr "čØ€čŖžć®čØ­å®š" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "čØ€čŖž" @@ -2022,11 +2089,11 @@ msgstr "ć©ć®čØ€čŖžć‚‚č”Øē¤ŗć™ć‚‹ć«ćÆć€ć™ć¹ć¦ć®ćƒć‚§ćƒƒć‚Æć‚’å¤–ć—ćŸ msgid "Leaving Bluesky" msgstr "Blueskyć‹ć‚‰é›¢ć‚Œć‚‹" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "あと少しです。" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "ćƒ¬ć‚¬ć‚·ćƒ¼ć‚¹ćƒˆćƒ¬ćƒ¼ć‚øćŒć‚ÆćƒŖć‚¢ć•ć‚ŒćŸćŸć‚ć€ä»Šć™ćć‚¢ćƒ—ćƒŖć‚’å†čµ·å‹•ć™ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" @@ -2039,16 +2106,17 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆć—ć¾ć—ć‚‡ć†ļ¼" msgid "Let's go!" msgstr "さあ始めましょう!" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "ćƒ©ć‚¤ćƒ–ćƒ©ćƒŖćƒ¼" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "ćƒ©ć‚¤ćƒˆ" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "恄恄恭" @@ -2056,7 +2124,7 @@ msgstr "恄恄恭" msgid "Like this feed" msgstr "ć“ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ć„ć„ć­" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "ć„ć„ć­ć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼" @@ -2065,7 +2133,7 @@ msgstr "ć„ć„ć­ć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼" msgid "Liked By" msgstr "ć„ć„ć­ć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "{0} {1}ć«ć„ć„ć­ć•ć‚Œć¾ć—ćŸ" @@ -2089,11 +2157,11 @@ msgstr "ć‚ćŖćŸć®ć‚«ć‚¹ć‚æćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ćŒć„ć„ć­ć•ć‚Œć¾ć—ćŸ" msgid "liked your post" msgstr "ć‚ćŖćŸć®ęŠ•ēØæćŒć„ć„ć­ć•ć‚Œć¾ć—ćŸ" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "恄恄恭" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "ć“ć®ęŠ•ēØæć‚’ć„ć„ć­ć™ć‚‹" @@ -2101,7 +2169,7 @@ msgstr "ć“ć®ęŠ•ēØæć‚’ć„ć„ć­ć™ć‚‹" #~ msgid "Limit the visibility of my account to logged-out users" #~ msgstr "ćƒ­ć‚°ć‚¢ć‚¦ćƒˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ć«åÆ¾ć—ć¦ē§ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®é–²č¦§ć‚’åˆ¶é™" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "ćƒŖć‚¹ćƒˆ" @@ -2109,19 +2177,19 @@ msgstr "ćƒŖć‚¹ćƒˆ" msgid "List Avatar" msgstr "ćƒŖć‚¹ćƒˆć®ć‚¢ćƒć‚æćƒ¼" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "ćƒŖć‚¹ćƒˆć‚’ćƒ–ćƒ­ćƒƒć‚Æć—ć¾ć—ćŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "{0}ć«ć‚ˆć‚‹ćƒŖć‚¹ćƒˆ" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "ćƒŖć‚¹ćƒˆć‚’å‰Šé™¤ć—ć¾ć—ćŸ" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "ćƒŖć‚¹ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆć—ć¾ć—ćŸ" @@ -2129,35 +2197,35 @@ msgstr "ćƒŖć‚¹ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆć—ć¾ć—ćŸ" msgid "List Name" msgstr "ćƒŖć‚¹ćƒˆć®åå‰" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "ćƒŖć‚¹ćƒˆć®ćƒ–ćƒ­ćƒƒć‚Æć‚’č§£é™¤ć—ć¾ć—ćŸ" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "ćƒŖć‚¹ćƒˆć®ćƒŸćƒ„ćƒ¼ćƒˆć‚’č§£é™¤ć—ć¾ć—ćŸ" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "ćƒŖć‚¹ćƒˆ" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "ęŠ•ēØæć‚’ć•ć‚‰ć«ćƒ­ćƒ¼ćƒ‰" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "ęœ€ę–°ć®é€šēŸ„ć‚’ćƒ­ćƒ¼ćƒ‰" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "ęœ€ę–°ć®ęŠ•ēØæć‚’ćƒ­ćƒ¼ćƒ‰" @@ -2166,17 +2234,17 @@ msgid "Loading..." msgstr "ćƒ­ćƒ¼ćƒ‰äø­..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "ćƒ­ćƒ¼ć‚«ćƒ«é–‹ē™ŗč€…ć‚µćƒ¼ćƒćƒ¼" +#~ msgid "Local dev server" +#~ msgstr "ćƒ­ćƒ¼ć‚«ćƒ«é–‹ē™ŗč€…ć‚µćƒ¼ćƒćƒ¼" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "惭悰" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "ćƒ­ć‚°ć‚¢ć‚¦ćƒˆ" @@ -2200,7 +2268,15 @@ msgstr "ćƒŖć‚¹ćƒˆć«ćŖć„ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć«ćƒ­ć‚°ć‚¤ćƒ³" msgid "Make sure this is where you intend to go!" msgstr "ę„å›³ć—ćŸå “ę‰€ć§ć‚ć‚‹ć“ćØć‚’ē¢ŗčŖć—ć¦ćć ć•ć„ļ¼" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "ćƒ”ćƒ‡ć‚£ć‚¢" @@ -2227,14 +2303,14 @@ msgstr "ć‚µćƒ¼ćƒćƒ¼ć‹ć‚‰ć®ćƒ”ćƒƒć‚»ćƒ¼ć‚øļ¼š{0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "{0}ć®ä½œęˆć—ćŸćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆ" @@ -2243,7 +2319,7 @@ msgstr "{0}ć®ä½œęˆć—ćŸćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆ" msgid "Moderation list by <0/>" msgstr "<0/>ć®ä½œęˆć—ćŸćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆ" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2266,7 +2342,7 @@ msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆ" msgid "Moderation Lists" msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆ" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć®čØ­å®š" @@ -2274,17 +2350,17 @@ msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć®čØ­å®š" msgid "Moderator has chosen to set a general warning on the content." msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚æćƒ¼ć«ć‚ˆć‚Šć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć«äø€čˆ¬ēš„ćŖč­¦å‘ŠćŒčØ­å®šć•ć‚Œć¾ć—ćŸć€‚" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "ćć®ä»–ć®ćƒ•ć‚£ćƒ¼ćƒ‰" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ćć®ä»–ć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ćć®ć»ć‹ć®ęŠ•ēØæć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³" @@ -2292,31 +2368,35 @@ msgstr "ćć®ć»ć‹ć®ęŠ•ēØæć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³" msgid "Most-liked replies first" msgstr "ć„ć„ć­ć®ę•°ćŒå¤šć„é †ć«čæ”äæ”ć‚’č”Øē¤ŗ" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆ" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆ" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "ćƒŖć‚¹ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆ" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ć“ć‚Œć‚‰ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆć—ć¾ć™ć‹ļ¼Ÿ" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "ć“ć®ćƒŖć‚¹ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ć‚’ćƒŸćƒ„ćƒ¼ćƒˆ" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "ćƒŸćƒ„ćƒ¼ćƒˆć•ć‚Œć¦ć„ć¾ć™" @@ -2333,7 +2413,7 @@ msgstr "ćƒŸćƒ„ćƒ¼ćƒˆäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ćƒŸćƒ„ćƒ¼ćƒˆäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ęŠ•ēØæćÆć€ćƒ•ć‚£ćƒ¼ćƒ‰ć‚„é€šēŸ„ć‹ć‚‰å–ć‚Šé™¤ć‹ć‚Œć¾ć™ć€‚ćƒŸćƒ„ćƒ¼ćƒˆć®čØ­å®šćÆå®Œå…Øć«éžå…¬é–‹ć§ć™ć€‚" -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ćƒŸćƒ„ćƒ¼ćƒˆć®čØ­å®šćÆéžå…¬é–‹ć§ć™ć€‚ćƒŸćƒ„ćƒ¼ćƒˆäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć‚ćŖćŸćØå¼•ćē¶šćé–¢ć‚ć‚‹ć“ćØćŒć§ćć¾ć™ćŒć€ćć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ęŠ•ēØæć‚„é€šēŸ„ć‚’å—äæ”ć™ć‚‹ć“ćØćÆć§ćć¾ć›ć‚“ć€‚" @@ -2341,7 +2421,7 @@ msgstr "ćƒŸćƒ„ćƒ¼ćƒˆć®čØ­å®šćÆéžå…¬é–‹ć§ć™ć€‚ćƒŸćƒ„ćƒ¼ćƒˆäø­ć®ć‚¢ć‚«ć‚¦ćƒ³ msgid "My Birthday" msgstr "čŖ•ē”Ÿę—„" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰" @@ -2349,10 +2429,14 @@ msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰" msgid "My Profile" msgstr "ćƒžć‚¤ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2366,15 +2450,15 @@ msgstr "åå‰ćÆåæ…é ˆć§ć™" msgid "Nature" msgstr "自然" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "ę¬”ć®ē”»é¢ć«ē§»å‹•ć—ć¾ć™" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "ć‚ćŖćŸć®ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć«ē§»å‹•ć—ć¾ć™" @@ -2413,16 +2497,17 @@ msgstr "ę–°ć—ć„ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" msgid "New Password" msgstr "ę–°ć—ć„ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "ę–°ć—ć„ęŠ•ēØæ" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ę–°ć—ć„ęŠ•ēØæ" @@ -2448,10 +2533,10 @@ msgstr "新しい順に返俔を蔨示" msgid "News" msgstr "ćƒ‹ćƒ„ćƒ¼ć‚¹" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2469,10 +2554,10 @@ msgstr "欔へ" msgid "Next image" msgstr "ę¬”ć®ē”»åƒ" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2483,7 +2568,7 @@ msgstr "恄恄恈" msgid "No description" msgstr "čŖ¬ę˜ŽćÆć‚ć‚Šć¾ć›ć‚“" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "{0}ć®ćƒ•ć‚©ćƒ­ćƒ¼ć‚’č§£é™¤ć—ć¾ć—ćŸ" @@ -2496,7 +2581,7 @@ msgstr "ćŠēŸ„ć‚‰ć›ćÆć‚ć‚Šć¾ć›ć‚“ļ¼" msgid "No result" msgstr "ēµęžœćÆć‚ć‚Šć¾ć›ć‚“" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "怌{query}ć€ć®ę¤œē“¢ēµęžœćÆć‚ć‚Šć¾ć›ć‚“" @@ -2519,6 +2604,7 @@ msgid "Not Applicable." msgstr "該当なし。" #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "č¦‹ć¤ć‹ć‚Šć¾ć›ć‚“" @@ -2535,13 +2621,13 @@ msgstr "ä»ŠćÆć—ćŖć„" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注記:BlueskyćÆć‚Ŗćƒ¼ćƒ—ćƒ³ć§ćƒ‘ćƒ–ćƒŖćƒƒć‚ÆćŖćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć§ć™ć€‚ć“ć®čØ­å®šćÆBlueskyć®ć‚¢ćƒ—ćƒŖćŠć‚ˆć³ć‚¦ć‚§ćƒ–ć‚µć‚¤ćƒˆäøŠć®ćæć§ć®ć‚ćŖćŸć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®åÆč¦–ę€§ć‚’åˆ¶é™ć™ć‚‹ć‚‚ć®ć§ć‚ć‚Šć€ä»–ć®ć‚¢ćƒ—ćƒŖć§ćÆć“ć®čØ­å®šć‚’å°Šé‡ć—ćŖć„å “åˆćŒć‚ć‚Šć¾ć™ć€‚ä»–ć®ć‚¢ćƒ—ćƒŖć‚„ć‚¦ć‚§ćƒ–ć‚µć‚¤ćƒˆć§ćÆć€ćƒ­ć‚°ć‚¢ć‚¦ćƒˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ć«ć‚ćŖćŸć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćŒč”Øē¤ŗć•ć‚Œć‚‹å “åˆćŒć‚ć‚Šć¾ć™ć€‚" -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "é€šēŸ„" @@ -2565,7 +2651,7 @@ msgstr "OK" msgid "Oldest replies first" msgstr "å¤ć„é †ć«čæ”äæ”ć‚’č”Øē¤ŗ" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "ć‚Ŗćƒ³ćƒœćƒ¼ćƒ‡ć‚£ćƒ³ć‚°ć®ćƒŖć‚»ćƒƒćƒˆ" @@ -2577,9 +2663,8 @@ msgstr "1ć¤ć‚‚ć—ććÆč¤‡ę•°ć®ē”»åƒć«ALTćƒ†ć‚­ć‚¹ćƒˆćŒć‚ć‚Šć¾ć›ć‚“ć€‚" msgid "Only {0} can reply." msgstr "{0}ć®ćæčæ”äæ”åÆčƒ½" -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "おっと!" @@ -2592,15 +2677,15 @@ msgstr "é–‹ć‹ć‚Œć¦ć„ć¾ć™" msgid "Open emoji picker" msgstr "ēµµę–‡å­—ć‚’å…„åŠ›" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "ć‚¢ćƒ—ćƒŖå†…ćƒ–ćƒ©ć‚¦ć‚¶ćƒ¼ć§ćƒŖćƒ³ć‚Æć‚’é–‹ć" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ćƒŠćƒ“ć‚²ćƒ¼ć‚·ćƒ§ćƒ³ć‚’é–‹ć" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "ēµµęœ¬ć®ćƒšćƒ¼ć‚øć‚’é–‹ć" @@ -2624,7 +2709,7 @@ msgstr "ćƒ‡ćƒć‚¤ć‚¹ć®ć‚«ćƒ”ćƒ©ć‚’é–‹ć" msgid "Opens composer" msgstr "ē·Øé›†ē”»é¢ć‚’é–‹ć" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "ę§‹ęˆåÆčƒ½ćŖčØ€čŖžčØ­å®šć‚’é–‹ć" @@ -2632,33 +2717,31 @@ msgstr "ę§‹ęˆåÆčƒ½ćŖčØ€čŖžčØ­å®šć‚’é–‹ć" msgid "Opens device photo gallery" msgstr "ćƒ‡ćƒć‚¤ć‚¹ć®ćƒ•ć‚©ćƒˆć‚®ćƒ£ćƒ©ćƒŖćƒ¼ć‚’é–‹ć" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć®č”Øē¤ŗåć€ć‚¢ćƒć‚æćƒ¼ć€čƒŒę™Æē”»åƒć€čŖ¬ę˜Žę–‡ć®ć‚Øćƒ‡ć‚£ć‚æć‚’é–‹ć" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "å¤–éƒØć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®åŸ‹ć‚č¾¼ćæć®čØ­å®šć‚’é–‹ć" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "ćƒ•ć‚©ćƒ­ćƒÆćƒ¼ć®ćƒŖć‚¹ćƒˆć‚’é–‹ćć¾ć™" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "ćƒ•ć‚©ćƒ­ćƒ¼äø­ć®ćƒŖć‚¹ćƒˆć‚’é–‹ćć¾ć™" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ć®ćƒŖć‚¹ćƒˆć‚’é–‹ć" +#~ msgid "Opens invite code list" +#~ msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ć®ćƒŖć‚¹ćƒˆć‚’é–‹ć" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "ę‹›å¾…ć‚³ćƒ¼ćƒ‰ć®ćƒŖć‚¹ćƒˆć‚’é–‹ć" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®å‰Šé™¤ē¢ŗčŖē”Øć®č”Øē¤ŗć‚’é–‹ćć¾ć™ć€‚ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć®ć‚³ćƒ¼ćƒ‰ćŒåæ…č¦ć§ć™ć€‚" @@ -2666,39 +2749,39 @@ msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®å‰Šé™¤ē¢ŗčŖē”Øć®č”Øē¤ŗć‚’é–‹ćć¾ć™ć€‚ćƒ”ćƒ¼ćƒ«ć‚¢ msgid "Opens modal for using custom domain" msgstr "ć‚«ć‚¹ć‚æćƒ ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’ä½æē”Øć™ć‚‹ćŸć‚ć®ćƒ¢ćƒ¼ćƒ€ćƒ«ć‚’é–‹ć" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć®čØ­å®šć‚’é–‹ć" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćƒŖć‚»ćƒƒćƒˆć®ćƒ•ć‚©ćƒ¼ćƒ ć‚’é–‹ć" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ć®ē·Øé›†ē”»é¢ć‚’é–‹ć" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "äæå­˜ć•ć‚ŒćŸć™ć¹ć¦ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć§ē”»é¢ć‚’é–‹ć" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®čØ­å®šćƒšćƒ¼ć‚øć‚’é–‹ć" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "ćƒ›ćƒ¼ćƒ ćƒ•ć‚£ćƒ¼ćƒ‰ć®čØ­å®šć‚’é–‹ć" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "ć‚¹ćƒˆćƒ¼ćƒŖćƒ¼ćƒ–ćƒƒć‚Æć®ćƒšćƒ¼ć‚øć‚’é–‹ć" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "ć‚·ć‚¹ćƒ†ćƒ ćƒ­ć‚°ć®ćƒšćƒ¼ć‚øć‚’é–‹ć" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ć®čØ­å®šć‚’é–‹ć" @@ -2719,8 +2802,8 @@ msgid "Other account" msgstr "ćć®ä»–ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "ćć®ä»–ć®ć‚µćƒ¼ćƒ“ć‚¹" +#~ msgid "Other service" +#~ msgstr "ćć®ä»–ć®ć‚µćƒ¼ćƒ“ć‚¹" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2734,9 +2817,9 @@ msgstr "ćƒšćƒ¼ć‚øćŒč¦‹ć¤ć‹ć‚Šć¾ć›ć‚“" msgid "Page Not Found" msgstr "ćƒšćƒ¼ć‚øćŒč¦‹ć¤ć‹ć‚Šć¾ć›ć‚“" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2750,11 +2833,11 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćŒę›“ę–°ć•ć‚Œć¾ć—ćŸ" msgid "Password updated!" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćŒę›“ę–°ć•ć‚Œć¾ć—ćŸļ¼" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "@{0}ćŒćƒ•ć‚©ćƒ­ćƒ¼äø­ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "@{0}ć‚’ćƒ•ć‚©ćƒ­ćƒ¼äø­ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼" @@ -2771,15 +2854,15 @@ msgid "Pets" msgstr "ペット" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "é›»č©±ē•Ŗå·" +#~ msgid "Phone number" +#~ msgstr "é›»č©±ē•Ŗå·" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "ęˆäŗŗå‘ć‘ć®ē”»åƒć§ć™ć€‚" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "ćƒ›ćƒ¼ćƒ ć«ćƒ”ćƒ³ē•™ć‚" @@ -2800,14 +2883,18 @@ msgstr "å‹•ē”»ć‚’å†ē”Ÿ" msgid "Plays the GIF" msgstr "GIFć‚’å†ē”Ÿ" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "ćƒćƒ³ćƒ‰ćƒ«ć‚’ćŠéøć³ćć ć•ć„ć€‚" -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’éøęŠžć—ć¦ćć ć•ć„ć€‚" +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "å¤‰ę›“ć™ć‚‹å‰ć«ćƒ”ćƒ¼ćƒ«ć‚’ē¢ŗčŖć—ć¦ćć ć•ć„ć€‚ć“ć‚ŒćÆć€ćƒ”ćƒ¼ćƒ«ć‚¢ćƒƒćƒ—ćƒ‡ćƒ¼ćƒˆćƒ„ćƒ¼ćƒ«ćŒčæ½åŠ ć•ć‚Œć¦ć„ć‚‹é–“ć®äø€ę™‚ēš„ćŖč¦ä»¶ć§ć‚ć‚Šć€ć¾ć‚‚ćŖćå‰Šé™¤ć•ć‚Œć¾ć™ć€‚" @@ -2817,22 +2904,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć«ć¤ć‘ć‚‹åå‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚ć™ć¹ć¦ć‚¹ćƒšćƒ¼ć‚¹ćØć—ć¦ćÆć„ć‘ć¾ć›ć‚“ć€‚" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "SMSć§ćƒ†ć‚­ć‚¹ćƒˆćƒ”ćƒƒć‚»ćƒ¼ć‚øć‚’å—ć‘å–ć‚Œć‚‹é›»č©±ē•Ŗå·ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "SMSć§ćƒ†ć‚­ć‚¹ćƒˆćƒ”ćƒƒć‚»ćƒ¼ć‚øć‚’å—ć‘å–ć‚Œć‚‹é›»č©±ē•Ŗå·ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "ć“ć®ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć«å›ŗęœ‰ć®åå‰ć‚’å…„åŠ›ć™ć‚‹ć‹ć€ćƒ©ćƒ³ćƒ€ćƒ ć«ē”Ÿęˆć•ć‚ŒćŸåå‰ć‚’ä½æē”Øć—ć¦ćć ć•ć„ć€‚" #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "SMSć§å—ć‘å–ć£ćŸć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "SMSć§å—ć‘å–ć£ćŸć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "{phoneNumberFormatted}ć«é€ć£ćŸčŖčØ¼ć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "{phoneNumberFormatted}ć«é€ć£ćŸčŖčØ¼ć‚³ćƒ¼ćƒ‰ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›ć—ć¦ćć ć•ć„ć€‚" @@ -2872,7 +2959,7 @@ msgctxt "action" msgid "Post" msgstr "ęŠ•ēØæ" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "ęŠ•ēØæ" @@ -2883,21 +2970,21 @@ msgstr "ęŠ•ēØæ" #~ msgid "Post" #~ msgstr "ęŠ•ēØæ" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "{0}ć«ć‚ˆć‚‹ęŠ•ēØæ" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "@{0}ć«ć‚ˆć‚‹ęŠ•ēØæ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "ęŠ•ēØæć‚’å‰Šé™¤" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "ęŠ•ēØæć‚’éžč”Øē¤ŗ" @@ -2909,11 +2996,11 @@ msgstr "ęŠ•ēØæć®čØ€čŖž" msgid "Post Languages" msgstr "ęŠ•ēØæć®čØ€čŖž" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "ęŠ•ēØæćŒč¦‹ć¤ć‹ć‚Šć¾ć›ć‚“" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "ęŠ•ēØæ" @@ -2937,27 +3024,27 @@ msgstr "ē¬¬äø€čØ€čŖž" msgid "Prioritize Your Follows" msgstr "ć‚ćŖćŸć®ćƒ•ć‚©ćƒ­ćƒ¼ć‚’å„Ŗå…ˆ" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "ćƒ—ćƒ©ć‚¤ćƒć‚·ćƒ¼" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "ćƒ—ćƒ©ć‚¤ćƒć‚·ćƒ¼ćƒćƒŖć‚·ćƒ¼" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "処理中..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«" @@ -2965,7 +3052,7 @@ msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«" msgid "Profile updated" msgstr "ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć‚’ę›“ę–°ć—ć¾ć—ćŸ" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’ē¢ŗčŖć—ć¦ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’äæč­·ć—ć¾ć™ć€‚" @@ -3026,12 +3113,12 @@ msgstr "ćŠć™ć™ć‚ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "削除" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰{0}ć‚’å‰Šé™¤ć—ć¾ć™ć‹ļ¼Ÿ" @@ -3044,11 +3131,11 @@ msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å‰Šé™¤" msgid "Remove feed" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’å‰Šé™¤" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰å‰Šé™¤" @@ -3064,7 +3151,7 @@ msgstr "ć‚¤ćƒ”ćƒ¼ć‚øćƒ—ćƒ¬ćƒ“ćƒ„ćƒ¼ć‚’å‰Šé™¤" msgid "Remove repost" msgstr "ćƒŖćƒć‚¹ćƒˆć‚’å‰Šé™¤" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ć“ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰å‰Šé™¤ć—ć¾ć™ć‹ļ¼Ÿ" @@ -3077,8 +3164,8 @@ msgstr "äæå­˜ć—ćŸćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰ć“ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’å‰Šé™¤ć—ć¾ć™ć‹ļ¼Ÿ msgid "Removed from list" msgstr "ćƒŖć‚¹ćƒˆć‹ć‚‰å‰Šé™¤ć•ć‚Œć¾ć—ćŸ" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰å‰Šé™¤ć—ć¾ć—ćŸ" @@ -3086,7 +3173,7 @@ msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰å‰Šé™¤ć—ć¾ć—ćŸ" msgid "Removes default thumbnail from {0}" msgstr "{0}ć‹ć‚‰ćƒ‡ćƒ•ć‚©ćƒ«ćƒˆć®ć‚µćƒ ćƒć‚¤ćƒ«ć‚’å‰Šé™¤" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "返俔" @@ -3099,12 +3186,12 @@ msgctxt "action" msgid "Reply" msgstr "返俔" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "čæ”äæ”ć®ćƒ•ć‚£ćƒ«ć‚æćƒ¼" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "<0/>に返俔" @@ -3113,20 +3200,20 @@ msgstr "<0/>に返俔" msgid "Report {collectionName}" msgstr "{collectionName}ć‚’å ±å‘Š" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’å ±å‘Š" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’å ±å‘Š" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "ćƒŖć‚¹ćƒˆć‚’å ±å‘Š" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ęŠ•ēØæć‚’å ±å‘Š" @@ -3155,7 +3242,7 @@ msgstr "ćƒŖćƒć‚¹ćƒˆć¾ćŸćÆå¼•ē”Ø" msgid "Reposted By" msgstr "ćƒŖćƒć‚¹ćƒˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "{0}ć«ćƒŖćƒć‚¹ćƒˆć•ć‚ŒćŸ" @@ -3163,7 +3250,7 @@ msgstr "{0}ć«ćƒŖćƒć‚¹ćƒˆć•ć‚ŒćŸ" #~ msgid "Reposted by {0})" #~ msgstr "{0}ć«ć‚ˆć‚‹ćƒŖćƒć‚¹ćƒˆ" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "<0/>ć«ć‚ˆć‚‹ćƒŖćƒć‚¹ćƒˆ" @@ -3171,7 +3258,7 @@ msgstr "<0/>ć«ć‚ˆć‚‹ćƒŖćƒć‚¹ćƒˆ" msgid "reposted your post" msgstr "ć‚ćŖćŸć®ęŠ•ēØæćÆćƒŖćƒć‚¹ćƒˆć•ć‚Œć¾ć—ćŸ" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "ć“ć®ęŠ•ēØæć‚’ćƒŖćƒć‚¹ćƒˆ" @@ -3181,19 +3268,19 @@ msgid "Request Change" msgstr "変曓を要求" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "ć‚³ćƒ¼ćƒ‰ć‚’ćƒŖć‚Æć‚Øć‚¹ćƒˆ" +#~ msgid "Request code" +#~ msgstr "ć‚³ćƒ¼ćƒ‰ć‚’ćƒŖć‚Æć‚Øć‚¹ćƒˆ" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "ć‚³ćƒ¼ćƒ‰ć‚’ćƒŖć‚Æć‚Øć‚¹ćƒˆ" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "ē”»åƒęŠ•ēØæę™‚ć«ALTćƒ†ć‚­ć‚¹ćƒˆć‚’åæ…é ˆćØć™ć‚‹" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "ć“ć®ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ć«åæ…č¦" @@ -3206,66 +3293,65 @@ msgstr "ć‚³ćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆ" msgid "Reset Code" msgstr "ć‚³ćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆ" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "ć‚Ŗćƒ³ćƒœćƒ¼ćƒ‡ć‚£ćƒ³ć‚°ć®ēŠ¶ę…‹ć‚’ćƒŖć‚»ćƒƒćƒˆ" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "ć‚Ŗćƒ³ćƒœćƒ¼ćƒ‡ć‚£ćƒ³ć‚°ć®ēŠ¶ę…‹ć‚’ćƒŖć‚»ćƒƒćƒˆ" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆ" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "čØ­å®šć‚’ćƒŖć‚»ćƒƒćƒˆ" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "čØ­å®šć‚’ćƒŖć‚»ćƒƒćƒˆ" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "ć‚Ŗćƒ³ćƒœćƒ¼ćƒ‡ć‚£ćƒ³ć‚°ć®ēŠ¶ę…‹ć‚’ćƒŖć‚»ćƒƒćƒˆć—ć¾ć™" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "čØ­å®šć®ēŠ¶ę…‹ć‚’ćƒŖć‚»ćƒƒćƒˆć—ć¾ć™" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "ćƒ­ć‚°ć‚¤ćƒ³ć‚’ć‚„ć‚Šē›“ć™" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "ć‚Øćƒ©ćƒ¼ć«ćŖć£ćŸęœ€å¾Œć®ć‚¢ć‚Æć‚·ćƒ§ćƒ³ć‚’ć‚„ć‚Šē›“ć™" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "å†č©¦č”Œ" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "å†č©¦č”Œ" +#~ msgid "Retry." +#~ msgstr "å†č©¦č”Œ" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "å‰ć®ćƒšćƒ¼ć‚øć«ęˆ»ć‚‹" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "ć‚µćƒ³ćƒ‰ćƒœćƒƒć‚Æć‚¹ć€‚ęŠ•ēØæćØć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆę°øä¹…ēš„ćŖć‚‚ć®ć§ćÆć‚ć‚Šć¾ć›ć‚“ć€‚" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "ć‚µćƒ³ćƒ‰ćƒœćƒƒć‚Æć‚¹ć€‚ęŠ•ēØæćØć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆę°øä¹…ēš„ćŖć‚‚ć®ć§ćÆć‚ć‚Šć¾ć›ć‚“ć€‚" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3278,7 +3364,7 @@ msgstr "äæå­˜" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "äæå­˜" @@ -3318,11 +3404,11 @@ msgstr "ē§‘å­¦" msgid "Scroll to top" msgstr "äø€ē•ŖäøŠć¾ć§ć‚¹ć‚Æćƒ­ćƒ¼ćƒ«" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3330,8 +3416,8 @@ msgstr "äø€ē•ŖäøŠć¾ć§ć‚¹ć‚Æćƒ­ćƒ¼ćƒ«" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "検瓢" @@ -3367,8 +3453,8 @@ msgid "Select {item}" msgstr "{item}ć‚’éøęŠž" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Bluesky Socialć‚’éøęŠž" +#~ msgid "Select Bluesky Social" +#~ msgstr "Bluesky Socialć‚’éøęŠž" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3378,8 +3464,8 @@ msgstr "ę—¢å­˜ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‹ć‚‰éøęŠž" msgid "Select option {i} of {numItems}" msgstr "{numItems}個中{i}å€‹ē›®ć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³ć‚’éøęŠž" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "ć‚µćƒ¼ćƒ“ć‚¹ć‚’éøęŠž" @@ -3387,11 +3473,15 @@ msgstr "ć‚µćƒ¼ćƒ“ć‚¹ć‚’éøęŠž" msgid "Select some accounts below to follow" msgstr "ę¬”ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’éøęŠžć—ć¦ćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ćć ć•ć„" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "ćƒ‡ćƒ¼ć‚æć‚’ćƒ›ć‚¹ćƒˆć™ć‚‹ć‚µćƒ¼ćƒ“ć‚¹ć‚’éøęŠžć—ć¾ć™ć€‚" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "č”Øē¤ŗć—ćŸć„ļ¼ˆć¾ćŸćÆč”Øē¤ŗć—ćŸććŖć„ļ¼‰ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®ēØ®é”žć‚’éøęŠžć—ć¦ćć ć•ć„ć€‚ć‚ćØćÆē§ćŸć”ć«ćŠä»»ć›ćć ć•ć„ć€‚" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "ę¬”ć®ćƒŖć‚¹ćƒˆć‹ć‚‰č©±é”Œć®ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’éøęŠžć—ć¦ćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ćć ć•ć„" @@ -3412,8 +3502,8 @@ msgid "Select your interests from the options below" msgstr "ę¬”ć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³ć‹ć‚‰čˆˆå‘³ć®ć‚ć‚‹ć‚‚ć®ć‚’éøęŠžć—ć¦ćć ć•ć„" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "é›»č©±ē•Ŗå·ćŒē™»éŒ²ć•ć‚Œć¦ć„ć‚‹å›½ć‚’éøęŠž" +#~ msgid "Select your phone's country" +#~ msgstr "é›»č©±ē•Ŗå·ćŒē™»éŒ²ć•ć‚Œć¦ć„ć‚‹å›½ć‚’éøęŠž" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3423,7 +3513,7 @@ msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰å†…ć®ēæ»čØ³ć«ä½æē”Øć™ć‚‹čØ€čŖžć‚’éøęŠžć—ć¾ć™ć€‚" msgid "Select your primary algorithmic feeds" msgstr "1ē•Ŗē›®ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć®ć‚¢ćƒ«ć‚“ćƒŖć‚ŗćƒ ć‚’éøęŠžć—ć¦ćć ć•ć„" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "2ē•Ŗē›®ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć®ć‚¢ćƒ«ć‚“ćƒŖć‚ŗćƒ ć‚’éøęŠžć—ć¦ćć ć•ć„" @@ -3445,8 +3535,8 @@ msgstr "ćƒ”ćƒ¼ćƒ«ć‚’é€äæ”" #~ msgid "Send Email" #~ msgstr "ćƒ”ćƒ¼ćƒ«ć‚’é€äæ”" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćƒćƒƒć‚Æć‚’é€äæ”" @@ -3458,33 +3548,37 @@ msgstr "å ±å‘Šć‚’é€äæ”" msgid "Sends email with confirmation code for account deletion" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®å‰Šé™¤ć®ē¢ŗčŖć‚³ćƒ¼ćƒ‰ć‚’ćƒ”ćƒ¼ćƒ«ć«é€äæ”" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "{labelGroup}ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć®ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒćƒŖć‚·ćƒ¼ć‚’{value}ć«čØ­å®šć—ć¾ć™" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "å¹“é½¢ć‚’čØ­å®š" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "ć‚«ćƒ©ćƒ¼ćƒ†ćƒ¼ćƒžć‚’ęš—ć„ć‚‚ć®ć«čØ­å®šć—ć¾ć™" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "ć‚«ćƒ©ćƒ¼ćƒ†ćƒ¼ćƒžć‚’ćƒ©ć‚¤ćƒˆć«čØ­å®šć—ć¾ć™" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "ćƒ‡ćƒć‚¤ć‚¹ć§čØ­å®šć—ćŸć‚«ćƒ©ćƒ¼ćƒ†ćƒ¼ćƒžć‚’ä½æē”Øć™ć‚‹ć‚ˆć†ć«čØ­å®šć—ć¾ć™" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "ćƒ€ćƒ¼ć‚Æćƒ†ćƒ¼ćƒžć‚’ćƒ€ćƒ¼ć‚Æć«čØ­å®šć—ć¾ć™" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "ćƒ€ćƒ¼ć‚Æćƒ†ćƒ¼ćƒžć‚’č–„ęš—ć„ć‚‚ć®ć«čØ­å®šć—ć¾ć™" @@ -3492,19 +3586,19 @@ msgstr "ćƒ€ćƒ¼ć‚Æćƒ†ćƒ¼ćƒžć‚’č–„ęš—ć„ć‚‚ć®ć«čØ­å®šć—ć¾ć™" msgid "Set new password" msgstr "ę–°ć—ć„ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’čØ­å®š" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’čØ­å®š" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰å†…ć®å¼•ē”Øć‚’ć™ć¹ć¦éžč”Øē¤ŗć«ć™ć‚‹ć«ćÆć€ć“ć®čØ­å®šć‚’ć€Œć„ć„ćˆć€ć«ć—ć¾ć™ć€‚ćƒŖćƒć‚¹ćƒˆćÆå¼•ćē¶šćč”Øē¤ŗć•ć‚Œć¾ć™ć€‚" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰å†…ć®čæ”äæ”ć‚’ć™ć¹ć¦éžč”Øē¤ŗć«ć™ć‚‹ć«ćÆć€ć“ć®čØ­å®šć‚’ć€Œć„ć„ćˆć€ć«ć—ć¾ć™ć€‚" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰å†…ć®ćƒŖćƒć‚¹ćƒˆć‚’ć™ć¹ć¦éžč”Øē¤ŗć«ć™ć‚‹ć«ćÆć€ć“ć®čØ­å®šć‚’ć€Œć„ć„ćˆć€ć«ć—ć¾ć™ć€‚" @@ -3513,8 +3607,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰č”Øē¤ŗć§čæ”äæ”ć‚’č”Øē¤ŗć™ć‚‹ć«ćÆć€ć“ć®čØ­å®šć‚’ć€ŒćÆć„ć€ć«ć—ć¾ć™ć€‚ć“ć‚ŒćÆå®ŸéØ“ēš„ćŖę©Ÿčƒ½ć§ć™ć€‚" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰ęŠ•ēØæć‚’ęŠ½å‡ŗć—ć¦Followingćƒ•ć‚£ćƒ¼ćƒ‰ć«č”Øē¤ŗć™ć‚‹ć«ćÆć€ć“ć®čØ­å®šć‚’ć€ŒćÆć„ć€ć«ć—ć¾ć™ć€‚ć“ć‚ŒćÆå®ŸéØ“ēš„ćŖę©Ÿčƒ½ć§ć™ć€‚" +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰ęŠ•ēØæć‚’ęŠ½å‡ŗć—ć¦Followingćƒ•ć‚£ćƒ¼ćƒ‰ć«č”Øē¤ŗć™ć‚‹ć«ćÆć€ć“ć®čØ­å®šć‚’ć€ŒćÆć„ć€ć«ć—ć¾ć™ć€‚ć“ć‚ŒćÆå®ŸéØ“ēš„ćŖę©Ÿčƒ½ć§ć™ć€‚" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3524,11 +3622,11 @@ msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’čØ­å®šć™ć‚‹" msgid "Sets Bluesky username" msgstr "Blueskyć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒćƒ¼ćƒ ć‚’čØ­å®š" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆć™ć‚‹ćŸć‚ć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’å…„åŠ›" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆć™ć‚‹ćŸć‚ć®ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚°ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ć‚’å…„åŠ›" @@ -3536,16 +3634,16 @@ msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒŖć‚»ćƒƒćƒˆć™ć‚‹ćŸć‚ć®ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚°ćƒ—ćƒ­ćƒ #~ msgid "Sets hosting provider to {label}" #~ msgstr "ćƒ›ć‚¹ćƒ†ć‚£ćƒ³ć‚°ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ć‚’{label}に設定" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "Blueskyć®ć‚Æćƒ©ć‚¤ć‚¢ćƒ³ćƒˆć®ć‚µćƒ¼ćƒćƒ¼ć‚’čØ­å®š" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "設定" @@ -3558,25 +3656,25 @@ msgctxt "action" msgid "Share" msgstr "å…±ęœ‰" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "å…±ęœ‰" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’å…±ęœ‰" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "すべての返俔を蔨示" @@ -3588,21 +3686,21 @@ msgstr "ćØć«ć‹ćč”Øē¤ŗ" msgid "Show embeds from {0}" msgstr "{0}ć«ć‚ˆć‚‹åŸ‹ć‚č¾¼ćæć‚’č”Øē¤ŗ" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "{0}ć«ä¼¼ćŸćŠć™ć™ć‚ć®ćƒ•ć‚©ćƒ­ćƒ¼å€™č£œć‚’č”Øē¤ŗ" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "さらに蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰ć‹ć‚‰ć®ęŠ•ēØæć‚’č”Øē¤ŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "引用を蔨示" @@ -3618,7 +3716,7 @@ msgstr "Followingćƒ•ć‚£ćƒ¼ćƒ‰ć§å¼•ē”Øć‚’č”Øē¤ŗ" msgid "Show re-posts in Following feed" msgstr "Followingćƒ•ć‚£ćƒ¼ćƒ‰ć§ćƒŖćƒć‚¹ćƒˆć‚’č”Øē¤ŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "返俔を蔨示" @@ -3634,11 +3732,11 @@ msgstr "Followingćƒ•ć‚£ćƒ¼ćƒ‰ć§čæ”äæ”ć‚’č”Øē¤ŗ" msgid "Show replies in Following feed" msgstr "Followingćƒ•ć‚£ćƒ¼ćƒ‰ć§čæ”äæ”ć‚’č”Øē¤ŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "{value}å€‹ä»„äøŠć®{0}ćŒć¤ć„ćŸčæ”äæ”ć‚’č”Øē¤ŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ćƒŖćƒć‚¹ćƒˆć‚’č”Øē¤ŗ" @@ -3655,17 +3753,18 @@ msgstr "ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’č”Øē¤ŗ" msgid "Show users" msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼ć‚’č”Øē¤ŗ" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "ć“ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ć«ä¼¼ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ć®ćƒŖć‚¹ćƒˆć‚’č”Øē¤ŗć—ć¾ć™ć€‚" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "ćƒžć‚¤ćƒ•ć‚£ćƒ¼ćƒ‰å†…ć®{0}ć‹ć‚‰ć®ęŠ•ēØæć‚’č”Øē¤ŗć—ć¾ć™" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3678,8 +3777,8 @@ msgid "Sign in" msgstr "ć‚µć‚¤ćƒ³ć‚¤ćƒ³" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "ć‚µć‚¤ćƒ³ć‚¤ćƒ³" @@ -3692,14 +3791,14 @@ msgstr "{0}ćØć—ć¦ć‚µć‚¤ćƒ³ć‚¤ćƒ³" msgid "Sign in as..." msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®éøęŠž" -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "ć‚µć‚¤ćƒ³ć‚¤ćƒ³" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "ć‚µć‚¤ćƒ³ć‚¢ć‚¦ćƒˆ" @@ -3723,7 +3822,7 @@ msgstr "ć‚µć‚¤ćƒ³ć‚¢ćƒƒćƒ—ć¾ćŸćÆć‚µć‚¤ćƒ³ć‚¤ćƒ³ć—ć¦ä¼šč©±ć«å‚åŠ " msgid "Sign-in Required" msgstr "ć‚µć‚¤ćƒ³ć‚¤ćƒ³ćŒåæ…č¦" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "ć‚µć‚¤ćƒ³ć‚¤ćƒ³ęøˆćæ" @@ -3736,7 +3835,7 @@ msgid "Signs {0} out of Bluesky" msgstr "Bluesky恋悉{0}ć‚’ć‚µć‚¤ćƒ³ć‚¢ć‚¦ćƒˆ" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "ć‚¹ć‚­ćƒƒćƒ—" @@ -3746,22 +3845,22 @@ msgid "Skip this flow" msgstr "ć“ć®ę‰‹é †ć‚’ć‚¹ć‚­ćƒƒćƒ—ć™ć‚‹" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "SMSčŖčØ¼" +#~ msgid "SMS verification" +#~ msgstr "SMSčŖčØ¼" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢é–‹ē™ŗ" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "ä½•ć‹ć®å•é”ŒćŒčµ·ćć¾ć—ćŸćŒć€ćć‚ŒćŒä½•ćŖć®ć‹ć‚ć‹ć‚Šć¾ć›ć‚“ć€‚" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "ä½•ć‹ć®å•é”ŒćŒčµ·ćć¾ć—ćŸćŒć€ćć‚ŒćŒä½•ćŖć®ć‹ć‚ć‹ć‚Šć¾ć›ć‚“ć€‚" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "ćŖć‚“ć‚‰ć‹ć®å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’ē¢ŗčŖć—ć€ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "ē”³ć—čØ³ć‚ć‚Šć¾ć›ć‚“ļ¼ć‚»ćƒƒć‚·ćƒ§ćƒ³ć®ęœ‰åŠ¹ęœŸé™ćŒåˆ‡ć‚Œć¾ć—ćŸć€‚ć‚‚ć†äø€åŗ¦ćƒ­ć‚°ć‚¤ćƒ³ć—ć¦ćć ć•ć„ć€‚" @@ -3782,10 +3881,10 @@ msgid "Square" msgstr "正方形" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "ć‚¹ćƒ†ćƒ¼ć‚øćƒ³ć‚°" +#~ msgid "Staging" +#~ msgstr "ć‚¹ćƒ†ćƒ¼ć‚øćƒ³ć‚°" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "ć‚¹ćƒ†ćƒ¼ć‚æć‚¹ćƒšćƒ¼ć‚ø" @@ -3797,12 +3896,12 @@ msgstr "{numSteps}個中{0}å€‹ē›®ć®ć‚¹ćƒ†ćƒƒćƒ—" #~ msgid "Step {step} of 3" #~ msgstr "3個中{step}å€‹ē›®ć®ć‚¹ćƒ†ćƒƒćƒ—" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "ć‚¹ćƒˆćƒ¬ćƒ¼ć‚øćŒć‚ÆćƒŖć‚¢ć•ć‚ŒćŸćŸć‚ć€ä»Šć™ćć‚¢ćƒ—ćƒŖć‚’å†čµ·å‹•ć™ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "ć‚¹ćƒˆćƒ¼ćƒŖćƒ¼ćƒ–ćƒƒć‚Æ" @@ -3810,7 +3909,7 @@ msgstr "ć‚¹ćƒˆćƒ¼ćƒŖćƒ¼ćƒ–ćƒƒć‚Æ" msgid "Submit" msgstr "送俔" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "ē™»éŒ²" @@ -3819,7 +3918,7 @@ msgstr "ē™»éŒ²" msgid "Subscribe to the {0} feed" msgstr "怌{0}ć€ćƒ•ć‚£ćƒ¼ćƒ‰ć‚’ē™»éŒ²" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ć“ć®ćƒŖć‚¹ćƒˆć«ē™»éŒ²" @@ -3839,35 +3938,35 @@ msgstr "ć‚ćŖćŸćøć®ćŠć™ć™ć‚" msgid "Suggestive" msgstr "ćć‚ć©ć„" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "ć‚µćƒćƒ¼ćƒˆ" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "äøŠć«ć‚¹ćƒÆć‚¤ćƒ—ć—ć¦ć•ć‚‰ć«č”Øē¤ŗ" +#~ msgid "Swipe up to see more" +#~ msgstr "äøŠć«ć‚¹ćƒÆć‚¤ćƒ—ć—ć¦ć•ć‚‰ć«č”Øē¤ŗ" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’åˆ‡ć‚Šę›æćˆć‚‹" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "{0}ć«åˆ‡ć‚Šę›æćˆ" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "ćƒ­ć‚°ć‚¤ćƒ³ć—ć¦ć„ć‚‹ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’åˆ‡ć‚Šę›æćˆć¾ć™" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "ć‚·ć‚¹ćƒ†ćƒ " -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "ć‚·ć‚¹ćƒ†ćƒ ćƒ­ć‚°" @@ -3883,14 +3982,14 @@ msgstr "ć‚æćƒƒćƒ—ć—ć¦å…Øä½“ć‚’č”Øē¤ŗ" msgid "Tech" msgstr "ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "ę”ä»¶" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "åˆ©ē”Øč¦ē“„" @@ -3899,7 +3998,11 @@ msgstr "åˆ©ē”Øč¦ē“„" msgid "Text input field" msgstr "ćƒ†ć‚­ć‚¹ćƒˆć®å…„åŠ›ćƒ•ć‚£ćƒ¼ćƒ«ćƒ‰" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ć“ć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć€ćƒ–ćƒ­ćƒƒć‚Æč§£é™¤å¾Œć«ć‚ćŖćŸćØć‚„ć‚Šå–ć‚Šć™ć‚‹ć“ćØćŒć§ćć¾ć™ć€‚" @@ -3915,7 +4018,7 @@ msgstr "č‘—ä½œęØ©ćƒćƒŖć‚·ćƒ¼ćÆ<0/>ć«ē§»å‹•ć—ć¾ć—ćŸ" msgid "The following steps will help customize your Bluesky experience." msgstr "ę¬”ć®ę‰‹é †ć§ć‚ćŖćŸć®Blueskyć§ć®ä½“éØ“ć‚’ć‚«ć‚¹ć‚æćƒžć‚¤ć‚ŗć§ćć¾ć™ć€‚" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "ęŠ•ēØæćŒå‰Šé™¤ć•ć‚ŒćŸåÆčƒ½ę€§ćŒć‚ć‚Šć¾ć™ć€‚" @@ -3935,11 +4038,11 @@ msgstr "ć‚µćƒćƒ¼ćƒˆćƒ•ć‚©ćƒ¼ćƒ ćÆē§»å‹•ć—ć¾ć—ćŸć€‚ć‚µćƒćƒ¼ćƒˆćŒåæ…č¦ćŖ msgid "The Terms of Service have been moved to" msgstr "ć‚µćƒ¼ćƒ“ć‚¹č¦ē“„ćÆē§»å‹•ć—ć¾ć—ćŸ" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "č©¦ć›ć‚‹ćƒ•ć‚£ćƒ¼ćƒ‰ćÆćŸćć•ć‚“ć‚ć‚Šć¾ć™ļ¼š" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "ć‚µćƒ¼ćƒćƒ¼ćøć®å•ć„åˆć‚ć›äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆćøć®ęŽ„ē¶šć‚’ē¢ŗčŖć®äøŠć€ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" @@ -3947,12 +4050,12 @@ msgstr "ć‚µćƒ¼ćƒćƒ¼ćøć®å•ć„åˆć‚ć›äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć‚¤ msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć®å‰Šé™¤äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆćøć®ęŽ„ē¶šć‚’ē¢ŗčŖć®äøŠć€ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ć®ę›“ę–°äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆćøć®ęŽ„ē¶šć‚’ē¢ŗčŖć®äøŠć€ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3961,9 +4064,9 @@ msgstr "ć‚µćƒ¼ćƒćƒ¼ćøć®å•ć„åˆć‚ć›äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸ" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "ć‚µćƒ¼ćƒćƒ¼ćøć®å•ć„åˆć‚ć›äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸ" @@ -3993,19 +4096,21 @@ msgstr "čØ­å®šć‚’ć‚µćƒ¼ćƒćƒ¼ćØåŒęœŸäø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸ" msgid "There was an issue with fetching your app passwords" msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć®å–å¾—äø­ć«å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸ" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸļ¼{0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆćøć®ęŽ„ē¶šć‚’ē¢ŗčŖć®äøŠć€ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" @@ -4013,13 +4118,13 @@ msgstr "å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆćøć®ęŽ„ē¶šć‚’ē¢ŗčŖ msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "ć‚¢ćƒ—ćƒŖć‚±ćƒ¼ć‚·ćƒ§ćƒ³ć«äŗˆęœŸć—ćŖć„å•é”ŒćŒē™ŗē”Ÿć—ć¾ć—ćŸć€‚ć“ć®ć‚ˆć†ćŖć“ćØćŒē¹°ć‚Ščæ”ć—ćŸå “åˆćÆć‚µćƒćƒ¼ćƒˆćøćŠēŸ„ć‚‰ć›ćć ć•ć„ļ¼" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Blueskyć«ę–°č¦ćƒ¦ćƒ¼ć‚¶ćƒ¼ćŒę®ŗåˆ°ć—ć¦ć„ć¾ć™ļ¼ć§ćć‚‹ć ć‘ę—©ćć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ęœ‰åŠ¹ć«ć§ćć‚‹ć‚ˆć†åŠŖć‚ć¾ć™ć€‚" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "ć“ć®é›»č©±ē•Ŗå·ćÆę­£ć—ćć‚ć‚Šć¾ć›ć‚“ć€‚ē™»éŒ²ć•ć‚Œć¦ć„ć‚‹å›½ć‚’éøęŠžć—ć€é›»č©±ē•Ŗå·ć‚’ēœē•„ć›ćšć«å…„åŠ›ć—ć¦ćć ć•ć„ļ¼" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "ć“ć®é›»č©±ē•Ŗå·ćÆę­£ć—ćć‚ć‚Šć¾ć›ć‚“ć€‚ē™»éŒ²ć•ć‚Œć¦ć„ć‚‹å›½ć‚’éøęŠžć—ć€é›»č©±ē•Ŗå·ć‚’ēœē•„ć›ćšć«å…„åŠ›ć—ć¦ćć ć•ć„ļ¼" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -4053,13 +4158,17 @@ msgstr "ć“ć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćÆé–¢äæ‚ć™ć‚‹ćƒ¦ćƒ¼ć‚¶ćƒ¼ć®äø€ę–¹ćŒä»–ę–¹ć‚’ćƒ– msgid "This content is not viewable without a Bluesky account." msgstr "ć“ć®ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ćÆBlueskyć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćŒćŖć„ćØé–²č¦§ć§ćć¾ć›ć‚“ć€‚" +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "ć“ć®ę©Ÿčƒ½ćÆćƒ™ćƒ¼ć‚æē‰ˆć§ć™ć€‚ ćƒŖćƒć‚øćƒˆćƒŖć®ć‚Øć‚Æć‚¹ćƒćƒ¼ćƒˆć®č©³ē“°ć«ć¤ć„ć¦ćÆć€ä»„äø‹ć‚’å‚ē…§ć—ć¦ćć ć•ć„ć€‚<0>ć“ć®ćƒ–ćƒ­ć‚°ęŠ•ēØæ" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "ē¾åœØć“ć®ćƒ•ć‚£ćƒ¼ćƒ‰ć«ćÆć‚¢ć‚Æć‚»ć‚¹ćŒé›†äø­ć—ć¦ćŠć‚Šć€äø€ę™‚ēš„ć«ć”åˆ©ē”Øć„ćŸć ć‘ć¾ć›ć‚“ć€‚ę™‚é–“ć‚’ćŠć„ć¦ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚" -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "ć“ć®ćƒ•ć‚£ćƒ¼ćƒ‰ćÆē©ŗć§ć™ļ¼" @@ -4091,7 +4200,7 @@ msgstr "ć“ć®ćƒŖć‚¹ćƒˆćÆē©ŗć§ć™ļ¼" msgid "This name is already in use" msgstr "ć“ć®åå‰ćÆć™ć§ć«ä½æē”Øäø­ć§ć™" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ć“ć®ęŠ•ēØæćÆå‰Šé™¤ć•ć‚Œć¾ć—ćŸć€‚" @@ -4115,12 +4224,12 @@ msgstr "ć“ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ćÆć€ć‚ćŖćŸćŒćƒŸćƒ„ćƒ¼ćƒˆć—ćŸ<0/>ćƒŖć‚¹ćƒˆć« msgid "This warning is only available for posts with media attached." msgstr "ć“ć®č­¦å‘ŠćÆć€ćƒ”ćƒ‡ć‚£ć‚¢ćŒę·»ä»˜ć•ć‚Œć¦ć„ć‚‹ęŠ•ēØæć«ć®ćæä½æē”Øć§ćć¾ć™ć€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "ć“ć®ęŠ•ēØæć‚’ć‚ćŖćŸć®ćƒ•ć‚£ćƒ¼ćƒ‰ć«ćŠć„ć¦éžč”Øē¤ŗć«ć—ć¾ć™ć€‚" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ć®čØ­å®š" @@ -4128,7 +4237,7 @@ msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ć®čØ­å®š" msgid "Threaded Mode" msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ćƒ¢ćƒ¼ćƒ‰" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ć®čØ­å®š" @@ -4140,13 +4249,13 @@ msgstr "ćƒ‰ćƒ­ćƒƒćƒ—ćƒ€ć‚¦ćƒ³ć‚’ćƒˆć‚°ćƒ«" msgid "Transformations" msgstr "å¤‰ę›" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "翻訳" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "å†č©¦č”Œ" @@ -4155,34 +4264,34 @@ msgstr "å†č©¦č”Œ" #~ msgid "Try again" #~ msgstr "å†č©¦č”Œ" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "ćƒŖć‚¹ćƒˆć§ć®ćƒ–ćƒ­ćƒƒć‚Æć‚’č§£é™¤" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "ćƒŖć‚¹ćƒˆć§ć®ćƒŸćƒ„ćƒ¼ćƒˆć‚’č§£é™¤" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "ć‚ćŖćŸć®ć‚µćƒ¼ćƒ“ć‚¹ć«ęŽ„ē¶šć§ćć¾ć›ć‚“ć€‚ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć®ęŽ„ē¶šć‚’ē¢ŗčŖć—ć¦ćć ć•ć„ć€‚" -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "ćƒ–ćƒ­ćƒƒć‚Æć‚’č§£é™¤" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "ćƒ–ćƒ­ćƒƒć‚Æć‚’č§£é™¤" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ćƒ–ćƒ­ćƒƒć‚Æć‚’č§£é™¤" @@ -4198,40 +4307,41 @@ msgctxt "action" msgid "Unfollow" msgstr "ćƒ•ć‚©ćƒ­ćƒ¼ć‚’ć‚„ć‚ć‚‹" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "{0}ć®ćƒ•ć‚©ćƒ­ćƒ¼ć‚’č§£é™¤" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "ę®‹åæµćŖćŒć‚‰ć€ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆć™ć‚‹ćŸć‚ć®č¦ä»¶ć‚’ęŗ€ćŸć—ć¦ć„ć¾ć›ć‚“ć€‚" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "いいねを外す" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "ćƒŸćƒ„ćƒ¼ćƒˆć‚’č§£é™¤" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ćƒŸćƒ„ćƒ¼ćƒˆć‚’č§£é™¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ć‚¹ćƒ¬ćƒƒćƒ‰ć®ćƒŸćƒ„ćƒ¼ćƒˆć‚’č§£é™¤" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "ćƒ”ćƒ³ē•™ć‚ć‚’č§£é™¤" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "ćƒ¢ćƒ‡ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ćƒŖć‚¹ćƒˆć®ćƒ”ćƒ³ē•™ć‚ć‚’č§£é™¤" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "äæå­˜ć‚’č§£é™¤" @@ -4274,8 +4384,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "ć“ć®ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćØćƒćƒ³ćƒ‰ćƒ«ć‚’ä½æć£ć¦ä»–ć®ć‚¢ćƒ—ćƒŖć«ć‚µć‚¤ćƒ³ć‚¤ćƒ³ć—ć¾ć™ć€‚" #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "ć‚ćŖćŸć®ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’Blueskyć®ć‚Æćƒ©ć‚¤ć‚¢ćƒ³ćƒˆć‚µćƒ¼ćƒ“ć‚¹ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ćØć—ć¦ä½æē”Ø" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "ć‚ćŖćŸć®ćƒ‰ćƒ”ć‚¤ćƒ³ć‚’Blueskyć®ć‚Æćƒ©ć‚¤ć‚¢ćƒ³ćƒˆć‚µćƒ¼ćƒ“ć‚¹ćƒ—ćƒ­ćƒć‚¤ćƒ€ćƒ¼ćØć—ć¦ä½æē”Ø" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4293,11 +4403,11 @@ msgstr "ćƒŖć‚¹ćƒˆć«ć‚ˆć£ć¦ćƒ–ćƒ­ćƒƒć‚Æäø­ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼" msgid "User Blocks You" msgstr "ć‚ćŖćŸć‚’ćƒ–ćƒ­ćƒƒć‚Æć—ć¦ć„ć‚‹ćƒ¦ćƒ¼ć‚¶ćƒ¼" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒćƒ³ćƒ‰ćƒ«" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "<0/>ć®ä½œęˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒŖć‚¹ćƒˆ" @@ -4306,7 +4416,7 @@ msgstr "<0/>ć®ä½œęˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒŖć‚¹ćƒˆ" msgid "User list by <0/>" msgstr "<0/>ć®ä½œęˆć—ćŸćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒŖć‚¹ćƒˆ" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4324,8 +4434,8 @@ msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒŖć‚¹ćƒˆć‚’ę›“ę–°ć—ć¾ć—ćŸ" msgid "User Lists" msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒŖć‚¹ćƒˆ" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "ćƒ¦ćƒ¼ć‚¶ćƒ¼åć¾ćŸćÆćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹" @@ -4342,18 +4452,18 @@ msgid "Users in \"{0}\"" msgstr "{0}ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "čŖčØ¼ć‚³ćƒ¼ćƒ‰" +#~ msgid "Verification code" +#~ msgstr "čŖčØ¼ć‚³ćƒ¼ćƒ‰" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’ē¢ŗčŖ" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’ē¢ŗčŖ" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’ē¢ŗčŖ" @@ -4370,7 +4480,7 @@ msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’ē¢ŗčŖ" msgid "Video Games" msgstr "ćƒ“ćƒ‡ć‚Ŗć‚²ćƒ¼ćƒ " -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "{0}ć®ć‚¢ćƒć‚æćƒ¼ć‚’č”Øē¤ŗ" @@ -4395,15 +4505,15 @@ msgid "Visit Site" msgstr "ć‚µć‚¤ćƒˆćøć‚¢ć‚Æć‚»ć‚¹" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "č­¦å‘Š" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "Skygazeć«ć‚ˆć‚‹ć€ŒFor Youć€ćƒ•ć‚£ćƒ¼ćƒ‰ć‚‚ćŠć™ć™ć‚ļ¼š" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "ć‚ćŖćŸć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćŒęŗ–å‚™ć§ćć‚‹ć¾ć§{estimatedTime}ć»ć©ć‹ć‹ć‚Šć¾ć™ć€‚" @@ -4423,7 +4533,7 @@ msgstr "ć‚ćŖćŸć®ćƒ•ć‚©ćƒ­ćƒ¼äø­ć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ć®ęŠ•ēØæć‚’čŖ­ćæēµ‚ć‚ć‚Šć¾ #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "Skygazeć«ć‚ˆć‚‹ć€ŒFor Youć€ćƒ•ć‚£ćƒ¼ćƒ‰ćŒćŠć™ć™ć‚ļ¼š" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "ęˆ‘ć€…ć®ć€ŒDiscoverć€ćƒ•ć‚£ćƒ¼ćƒ‰ćŒćŠć™ć™ć‚ļ¼š" @@ -4431,7 +4541,7 @@ msgstr "ęˆ‘ć€…ć®ć€ŒDiscoverć€ćƒ•ć‚£ćƒ¼ćƒ‰ćŒćŠć™ć™ć‚ļ¼š" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "ęŽ„ē¶šć§ćć¾ć›ć‚“ć§ć—ćŸć€‚ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®čØ­å®šć‚’ē¶šć‘ć‚‹ćŸć‚ć«ć‚‚ć†äø€åŗ¦ćŠč©¦ć—ćć ć•ć„ć€‚ē¹°ć‚Ščæ”ć—å¤±ę•—ć™ć‚‹å “åˆćÆć€ć“ć®ę‰‹é †ć‚’ć‚¹ć‚­ćƒƒćƒ—ć™ć‚‹ć“ćØć‚‚ć§ćć¾ć™ć€‚" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć®ęŗ–å‚™ćŒć§ććŸć‚‰ćŠēŸ„ć‚‰ć›ć—ć¾ć™ć€‚" @@ -4443,11 +4553,11 @@ msgstr "ē§ćŸć”ćÆć‚ćŖćŸć®ē”³ć—ē«‹ć¦ć‚’čæ…é€Ÿć«čŖæęŸ»ć—ć¾ć™ć€‚" msgid "We'll use this to help customize your experience." msgstr "ć“ć‚ŒćÆć‚ćŖćŸć®ä½“éØ“ć‚’ć‚«ć‚¹ć‚æćƒžć‚¤ć‚ŗć™ć‚‹ćŸć‚ć«ä½æē”Øć•ć‚Œć¾ć™ć€‚" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "ē§ćŸć”ćÆć‚ćŖćŸćŒå‚åŠ ć—ć¦ćć‚Œć‚‹ć“ćØć‚’ćØć¦ć‚‚ę„½ć—ćæć«ć—ć¦ć„ć¾ć™ļ¼" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "å¤§å¤‰ē”³ć—čØ³ć‚ć‚Šć¾ć›ć‚“ćŒć€ć“ć®ćƒŖć‚¹ćƒˆć‚’č§£ę±ŗć§ćć¾ć›ć‚“ć§ć—ćŸć€‚ćć‚Œć§ć‚‚ć“ć®å•é”ŒćŒč§£ę±ŗć—ćŖć„å “åˆćÆć€ä½œęˆč€…ć®@{handleOrDid}ć¾ć§ćŠå•ć„åˆć‚ć›ćć ć•ć„ć€‚" @@ -4471,7 +4581,7 @@ msgstr "ä½•ć«čˆˆå‘³ćŒć‚ć‚Šć¾ć™ć‹ļ¼Ÿ" msgid "What is the issue with this {collectionName}?" msgstr "恓恮{collectionName}ć®å•é”ŒćÆä½•ć§ć™ć‹ļ¼Ÿ" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "ęœ€čæ‘ć©ć†ļ¼Ÿ" @@ -4507,14 +4617,14 @@ msgid "Writers" msgstr "ćƒ©ć‚¤ć‚æćƒ¼" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "XXXXXX" +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4524,7 +4634,7 @@ msgstr "はい" #~ msgid "You are in control" #~ msgstr "ć‚ćŖćŸćŒć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«ć—ć¦ć„ć¾ć™" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "ć‚ćŖćŸćÆäø¦ć‚“ć§ć„ć¾ć™ć€‚" @@ -4558,7 +4668,7 @@ msgstr "ć¾ć ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćŒć‚ć‚Šć¾ć›ć‚“ļ¼Bluesky悒悂恆恗恰悉恏 msgid "You don't have any pinned feeds." msgstr "ćƒ”ćƒ³ē•™ć‚ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ćŒć‚ć‚Šć¾ć›ć‚“ć€‚" -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ćŒć‚ć‚Šć¾ć›ć‚“ļ¼" @@ -4566,7 +4676,7 @@ msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ćŒć‚ć‚Šć¾ć›ć‚“ļ¼" msgid "You don't have any saved feeds." msgstr "äæå­˜ć•ć‚ŒćŸćƒ•ć‚£ćƒ¼ćƒ‰ćŒć‚ć‚Šć¾ć›ć‚“ć€‚" -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "ć‚ćŖćŸćŒęŠ•ēØæč€…ć‚’ćƒ–ćƒ­ćƒƒć‚Æć—ć¦ć„ć‚‹ć‹ć€ć¾ćŸćÆęŠ•ēØæč€…ć«ć‚ˆć£ć¦ć‚ćŖćŸćÆćƒ–ćƒ­ćƒƒć‚Æć•ć‚Œć¦ć„ć¾ć™ć€‚" @@ -4606,7 +4716,7 @@ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćÆć¾ć ä½œęˆć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚äø‹ć®ćƒœ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "ćƒŸćƒ„ćƒ¼ćƒˆć—ć¦ć„ć‚‹ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆć¾ć ć‚ć‚Šć¾ć›ć‚“ć€‚ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆć™ć‚‹ć«ćÆć€ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«ć«ē§»å‹•ć—ć€ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćƒ”ćƒ‹ćƒ„ćƒ¼ć‹ć‚‰ć€Œć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ćƒŸćƒ„ćƒ¼ćƒˆć€ć‚’éøęŠžć—ć¾ć™ć€‚" -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ć«ćÆć€18ę­³ä»„äøŠć§ć‚ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" @@ -4614,11 +4724,11 @@ msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ć«ćÆć€18ę­³ä»„äøŠć§ć‚ msgid "You must be 18 years or older to enable adult content" msgstr "ęˆäŗŗå‘ć‘ć‚³ćƒ³ćƒ†ćƒ³ćƒ„ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ć«ćÆć€18ę­³ä»„äøŠć§ć‚ć‚‹åæ…č¦ćŒć‚ć‚Šć¾ć™ć€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "ć“ć‚Œä»„é™ć€ć“ć®ć‚¹ćƒ¬ćƒƒćƒ‰ć«é–¢ć™ć‚‹é€šēŸ„ć‚’å—ć‘å–ć‚‹ć“ćØćÆć§ććŖććŖć‚Šć¾ć™" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "ć“ć‚Œä»„é™ć€ć“ć®ć‚¹ćƒ¬ćƒƒćƒ‰ć«é–¢ć™ć‚‹é€šēŸ„ć‚’å—ć‘å–ć‚‹ć“ćØćŒć§ćć¾ć™" @@ -4630,9 +4740,9 @@ msgstr "ć€ŒćƒŖć‚»ćƒƒćƒˆć‚³ćƒ¼ćƒ‰ć€ćŒčØ˜č¼‰ć•ć‚ŒćŸćƒ”ćƒ¼ćƒ«ćŒå±Šćć¾ć™ć€‚ msgid "You're in control" msgstr "ć‚ćŖćŸćŒć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«ć—ć¦ć„ć¾ć™" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "ć‚ćŖćŸćÆäø¦ć‚“ć§ć„ć¾ć™ć€‚" @@ -4644,7 +4754,7 @@ msgstr "ęŗ–å‚™ćŒć§ćć¾ć—ćŸļ¼" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ćƒ•ć‚£ćƒ¼ćƒ‰ćÆć“ć“ć¾ć§ć§ć™ļ¼ć‚‚ć£ćØćƒ•ć‚©ćƒ­ćƒ¼ć™ć‚‹ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’č¦‹ć¤ć‘ć¾ć—ć‚‡ć†ć€‚" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "ć‚ćŖćŸć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" @@ -4652,7 +4762,11 @@ msgstr "ć‚ćŖćŸć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆ" msgid "Your account has been deleted" msgstr "ć‚ćŖćŸć®ć‚¢ć‚«ć‚¦ćƒ³ćƒˆćÆå‰Šé™¤ć•ć‚Œć¾ć—ćŸ" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "ē”Ÿå¹“ęœˆę—„" @@ -4664,7 +4778,7 @@ msgstr "ć“ć“ć§éøęŠžć—ćŸå†…å®¹ćÆäæå­˜ć•ć‚Œć¾ć™ćŒć€å¾Œć‹ć‚‰čØ­å®šć§ msgid "Your default feed is \"Following\"" msgstr "ć‚ćŖćŸć®ćƒ‡ćƒ•ć‚©ćƒ«ćƒˆćƒ•ć‚£ćƒ¼ćƒ‰ćÆć€ŒFollowing怍恧恙" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4686,7 +4800,7 @@ msgstr "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ćÆć¾ć ē¢ŗčŖć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚ć“ć‚ŒćÆć€ msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Followingćƒ•ć‚£ćƒ¼ćƒ‰ćÆē©ŗć§ć™ļ¼ć‚‚ć£ćØå¤šćć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ć‚’ćƒ•ć‚©ćƒ­ćƒ¼ć—ć¦ć€čæ‘ę³ć‚’ē¢ŗčŖć—ć¾ć—ć‚‡ć†ć€‚" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ćƒ•ćƒ«ćƒćƒ³ćƒ‰ćƒ«ćÆ" @@ -4701,8 +4815,8 @@ msgstr "ćƒ•ćƒ«ćƒćƒ³ćƒ‰ćƒ«ćÆ<0>@{0}ć«ćŖć‚Šć¾ć™" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ä½æē”Øć—ć¦ćƒ­ć‚°ć‚¤ćƒ³ć™ć‚‹ćØć€ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćÆéžč”Øē¤ŗć«ćŖć‚Šć¾ć™ć€‚" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "ć‚¢ćƒ—ćƒŖćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ä½æē”Øć—ć¦ćƒ­ć‚°ć‚¤ćƒ³ć™ć‚‹ćØć€ę‹›å¾…ć‚³ćƒ¼ćƒ‰ćÆéžč”Øē¤ŗć«ćŖć‚Šć¾ć™ć€‚" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4719,7 +4833,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "ęŠ•ēØæć€ć„ć„ć­ć€ćƒ–ćƒ­ćƒƒć‚ÆćÆå…¬é–‹ć•ć‚Œć¾ć™ć€‚ćƒŸćƒ„ćƒ¼ćƒˆćÆéžå…¬é–‹ć§ć™ć€‚" #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "ć‚ćŖćŸć®ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«" @@ -4731,6 +4845,6 @@ msgstr "ć‚ćŖćŸć®ćƒ—ćƒ­ćƒ•ć‚£ćƒ¼ćƒ«" msgid "Your reply has been published" msgstr "čæ”äæ”ć‚’å…¬é–‹ć—ć¾ć—ćŸ" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ć‚ćŖćŸć®ćƒ¦ćƒ¼ć‚¶ćƒ¼ćƒćƒ³ćƒ‰ćƒ«" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 65e2be5e8e..7ef971ac77 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "(ģ“ė©”ģ¼ ģ—†ģŒ)" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {ģ“ˆėŒ€ ģ½”ė“œ #개 ģ‚¬ģš© ź°€ėŠ„} other {ģ“ˆėŒ€ ģ½”ė“œ #개 ģ‚¬ģš© ź°€ėŠ„}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {ģ“ˆėŒ€ ģ½”ė“œ #개 ģ‚¬ģš© ź°€ėŠ„} other {ģ“ˆėŒ€ ģ½”ė“œ #개 ģ‚¬ģš© ź°€ėŠ„}}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} ķŒ”ė”œģš° 중" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {ģ“ˆėŒ€ ģ½”ė“œ: #개 ģ‚¬ģš© ź°€ėŠ„} other {ģ“ˆėŒ€ ģ½”ė“œ: #개 ģ‚¬ģš© ź°€ėŠ„}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {ģ“ˆėŒ€ ģ½”ė“œ: #개 ģ‚¬ģš© ź°€ėŠ„} other {ģ“ˆėŒ€ ģ½”ė“œ: #개 ģ‚¬ģš© ź°€ėŠ„}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "ģ“ˆėŒ€ ģ½”ė“œ {invitesAvailable}개 ģ‚¬ģš© ź°€ėŠ„" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "ģ“ˆėŒ€ ģ½”ė“œ {invitesAvailable}개 ģ‚¬ģš© ź°€ėŠ„" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "ģ“ˆėŒ€ ģ½”ė“œ {invitesAvailable}개 ģ‚¬ģš© ź°€ėŠ„" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "ģ“ˆėŒ€ ģ½”ė“œ {invitesAvailable}개 ģ‚¬ģš© ź°€ėŠ„" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}개 ģ½ģ§€ ģ•ŠģŒ" @@ -47,7 +47,7 @@ msgstr "{numUnreadNotifications}개 ģ½ģ§€ ģ•ŠģŒ" msgid "<0/> members" msgstr "<0/> 멤버" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following} <1>ķŒ”ė”œģš° 중" @@ -63,7 +63,7 @@ msgstr "<1>ģ¶”ģ²œ ģ‚¬ģš©ģž<0>ķŒ”ė”œģš°ķ•˜źø°" msgid "<0>Welcome to<1>Bluesky" msgstr "<1>Bluesky<0>에 ģ˜¤ģ‹  ź²ƒģ„ ķ™˜ģ˜ķ•©ė‹ˆė‹¤" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "⚠ ģž˜ėŖ»ėœ 핸들" @@ -80,26 +80,26 @@ msgstr "새 ė²„ģ „ģ˜ ģ•±ģ„ ģ‚¬ģš©ķ•  수 ģžˆģŠµė‹ˆė‹¤. ģ•±ģ„ ź³„ģ† ģ‚¬ģš©ķ•˜ msgid "Access navigation links and settings" msgstr "ķƒģƒ‰ 링크 ė° ģ„¤ģ •ģœ¼ė”œ ģ“ė™ķ•©ė‹ˆė‹¤" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "ķ”„ė”œķ•„ ė° źø°ķƒ€ ķƒģƒ‰ 링크딜 ģ“ė™ķ•©ė‹ˆė‹¤" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "접근성" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "계정" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "계정 차단됨" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "계정 뮤트됨" @@ -119,11 +119,11 @@ msgstr "계정 ģ˜µģ…˜" msgid "Account removed from quick access" msgstr "빠넸 ģ•”ģ„øģŠ¤ģ—ģ„œ 계정 제거" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "계정 차단 ķ•“ģ œėØ" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "계정 ģ–øė®¤ķŠøėØ" @@ -142,8 +142,8 @@ msgstr "ģ½˜ķ…ģø  경고 추가" msgid "Add a user to this list" msgstr "ģ“ ė¦¬ģŠ¤ķŠøģ— ģ‚¬ģš©ģž 추가" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "계정 추가" @@ -180,12 +180,12 @@ msgstr "링크 ģ¹“ė“œ 추가:" msgid "Add the following DNS record to your domain:" msgstr "ė„ė©”ģøģ— ė‹¤ģŒ DNS ė ˆģ½”ė“œė„¼ ģ¶”ź°€ķ•˜ģ„øģš”:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ė¦¬ģŠ¤ķŠøģ— 추가" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ė‚“ ķ”¼ė“œģ— 추가" @@ -198,11 +198,11 @@ msgstr "추가됨" msgid "Added to list" msgstr "ė¦¬ģŠ¤ķŠøģ— 추가됨" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "ė‚“ ķ”¼ė“œģ— 추가됨" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "ė‹µźø€ģ“ ķ”¼ė“œģ— ķ‘œģ‹œė˜źø° ģœ„ķ•“ ķ•„ģš”ķ•œ ģ¢‹ģ•„ģš” ķ‘œģ‹œ 수넼 ģ”°ģ •ķ•©ė‹ˆė‹¤." @@ -210,15 +210,19 @@ msgstr "ė‹µźø€ģ“ ķ”¼ė“œģ— ķ‘œģ‹œė˜źø° ģœ„ķ•“ ķ•„ģš”ķ•œ ģ¢‹ģ•„ģš” ķ‘œģ‹œ 수 msgid "Adult Content" msgstr "ģ„±ģø ģ½˜ķ…ģø " -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "ģ„±ģø ģ½˜ķ…ģø ėŠ” <0/>ģ—ģ„œ ģ›¹ģ„ ķ†µķ•“ģ„œė§Œ ķ™œģ„±ķ™”ķ•  수 ģžˆģŠµė‹ˆė‹¤." -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "ź³ źø‰" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -277,7 +281,7 @@ msgstr "앱 ė¹„ė°€ė²ˆķ˜ø ģ“ė¦„ģ—ėŠ” ė¬øģž, ģˆ«ģž, 공백, ėŒ€ģ‹œ, ė°‘ģ¤„ė§Œ msgid "App Password names must be at least 4 characters long." msgstr "앱 ė¹„ė°€ė²ˆķ˜ø ģ“ė¦„ģ€ 4ģž ģ“ģƒģ“ģ–“ģ•¼ ķ•©ė‹ˆė‹¤." -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "앱 ė¹„ė°€ė²ˆķ˜ø 설정" @@ -285,13 +289,13 @@ msgstr "앱 ė¹„ė°€ė²ˆķ˜ø 설정" #~ msgid "App passwords" #~ msgstr "앱 ė¹„ė°€ė²ˆķ˜ø" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "앱 ė¹„ė°€ė²ˆķ˜ø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ģ½˜ķ…ģø  경고 ģ“ģ˜ģ‹ ģ²­" @@ -307,7 +311,7 @@ msgstr "ģ“ 결정에 ģ“ģ˜ģ‹ ģ²­" msgid "Appeal this decision." msgstr "ģ“ 결정에 ģ“ģ˜ģ‹ ģ²­ķ•©ė‹ˆė‹¤." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "ėŖØģ–‘" @@ -319,11 +323,11 @@ msgstr "앱 ė¹„ė°€ė²ˆķ˜ø \"{name}\"ģ„(넼) ģ‚­ģ œķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" msgid "Are you sure you'd like to discard this draft?" msgstr "ģ“ ģ“ˆģ•ˆģ„ ģ‚­ģ œķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ģ •ė§ģøź°€ģš”?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ģ •ė§ģøź°€ģš”? ė˜ėŒė¦“ 수 ģ—†ģŠµė‹ˆė‹¤." @@ -339,21 +343,21 @@ msgstr "예술" msgid "Artistic or non-erotic nudity." msgstr "ģ„ ģ •ģ ģ“ģ§€ ģ•Šź±°ė‚˜ ģ˜ˆģˆ ģ ģø ė…øģ¶œ." -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ė’¤ė”œ" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "ė’¤ė”œ" @@ -362,42 +366,42 @@ msgstr "ė’¤ė”œ" msgid "Based on your interest in {interestsText}" msgstr "{interestsText}에 ėŒ€ķ•œ ꓀심사 기반" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "źø°ė³ø" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "ģƒė…„ģ›”ģ¼" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "ģƒė…„ģ›”ģ¼:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "계정 차단" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "계정 차단" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "리스트 차단" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ģ“ ź³„ģ •ė“¤ģ„ ģ°Øė‹Øķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "ģ“ 리스트 차단" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "차단됨" @@ -410,7 +414,7 @@ msgstr "ģ°Øė‹Øķ•œ 계정" msgid "Blocked Accounts" msgstr "ģ°Øė‹Øķ•œ 계정" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ģ°Øė‹Øķ•œ ź³„ģ •ģ€ ė‚“ ģŠ¤ė ˆė“œģ— ė‹µźø€ģ„ ė‹¬ź±°ė‚˜ ė‚˜ė„¼ ė©˜ģ…˜ķ•˜ź±°ė‚˜ źø°ķƒ€ 다넸 ė°©ģ‹ģœ¼ė”œ ė‚˜ģ™€ ģƒķ˜øģž‘ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤." @@ -418,22 +422,29 @@ msgstr "ģ°Øė‹Øķ•œ ź³„ģ •ģ€ ė‚“ ģŠ¤ė ˆė“œģ— ė‹µźø€ģ„ ė‹¬ź±°ė‚˜ ė‚˜ė„¼ ė©˜ģ…˜ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ģ°Øė‹Øķ•œ ź³„ģ •ģ€ ė‚“ ģŠ¤ė ˆė“œģ— ė‹µźø€ģ„ ė‹¬ź±°ė‚˜ ė‚˜ė„¼ ė©˜ģ…˜ķ•˜ź±°ė‚˜ źø°ķƒ€ 다넸 ė°©ģ‹ģœ¼ė”œ ė‚˜ģ™€ ģƒķ˜øģž‘ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤. ģ°Øė‹Øķ•œ ź³„ģ •ģ˜ ģ½˜ķ…ģø ė„¼ ė³¼ 수 ģ—†ģœ¼ė©° 핓당 ź³„ģ •ė„ ė‚“ ģ½˜ķ…ģø ė„¼ ė³¼ 수 ģ—†ź²Œ ė©ė‹ˆė‹¤." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "ģ°Øė‹Øėœ ź²Œģ‹œė¬¼." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "차단 ėŖ©ė”ģ€ ź³µź°œė©ė‹ˆė‹¤. ģ°Øė‹Øķ•œ ź³„ģ •ģ€ ė‚“ ģŠ¤ė ˆė“œģ— ė‹µźø€ģ„ ė‹¬ź±°ė‚˜ ė‚˜ė„¼ ė©˜ģ…˜ķ•˜ź±°ė‚˜ źø°ķƒ€ 다넸 ė°©ģ‹ģœ¼ė”œ ė‚˜ģ™€ ģƒķ˜øģž‘ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "ėø”ė”œź·ø" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -458,24 +469,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "ė”œź·øģ•„ģ›ƒķ•œ ģ‚¬ģš©ģžģ—ź²Œ ė‚“ ķ”„ė”œķ•„ź³¼ ź²Œģ‹œė¬¼ģ„ ķ‘œģ‹œķ•˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤. 다넸 ģ•±ģ—ģ„œėŠ” ģ“ ģ„¤ģ •ģ„ ė”°ė„“ģ§€ ģ•Šģ„ 수 ģžˆģŠµė‹ˆė‹¤. ė‚“ ź³„ģ •ģ„ ė¹„ź³µź°œė”œ ģ „ķ™˜ķ•˜ģ§€ėŠ” ģ•ŠģŠµė‹ˆė‹¤." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "ģ±…" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "ė¹Œė“œ 버전 {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "ė¹„ģ¦ˆė‹ˆģŠ¤" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "ė²„ķŠ¼ģ“ ė¹„ķ™œģ„±ķ™”ė˜ģ—ˆģŠµė‹ˆė‹¤. ź³„ģ†ķ•˜ė ¤ė©“ ģ‚¬ģš©ģž 지정 ė„ė©”ģøģ„ ģž…ė „ķ•˜ģ„øģš”" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "ė²„ķŠ¼ģ“ ė¹„ķ™œģ„±ķ™”ė˜ģ—ˆģŠµė‹ˆė‹¤. ź³„ģ†ķ•˜ė ¤ė©“ ģ‚¬ģš©ģž 지정 ė„ė©”ģøģ„ ģž…ė „ķ•˜ģ„øģš”" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -494,8 +506,8 @@ msgid "by you" msgstr "ė‚“ź°€ ė§Œė“¦" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "ģ¹“ė©”ė¼" @@ -503,7 +515,7 @@ msgstr "ģ¹“ė©”ė¼" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "źø€ģž, ģˆ«ģž, 공백, ėŒ€ģ‹œ, ė°‘ģ¤„ė§Œ ķ¬ķ•Øķ•  수 ģžˆģŠµė‹ˆė‹¤. źøøģ“ėŠ” 4ģž ģ“ģƒģ“ģ–“ģ•¼ ķ•˜ź³  32ģžė„¼ ė„˜ģ§€ ģ•Šģ•„ģ•¼ ķ•©ė‹ˆė‹¤." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -563,17 +575,17 @@ msgstr "ź²€ģƒ‰ ģ·Øģ†Œ" msgid "Cancel waitlist signup" msgstr "ėŒ€źø°ģž 명단 ė“±ė” ģ·Øģ†Œ" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "변경" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "핸들 변경" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "핸들 변경" @@ -581,11 +593,11 @@ msgstr "핸들 변경" msgid "Change my email" msgstr "ė‚“ ģ“ė©”ģ¼ ė³€ź²½ķ•˜źø°" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -593,7 +605,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "ź²Œģ‹œė¬¼ 언얓넼 {0}(으)딜 변경" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -601,8 +613,8 @@ msgstr "" msgid "Change Your Email" msgstr "ģ“ė©”ģ¼ 변경" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "ė‚“ 상태 ķ™•ģø" @@ -622,11 +634,11 @@ msgstr "ė°›ģ€ ķŽøģ§€ķ•Øģ—ģ„œ ģ•„ėž˜ģ— ģž…ė „ķ•˜ėŠ” ķ™•ģø ģ½”ė“œź°€ ķ¬ķ•Øėœ msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "\"모두\" ė˜ėŠ” \"ģ—†ģŒ\"ģ„ ģ„ ķƒķ•˜ģ„øģš”." -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "새 Bluesky ģ‚¬ģš©ģž ģ“ė¦„ģ„ ģ„ ķƒķ•˜ź±°ė‚˜ ė§Œė“­ė‹ˆė‹¤" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "ģ„œė¹„ģŠ¤ ģ„ ķƒ" @@ -643,29 +655,29 @@ msgstr "ė§žģ¶¤ ķ”¼ė“œė„¼ 통핓 ģ‚¬ģš©ģž ź²½ķ—˜ģ„ ź°•ķ™”ķ•˜ėŠ” ģ•Œź³ ė¦¬ģ¦˜ģ„ msgid "Choose your main feeds" msgstr "źø°ė³ø ķ”¼ė“œ ģ„ ķƒ" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "ė¹„ė°€ė²ˆķ˜øė„¼ ģž…ė „ķ•˜ģ„øģš”" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "ėŖØė“  ė ˆź±°ģ‹œ ģŠ¤ķ† ė¦¬ģ§€ ė°ģ“ķ„° ģ§€ģš°źø°" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "ėŖØė“  ė ˆź±°ģ‹œ ģŠ¤ķ† ė¦¬ģ§€ ė°ģ“ķ„° ģ§€ģš°źø° (ģ“ķ›„ ė‹¤ģ‹œ ģ‹œģž‘)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "ėŖØė“  ģŠ¤ķ† ė¦¬ģ§€ ė°ģ“ķ„° ģ§€ģš°źø°" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "ėŖØė“  ģŠ¤ķ† ė¦¬ģ§€ ė°ģ“ķ„° ģ§€ģš°źø° (ģ“ķ›„ ė‹¤ģ‹œ ģ‹œģž‘)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "ź²€ģƒ‰ģ–“ ģ§€ģš°źø°" @@ -683,7 +695,8 @@ msgstr "기후" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "ķ™œģ„± ėŒ€ķ™” ģƒģž ė‹«źø°" @@ -735,7 +748,7 @@ msgstr "코미디" msgid "Comics" msgstr "ė§Œķ™”" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ģ»¤ė®¤ė‹ˆķ‹° ź°€ģ“ė“œė¼ģø" @@ -744,6 +757,10 @@ msgstr "ģ»¤ė®¤ė‹ˆķ‹° ź°€ģ“ė“œė¼ģø" msgid "Complete onboarding and start using your account" msgstr "ģ˜Øė³“ė”© ģ™„ė£Œ 후 계정 ģ‚¬ģš© ģ‹œģž‘" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ģµœėŒ€ {MAX_GRAPHEME_LENGTH}ģž źøøģ“ź¹Œģ§€ źø€ģ„ ģž‘ģ„±ķ•  수 ģžˆģŠµė‹ˆė‹¤" @@ -756,12 +773,12 @@ msgstr "답글 ģž‘ģ„±ķ•˜źø°" msgid "Configure content filtering setting for category: {0}" msgstr "{0} ģ¹“ķ…Œź³ ė¦¬ģ— ėŒ€ķ•œ ģ½˜ķ…ģø  필터링 설정 구성" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ķ™•ģø" @@ -785,7 +802,7 @@ msgstr "ģ½˜ķ…ģø  ģ–øģ–“ 설정 ķ™•ģø" msgid "Confirm delete account" msgstr "계정 ģ‚­ģ œ ķ™•ģø" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "ģ„±ģø ģ½˜ķ…ģø ė„¼ ģ‚¬ģš©ķ•˜ė ¤ė©“ ė‚˜ģ“ė„¼ ķ™•ģøķ•˜ģ„øģš”." @@ -799,12 +816,12 @@ msgstr "ķ™•ģø ģ½”ė“œ" msgid "Confirms signing up {email} to the waitlist" msgstr "{email}ģ„(넼) ėŒ€źø°ģž 명단에 ė“±ė”ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ģ—°ź²° 중…" -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "지원에 ģ—°ė½ķ•˜źø°" @@ -834,11 +851,11 @@ msgstr "ģ½˜ķ…ģø  경고" msgid "Content warnings" msgstr "ģ½˜ķ…ģø  경고" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -847,15 +864,15 @@ msgstr "ź³„ģ†" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "ė‹¤ģŒ ė‹Øź³„ė”œ ź³„ģ†ķ•˜źø°" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "ė‹¤ģŒ ė‹Øź³„ė”œ ź³„ģ†ķ•˜źø°" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "ź³„ģ •ģ„ ķŒ”ė”œģš°ķ•˜ģ§€ ģ•Šź³  ė‹¤ģŒ ė‹Øź³„ė”œ ź³„ģ†ķ•˜źø°" @@ -868,13 +885,13 @@ msgstr "ģš”ė¦¬" msgid "Copied" msgstr "복사됨" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "ė¹Œė“œ 버전 ķ“ė¦½ė³“ė“œģ— 복사됨" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "ķ“ė¦½ė³“ė“œģ— 복사됨" @@ -886,28 +903,28 @@ msgstr "앱 ė¹„ė°€ė²ˆķ˜øė„¼ ė³µģ‚¬ķ•©ė‹ˆė‹¤" msgid "Copy" msgstr "복사" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "리스트 링크 복사" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "ź²Œģ‹œė¬¼ 링크 복사" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "ķ”„ė”œķ•„ 링크 복사" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ź²Œģ‹œė¬¼ ķ…ģŠ¤ķŠø 복사" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "ģ €ģž‘ź¶Œ ģ •ģ±…" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ķ”¼ė“œė„¼ 불러올 수 ģ—†ģŠµė‹ˆė‹¤" @@ -916,20 +933,20 @@ msgid "Could not load list" msgstr "리스트넼 불러올 수 ģ—†ģŠµė‹ˆė‹¤" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "źµ­ź°€" +#~ msgid "Country" +#~ msgstr "źµ­ź°€" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "새 계정 ė§Œė“¤źø°" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "새 Bluesky ź³„ģ •ģ„ ė§Œė“­ė‹ˆė‹¤" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "계정 ė§Œė“¤źø°" @@ -938,7 +955,7 @@ msgid "Create App Password" msgstr "앱 ė¹„ė°€ė²ˆķ˜ø ė§Œė“¤źø°" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "새 계정 ė§Œė“¤źø°" @@ -962,12 +979,17 @@ msgstr "미리볓기 ģ“ėÆøģ§€ź°€ ģžˆėŠ” ģ¹“ė“œė„¼ ė§Œė“­ė‹ˆė‹¤. ģ¹“ė“œź°€ {url} msgid "Culture" msgstr "문화" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "ģ‚¬ģš©ģž 지정 ė„ė©”ģø" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "ģ»¤ė®¤ė‹ˆķ‹°ģ—ģ„œ źµ¬ģ¶•ķ•œ ė§žģ¶¤ ķ”¼ė“œėŠ” 새딜욓 ź²½ķ—˜ģ„ ģ œź³µķ•˜ź³  ģ¢‹ģ•„ķ•˜ėŠ” ģ½˜ķ…ģø ė„¼ ģ°¾ģ„ 수 ģžˆė„ė” ė„ģ™€ģ¤ė‹ˆė‹¤." @@ -979,8 +1001,8 @@ msgstr "외부 ģ‚¬ģ“ķŠø 미디얓넼 ģ‚¬ģš©ģž ģ§€ģ •ķ•©ė‹ˆė‹¤." #~ msgid "Danger Zone" #~ msgstr "ģœ„ķ—˜ 구역" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "얓두움" @@ -988,7 +1010,7 @@ msgstr "얓두움" msgid "Dark mode" msgstr "ģ–“ė‘ģš“ ėŖØė“œ" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -996,7 +1018,7 @@ msgstr "" msgid "Debug panel" msgstr "디버그 ķŒØė„" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "계정 ģ‚­ģ œ" @@ -1009,8 +1031,8 @@ msgstr "계정 ģ‚­ģ œ" msgid "Delete app password" msgstr "앱 ė¹„ė°€ė²ˆķ˜ø ģ‚­ģ œ" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "리스트 ģ‚­ģ œ" @@ -1022,23 +1044,23 @@ msgstr "ė‚“ 계정 ģ‚­ģ œ" #~ msgid "Delete my account…" #~ msgstr "ė‚“ 계정 ģ‚­ģ œā€¦" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ź²Œģ‹œė¬¼ ģ‚­ģ œ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ģ“ ź²Œģ‹œė¬¼ģ„ ģ‚­ģ œķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "ģ‚­ģ œėØ" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "ģ‚­ģ œėœ ź²Œģ‹œė¬¼." @@ -1050,14 +1072,14 @@ msgid "Description" msgstr "설명" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "ź°œė°œģž ė„źµ¬" +#~ msgid "Developer Tools" +#~ msgstr "ź°œė°œģž ė„źµ¬" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "ķ•˜ź³  ģ‹¶ģ€ ė§ģ“ ģžˆė‚˜ģš”?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1078,9 +1100,13 @@ msgstr "ģ•±ģ“ ė”œź·øģ•„ģ›ƒķ•œ ģ‚¬ģš©ģžģ—ź²Œ ė‚“ ź³„ģ •ģ„ ķ‘œģ‹œķ•˜ģ§€ ģ•Šė„ msgid "Discover new custom feeds" msgstr "새딜욓 ė§žģ¶¤ ķ”¼ė“œ 찾아볓기" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "새 ķ”¼ė“œ ė°œź²¬ķ•˜źø°" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "새 ķ”¼ė“œ ė°œź²¬ķ•˜źø°" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1094,7 +1120,7 @@ msgstr "ķ‘œģ‹œ ģ“ė¦„" msgid "Domain verified!" msgstr "ė„ė©”ģøģ„ ķ™•ģøķ–ˆģŠµė‹ˆė‹¤." -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "ģ“ˆėŒ€ ģ½”ė“œź°€ ģ—†ė‚˜ģš”?" @@ -1111,6 +1137,8 @@ msgctxt "action" msgid "Done" msgstr "ģ™„ė£Œ" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1119,7 +1147,9 @@ msgstr "ģ™„ė£Œ" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "ģ™„ė£Œ" @@ -1131,7 +1161,16 @@ msgstr "ģ™„ė£Œ{extraText}" msgid "Double tap to sign in" msgstr "두 번 ķƒ­ķ•˜ģ—¬ ė”œź·øģøķ•©ė‹ˆė‹¤" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "ė“œė”­ķ•˜ģ—¬ ģ“ėÆøģ§€ 추가" @@ -1177,7 +1216,7 @@ msgstr "ķŽøģ§‘" msgid "Edit image" msgstr "ģ“ėÆøģ§€ ķŽøģ§‘" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "리스트 세부 정볓 ķŽøģ§‘" @@ -1185,8 +1224,8 @@ msgstr "리스트 세부 정볓 ķŽøģ§‘" msgid "Edit Moderation List" msgstr "검토 리스트 ķŽøģ§‘" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "ė‚“ ķ”¼ė“œ ķŽøģ§‘" @@ -1195,15 +1234,15 @@ msgstr "ė‚“ ķ”¼ė“œ ķŽøģ§‘" msgid "Edit my profile" msgstr "ė‚“ ķ”„ė”œķ•„ ķŽøģ§‘" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ķ”„ė”œķ•„ ķŽøģ§‘" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ķ”„ė”œķ•„ ķŽøģ§‘" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "ģ €ģž„ėœ ķ”¼ė“œ ķŽøģ§‘" @@ -1223,17 +1262,15 @@ msgstr "ė‚“ ķ”„ė”œķ•„ 설명 ķŽøģ§‘" msgid "Education" msgstr "교윔" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "ģ“ė©”ģ¼" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "ģ“ė©”ģ¼ ģ£¼ģ†Œ" @@ -1250,7 +1287,7 @@ msgstr "ģ“ė©”ģ¼ 변경됨" msgid "Email verified" msgstr "ģ“ė©”ģ¼ ķ™•ģøėØ" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "ģ“ė©”ģ¼:" @@ -1258,7 +1295,7 @@ msgstr "ģ“ė©”ģ¼:" msgid "Enable {0} only" msgstr "{0}만 ģ‚¬ģš©" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "ģ„±ģø ģ½˜ķ…ģø  ķ™œģ„±ķ™”" @@ -1275,11 +1312,11 @@ msgstr "외부 미디얓 ģ‚¬ģš©" msgid "Enable media players for" msgstr "미디얓 ķ”Œė ˆģ“ģ–“ė„¼ ģ‚¬ģš©ķ•  외부 ģ‚¬ģ“ķŠø" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "ė‚“ź°€ ķŒ”ė”œģš°ķ•˜ėŠ” ģ‚¬ėžŒė“¤ ź°„ģ˜ ė‹µźø€ė§Œ ķ‘œģ‹œķ•©ė‹ˆė‹¤." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "ķ”¼ė“œ ė" @@ -1299,11 +1336,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "ģ‚¬ģš©ķ•  ė„ė©”ģø ģž…ė „" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "ģƒė…„ģ›”ģ¼ģ„ ģž…ė „ķ•˜ģ„øģš”" @@ -1312,7 +1349,7 @@ msgstr "ģƒė…„ģ›”ģ¼ģ„ ģž…ė „ķ•˜ģ„øģš”" msgid "Enter your email" msgstr "ģ“ė©”ģ¼ģ„ ģž…ė „ķ•˜ģ„øģš”" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "ģ“ė©”ģ¼ ģ£¼ģ†Œė„¼ ģž…ė „ķ•˜ģ„øģš”" @@ -1325,13 +1362,17 @@ msgid "Enter your new email address below." msgstr "ģ•„ėž˜ģ— 새 ģ“ė©”ģ¼ ģ£¼ģ†Œė„¼ ģž…ė „ķ•˜ģ„øģš”." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "ģ „ķ™”ė²ˆķ˜øė„¼ ģž…ė „ķ•˜ģ„øģš”" +#~ msgid "Enter your phone number" +#~ msgstr "ģ „ķ™”ė²ˆķ˜øė„¼ ģž…ė „ķ•˜ģ„øģš”" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "ģ‚¬ģš©ģž ģ“ė¦„ ė° ė¹„ė°€ė²ˆķ˜ø ģž…ė „" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "오넘:" @@ -1366,6 +1407,15 @@ msgstr "ėŒ€ģ²“ ķ…ģŠ¤ķŠø ķ™•ģž„" msgid "Expand or collapse the full post you are replying to" msgstr "ė‹µźø€ģ„ 달고 ģžˆėŠ” 전첓 ź²Œģ‹œė¬¼ģ„ ķŽ¼ģ¹˜ź±°ė‚˜ ģ ‘ģŠµė‹ˆė‹¤" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "외부 미디얓" @@ -1375,13 +1425,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "외부 미디얓 설정" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "외부 미디얓 설정" @@ -1394,7 +1444,7 @@ msgstr "앱 ė¹„ė°€ė²ˆķ˜øė„¼ ė§Œė“¤ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤." msgid "Failed to create the list. Check your internet connection and try again." msgstr "리스트넼 ė§Œė“¤ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "ź²Œģ‹œė¬¼ģ„ ģ‚­ģ œķ•˜ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤. ė‹¤ģ‹œ ģ‹œė„ķ•“ ģ£¼ģ„øģš”" @@ -1403,15 +1453,15 @@ msgstr "ź²Œģ‹œė¬¼ģ„ ģ‚­ģ œķ•˜ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤. ė‹¤ģ‹œ ģ‹œė„ķ•“ ģ£¼ģ„øģš”" msgid "Failed to load recommended feeds" msgstr "ģ¶”ģ²œ ķ”¼ė“œė„¼ ė¶ˆėŸ¬ģ˜¤ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "ķ”¼ė“œ" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "{0} ė‹˜ģ˜ ķ”¼ė“œ" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "ķ”¼ė“œ ģ˜¤ķ”„ė¼ģø" @@ -1419,18 +1469,19 @@ msgstr "ķ”¼ė“œ ģ˜¤ķ”„ė¼ģø" msgid "Feed Preferences" msgstr "ķ”¼ė“œ 설정" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "ķ”¼ė“œė°±" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "ķ”¼ė“œ" @@ -1442,7 +1493,7 @@ msgstr "ķ”¼ė“œėŠ” ģ½˜ķ…ģø ė„¼ ķė ˆģ“ģ…˜ķ•˜źø° ģœ„ķ•“ ģ‚¬ģš©ģžģ— ģ˜ķ•“ 만 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ķ”¼ė“œėŠ” ģ‚¬ģš©ģžź°€ ģ•½ź°„ģ˜ 코딩 전문 ģ§€ģ‹ģœ¼ė”œ 구축할 수 ģžˆėŠ” ė§žģ¶¤ ģ•Œź³ ė¦¬ģ¦˜ģž…ė‹ˆė‹¤. <0/>ģ—ģ„œ ģžģ„øķ•œ ė‚“ģš©ģ„ ķ™•ģøķ•˜ģ„øģš”." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "ķ”¼ė“œė„ ķ™”ģ œź°€ 될 수 ģžˆģŠµė‹ˆė‹¤!" @@ -1468,9 +1519,13 @@ msgstr "ģ˜¤ė„øģŖ½ģ˜ ź²€ģƒ‰ ė„źµ¬ė”œ ģ‚¬ģš©ģž 찾기" msgid "Finding similar accounts..." msgstr "ģœ ģ‚¬ķ•œ ź³„ģ •ģ„ ģ°¾ėŠ” 중…" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ķ™ˆ 화멓에 ķ‘œģ‹œė˜ėŠ” ģ½˜ķ…ģø ė„¼ 미세 ģ”°ģ •ķ•©ė‹ˆė‹¤." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ķ™ˆ 화멓에 ķ‘œģ‹œė˜ėŠ” ģ½˜ķ…ģø ė„¼ 미세 ģ”°ģ •ķ•©ė‹ˆė‹¤." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1493,21 +1548,24 @@ msgstr "ź°€ė”œė”œ 뒤집기" msgid "Flip vertically" msgstr "ģ„øė”œė”œ 뒤집기" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "ķŒ”ė”œģš°" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "ķŒ”ė”œģš°" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "ķŒ”ė”œģš°" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "{0} ė‹˜ģ„ ķŒ”ė”œģš°" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "모두 ķŒ”ė”œģš°" @@ -1527,7 +1585,7 @@ msgstr "{0} ė‹˜ģ“ ķŒ”ė”œģš°ķ•Ø" msgid "Followed users" msgstr "ķŒ”ė”œģš°ķ•œ ģ‚¬ģš©ģž" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "ķŒ”ė”œģš°ķ•œ ģ‚¬ģš©ģžė§Œ" @@ -1539,16 +1597,24 @@ msgstr "ė‹˜ģ“ ė‚˜ė„¼ ķŒ”ė”œģš°ķ–ˆģŠµė‹ˆė‹¤" msgid "Followers" msgstr "ķŒ”ė”œģ›Œ" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ķŒ”ė”œģš° 중" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "{0} ķŒ”ė”œģš° 중" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "ė‚˜ė„¼ ķŒ”ė”œģš°ķ•Ø" @@ -1568,11 +1634,11 @@ msgstr "ė³“ģ•ˆģƒģ˜ ģ“ģœ ė”œ ģ“ė©”ģ¼ ģ£¼ģ†Œė”œ ķ™•ģø ģ½”ė“œė„¼ 볓낓야 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "ė³“ģ•ˆģƒģ˜ ģ“ģœ ė”œ ģ“ ė¹„ė°€ė²ˆķ˜øėŠ” ė‹¤ģ‹œ ė³¼ 수 ģ—†ģŠµė‹ˆė‹¤. ģ“ ė¹„ė°€ė²ˆķ˜øė„¼ ė¶„ģ‹¤ķ•œ 경우 새 ė¹„ė°€ė²ˆķ˜øė„¼ ģƒģ„±ķ•“ģ•¼ ķ•©ė‹ˆė‹¤." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "분실" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "ė¹„ė°€ė²ˆķ˜ø 분실" @@ -1581,7 +1647,7 @@ msgstr "ė¹„ė°€ė²ˆķ˜ø 분실" msgid "Forgot Password" msgstr "ė¹„ė°€ė²ˆķ˜ø 분실" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>ģ—ģ„œ" @@ -1602,8 +1668,8 @@ msgstr "ģ‹œģž‘ķ•˜źø°" msgid "Go back" msgstr "ė’¤ė”œ" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1619,9 +1685,9 @@ msgstr "ģ“ģ „ ė‹Øź³„ė”œ ėŒģ•„ź°€źø°" msgid "Go to @{queryMaybeHandle}" msgstr "@{queryMaybeHandle}(으)딜 ģ“ė™" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1631,12 +1697,12 @@ msgstr "ė‹¤ģŒ" msgid "Handle" msgstr "핸들" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "ė¬øģ œź°€ ģžˆė‚˜ģš”?" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "ė„ģ›€ė§" @@ -1644,11 +1710,11 @@ msgstr "ė„ģ›€ė§" msgid "Here are some accounts for you to follow" msgstr "ķŒ”ė”œģš°ķ•  ė§Œķ•œ 계정" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "ė‹¤ģŒģ€ ģøźø° ģžˆėŠ” ķ™”ģ œ ķ”¼ė“œģž…ė‹ˆė‹¤. ģ›ķ•˜ėŠ” 만큼 ķ”¼ė“œė„¼ ķŒ”ė”œģš°ķ•  수 ģžˆģŠµė‹ˆė‹¤." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "ė‹¤ģŒģ€ ģ‚¬ģš©ģžģ˜ ꓀심사넼 기반으딜 ķ•œ ėŖ‡ 가지 ģ£¼ģ œė³„ ķ”¼ė“œģž…ė‹ˆė‹¤: {interestsText}. ģ›ķ•˜ėŠ” 만큼 ė§Žģ€ ķ”¼ė“œė„¼ ķŒ”ė”œģš°ķ•  수 ģžˆģŠµė‹ˆė‹¤." @@ -1657,19 +1723,19 @@ msgid "Here is your app password." msgstr "앱 ė¹„ė°€ė²ˆķ˜øģž…ė‹ˆė‹¤." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "숨기기" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "ź²Œģ‹œė¬¼ 숨기기" @@ -1678,7 +1744,7 @@ msgstr "ź²Œģ‹œė¬¼ 숨기기" msgid "Hide the content" msgstr "ģ½˜ķ…ģø  숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ģ“ ź²Œģ‹œė¬¼ģ„ ģˆØźø°ģ‹œź² ģŠµė‹ˆź¹Œ?" @@ -1686,7 +1752,7 @@ msgstr "ģ“ ź²Œģ‹œė¬¼ģ„ ģˆØźø°ģ‹œź² ģŠµė‹ˆź¹Œ?" msgid "Hide user list" msgstr "ģ‚¬ģš©ģž 리스트 숨기기" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "ķ”¼ė“œģ—ģ„œ {0} ė‹˜ģ˜ ź²Œģ‹œė¬¼ģ„ ģˆØź¹ė‹ˆė‹¤" @@ -1710,22 +1776,23 @@ msgstr "ķ”¼ė“œ ģ„œė²„ģ—ģ„œ ģž˜ėŖ»ėœ ģ‘ė‹µģ„ ė³“ėƒˆģŠµė‹ˆė‹¤. ķ”¼ė“œ ģ†Œģœ  msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ģ“ ķ”¼ė“œė„¼ ģ°¾ėŠ” ė° ė¬øģ œź°€ ģžˆģŠµė‹ˆė‹¤. ķ”¼ė“œź°€ ģ‚­ģ œė˜ģ—ˆģ„ 수 ģžˆģŠµė‹ˆė‹¤." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "ķ™ˆ" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "ķ™ˆ ķ”¼ė“œ 설정" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "ķ™ˆ ķ”¼ė“œ 설정" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "ķ˜øģŠ¤ķŒ… ģ œź³µģž" @@ -1765,8 +1832,8 @@ msgstr "ģ“ėÆøģ§€" msgid "Image alt text" msgstr "ģ“ėÆøģ§€ ėŒ€ģ²“ ķ…ģŠ¤ķŠø" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "ģ“ėÆøģ§€ ģ˜µģ…˜" @@ -1778,11 +1845,11 @@ msgstr "ė¹„ė°€ė²ˆķ˜ø ģž¬ģ„¤ģ •ģ„ ģœ„ķ•“ ģ“ė©”ģ¼ė”œ ģ „ģ†”ėœ ģ½”ė“œė„¼ ģž…ė „ msgid "Input confirmation code for account deletion" msgstr "계정 ģ‚­ģ œė„¼ ģœ„ķ•œ ķ™•ģø ģ½”ė“œė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "Bluesky 계정에 ģ‚¬ģš©ķ•  ģ“ė©”ģ¼ģ„ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "ģ§„ķ–‰ķ•˜źø° ģœ„ķ•“ ģ“ˆėŒ€ ģ½”ė“œė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" @@ -1799,56 +1866,55 @@ msgid "Input password for account deletion" msgstr "ź³„ģ •ģ„ ģ‚­ģ œķ•˜źø° ģœ„ķ•“ ė¹„ė°€ė²ˆķ˜øė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "SMS ģøģ¦ģ— ģ‚¬ģš©ķ•  ģ „ķ™”ė²ˆķ˜øė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "SMS ģøģ¦ģ— ģ‚¬ģš©ķ•  ģ „ķ™”ė²ˆķ˜øė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "{identifier}에 ģ—°ź²°ėœ ė¹„ė°€ė²ˆķ˜øė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "ź°€ģž… ģ‹œ ģ‚¬ģš©ķ•œ ģ‚¬ģš©ģž ģ“ė¦„ ė˜ėŠ” ģ“ė©”ģ¼ ģ£¼ģ†Œė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "ė¬øģž ė©”ģ‹œģ§€ė”œ ģ „ģ†”ėœ ģøģ¦ ģ½”ė“œė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "ė¬øģž ė©”ģ‹œģ§€ė”œ ģ „ģ†”ėœ ģøģ¦ ģ½”ė“œė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "Bluesky ėŒ€źø°ģž 명단에 ė“±ė”ķ•˜ė ¤ė©“ ģ“ė©”ģ¼ģ„ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "ė¹„ė°€ė²ˆķ˜øė„¼ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "ģ‚¬ģš©ģž ķ•øė“¤ģ„ ģž…ė „ķ•©ė‹ˆė‹¤" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "ģœ ķšØķ•˜ģ§€ ģ•Šź±°ė‚˜ ģ§€ģ›ė˜ģ§€ ģ•ŠėŠ” ź²Œģ‹œė¬¼ źø°ė”" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "ģž˜ėŖ»ėœ ģ‚¬ģš©ģž ģ“ė¦„ ė˜ėŠ” ė¹„ė°€ė²ˆķ˜ø" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "ģ“ˆėŒ€" +#~ msgid "Invite" +#~ msgstr "ģ“ˆėŒ€" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "친구 ģ“ˆėŒ€ķ•˜źø°" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "ģ“ˆėŒ€ ģ½”ė“œ" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ģ“ˆėŒ€ ģ½”ė“œź°€ ģ˜¬ė°”ė„“ģ§€ ģ•ŠģŠµė‹ˆė‹¤. ģ½”ė“œė„¼ ģ˜¬ė°”ė„“ź²Œ ģž…ė „ķ–ˆėŠ”ģ§€ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." @@ -1857,8 +1923,8 @@ msgid "Invite codes: {0} available" msgstr "ģ“ˆėŒ€ ģ½”ė“œ: {0}개 ģ‚¬ģš© ź°€ėŠ„" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "ģ“ˆėŒ€ ģ½”ė“œ: {invitesAvailable}개 ģ‚¬ģš© ź°€ėŠ„" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "ģ“ˆėŒ€ ģ½”ė“œ: {invitesAvailable}개 ģ‚¬ģš© ź°€ėŠ„" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1869,6 +1935,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "ė‚“ź°€ ķŒ”ė”œģš°ķ•˜ėŠ” ģ‚¬ėžŒė“¤ģ˜ ź²Œģ‹œė¬¼ģ“ ģ˜¬ė¼ģ˜¤ėŠ” ėŒ€ė”œ ķ‘œģ‹œė©ė‹ˆė‹¤." #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "ģ±„ģš©" @@ -1876,8 +1943,8 @@ msgstr "ģ±„ģš©" msgid "Join the waitlist" msgstr "ėŒ€źø°ģž 명단 ė“±ė”" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "ėŒ€źø°ģž 명단에 ė“±ė”ķ•˜ģ„øģš”." @@ -1893,7 +1960,7 @@ msgstr "ģ €ė„ė¦¬ģ¦˜" msgid "Language selection" msgstr "ģ–øģ–“ ģ„ ķƒ" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "ģ–øģ–“ 설정" @@ -1902,7 +1969,7 @@ msgstr "ģ–øģ–“ 설정" msgid "Language Settings" msgstr "ģ–øģ–“ 설정" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "ģ–øģ–“" @@ -1940,11 +2007,11 @@ msgstr "ėŖØė“  언얓넼 볓려멓 모두 ģ„ ķƒķ•˜ģ§€ ģ•Šģ€ 상태딜 두세 msgid "Leaving Bluesky" msgstr "Bluesky ė– ė‚˜źø°" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "ėŖ… ė‚Øģ•˜ģŠµė‹ˆė‹¤." -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "ė ˆź±°ģ‹œ ģŠ¤ķ† ė¦¬ģ§€ź°€ ģ§€ģ›Œģ”Œģœ¼ė©° ģ§€źøˆ ģ•±ģ„ ė‹¤ģ‹œ ģ‹œģž‘ķ•“ģ•¼ ķ•©ė‹ˆė‹¤." @@ -1957,16 +2024,17 @@ msgstr "ė¹„ė°€ė²ˆķ˜øė„¼ ģž¬ģ„¤ģ •ķ•“ ė“…ģ‹œė‹¤!" msgid "Let's go!" msgstr "출발!" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "ė¼ģ“ėøŒėŸ¬ė¦¬" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "ė°ģŒ" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "ģ¢‹ģ•„ģš”" @@ -1974,7 +2042,7 @@ msgstr "ģ¢‹ģ•„ģš”" msgid "Like this feed" msgstr "ģ“ ķ”¼ė“œģ— ģ¢‹ģ•„ģš” ķ‘œģ‹œ" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "ģ¢‹ģ•„ģš” ķ‘œģ‹œķ•œ ģ‚¬ģš©ģž" @@ -1983,7 +2051,7 @@ msgstr "ģ¢‹ģ•„ģš” ķ‘œģ‹œķ•œ ģ‚¬ģš©ģž" msgid "Liked By" msgstr "ģ¢‹ģ•„ģš” ķ‘œģ‹œķ•œ ģ‚¬ģš©ģž" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "{0}ėŖ…ģ˜ ģ‚¬ģš©ģžź°€ 좋아함" @@ -1999,15 +2067,15 @@ msgstr "ė‹˜ģ“ ė‚“ ė§žģ¶¤ ķ”¼ė“œė„¼ ģ¢‹ģ•„ķ•©ė‹ˆė‹¤" msgid "liked your post" msgstr "ė‹˜ģ“ ė‚“ ź²Œģ‹œė¬¼ģ„ ģ¢‹ģ•„ķ•©ė‹ˆė‹¤" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "ģ¢‹ģ•„ģš”" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "ģ“ ź²Œģ‹œė¬¼ģ„ ģ¢‹ģ•„ģš” ķ‘œģ‹œķ•©ė‹ˆė‹¤" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "리스트" @@ -2015,19 +2083,19 @@ msgstr "리스트" msgid "List Avatar" msgstr "리스트 ģ•„ė°”ķƒ€" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "리스트 차단됨" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "{0} ė‹˜ģ˜ 리스트" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "리스트 ģ‚­ģ œėØ" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "리스트 뮤트됨" @@ -2035,35 +2103,35 @@ msgstr "리스트 뮤트됨" msgid "List Name" msgstr "리스트 ģ“ė¦„" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "리스트 차단 ķ•“ģ œėØ" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "리스트 ģ–øė®¤ķŠøėØ" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "리스트" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "ė” ė§Žģ€ ź²Œģ‹œė¬¼ 불러오기" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "새 ģ•Œė¦¼ 불러오기" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "새 ź²Œģ‹œė¬¼ 불러오기" @@ -2072,17 +2140,17 @@ msgid "Loading..." msgstr "ė¶ˆėŸ¬ģ˜¤ėŠ” 중…" #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "딜컬 개발 ģ„œė²„" +#~ msgid "Local dev server" +#~ msgstr "딜컬 개발 ģ„œė²„" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "딜그" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "ė”œź·øģ•„ģ›ƒ" @@ -2098,7 +2166,15 @@ msgstr "ėŖ©ė”ģ— ģ—†ėŠ” ź³„ģ •ģœ¼ė”œ ė”œź·øģø" msgid "Make sure this is where you intend to go!" msgstr "ģ“ź³³ģ“ ė‹¹ģ‹ ģ“ ź°€ź³ ģž ķ•˜ėŠ” ź³³ģøģ§€ ķ™•ģøķ•˜ģ„øģš”!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "미디얓" @@ -2121,14 +2197,14 @@ msgstr "ģ„œė²„ģ—ģ„œ 볓낸 ė©”ģ‹œģ§€: {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "검토" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "{0} ė‹˜ģ˜ 검토 리스트" @@ -2137,7 +2213,7 @@ msgstr "{0} ė‹˜ģ˜ 검토 리스트" msgid "Moderation list by <0/>" msgstr "<0/> ė‹˜ģ˜ 검토 리스트" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2160,7 +2236,7 @@ msgstr "검토 리스트" msgid "Moderation Lists" msgstr "검토 리스트" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "검토 설정" @@ -2168,17 +2244,17 @@ msgstr "검토 설정" msgid "Moderator has chosen to set a general warning on the content." msgstr "ģ¤‘ģž¬ģžź°€ ģ½˜ķ…ģø ģ— ģ¼ė°˜ 경고넼 ģ„¤ģ •ķ–ˆģŠµė‹ˆė‹¤." -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "ķ”¼ė“œ ė” 볓기" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ģ˜µģ…˜ ė” 볓기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ź²Œģ‹œė¬¼ ģ˜µģ…˜ ė” 볓기" @@ -2186,31 +2262,35 @@ msgstr "ź²Œģ‹œė¬¼ ģ˜µģ…˜ ė” 볓기" msgid "Most-liked replies first" msgstr "ģ¢‹ģ•„ģš” ė§Žģ€ 순" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "계정 뮤트" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "계정 뮤트" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "리스트 뮤트" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ģ“ ź³„ģ •ė“¤ģ„ ė®¤ķŠøķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "ģ“ 리스트 뮤트" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ģŠ¤ė ˆė“œ 뮤트" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "뮤트됨" @@ -2227,7 +2307,7 @@ msgstr "ė®¤ķŠøķ•œ 계정" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ź³„ģ •ģ„ ė®¤ķŠøķ•˜ė©“ ķ”¼ė“œģ™€ ģ•Œė¦¼ģ—ģ„œ 핓당 ź³„ģ •ģ˜ ź²Œģ‹œė¬¼ģ“ ģ‚¬ė¼ģ§‘ė‹ˆė‹¤. 뮤트 ėŖ©ė”ģ€ ģ™„ģ „ķžˆ ė¹„ź³µź°œė”œ ģœ ģ§€ė©ė‹ˆė‹¤." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "뮤트 ėŖ©ė”ģ€ ė¹„ź³µź°œģž…ė‹ˆė‹¤. ė®¤ķŠøķ•œ ź³„ģ •ģ€ ė‚˜ģ™€ ģƒķ˜øģž‘ģš©ķ•  수 ģžˆģ§€ė§Œ 핓당 ź³„ģ •ģ˜ ź²Œģ‹œė¬¼ģ„ ė³“ź±°ė‚˜ 핓당 ź³„ģ •ģœ¼ė”œė¶€ķ„° ģ•Œė¦¼ģ„ ė°›ģ„ 수 ģ—†ģŠµė‹ˆė‹¤." @@ -2235,7 +2315,7 @@ msgstr "뮤트 ėŖ©ė”ģ€ ė¹„ź³µź°œģž…ė‹ˆė‹¤. ė®¤ķŠøķ•œ ź³„ģ •ģ€ ė‚˜ģ™€ 상호 msgid "My Birthday" msgstr "ė‚“ ģƒė…„ģ›”ģ¼" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "ė‚“ ķ”¼ė“œ" @@ -2243,10 +2323,14 @@ msgstr "ė‚“ ķ”¼ė“œ" msgid "My Profile" msgstr "ė‚“ ķ”„ė”œķ•„" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "ė‚“ ģ €ģž„ėœ ķ”¼ė“œ" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2260,15 +2344,15 @@ msgstr "ģ“ė¦„ģ„ ģž…ė „ķ•˜ģ„øģš”" msgid "Nature" msgstr "ģžģ—°" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "ė‹¤ģŒ ķ™”ė©“ģœ¼ė”œ ģ“ė™ķ•©ė‹ˆė‹¤" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "ė‚“ ķ”„ė”œķ•„ė”œ ģ“ė™ķ•©ė‹ˆė‹¤" @@ -2307,16 +2391,17 @@ msgstr "새 ė¹„ė°€ė²ˆķ˜ø" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "새 ź²Œģ‹œė¬¼" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "새 ź²Œģ‹œė¬¼" @@ -2338,10 +2423,10 @@ msgstr "새딜욓 순" msgid "News" msgstr "ė‰“ģŠ¤" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2359,10 +2444,10 @@ msgstr "ė‹¤ģŒ" msgid "Next image" msgstr "ė‹¤ģŒ ģ“ėÆøģ§€" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2373,7 +2458,7 @@ msgstr "ģ•„ė‹ˆģš”" msgid "No description" msgstr "설명 ģ—†ģŒ" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "ė” ģ“ģƒ {0} ė‹˜ģ„ ķŒ”ė”œģš°ķ•˜ģ§€ ģ•ŠģŒ" @@ -2386,7 +2471,7 @@ msgstr "아직 ģ•Œė¦¼ģ“ ģ—†ģŠµė‹ˆė‹¤." msgid "No result" msgstr "ź²°ź³¼ ģ—†ģŒ" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "\"{query}\"에 ėŒ€ķ•œ 결과넼 ģ°¾ģ„ 수 ģ—†ģŠµė‹ˆė‹¤" @@ -2409,6 +2494,7 @@ msgid "Not Applicable." msgstr "핓당 ģ—†ģŒ." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "ģ°¾ģ„ 수 ģ—†ģŒ" @@ -2421,13 +2507,13 @@ msgstr "ė‚˜ģ¤‘ģ— ķ•˜źø°" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ģ°øź³ : BlueskyėŠ” ź°œė°©ķ˜• 공개 ė„¤ķŠøģ›Œķ¬ģž…ė‹ˆė‹¤. ģ“ ģ„¤ģ •ģ€ Bluesky 앱과 ģ›¹ģ‚¬ģ“ķŠøģ—ģ„œė§Œ ė‚“ ģ½˜ķ…ģø ź°€ ķ‘œģ‹œė˜ėŠ” ź²ƒģ„ ģ œķ•œķ•˜ė©°, 다넸 ģ•±ģ—ģ„œėŠ” ģ“ ģ„¤ģ •ģ„ ģ¤€ģˆ˜ķ•˜ģ§€ ģ•Šģ„ 수 ģžˆģŠµė‹ˆė‹¤. 다넸 앱과 ģ›¹ģ‚¬ģ“ķŠøģ—ģ„œėŠ” ė”œź·øģ•„ģ›ƒķ•œ ģ‚¬ģš©ģžģ—ź²Œ ė‚“ ģ½˜ķ…ģø ź°€ ź³„ģ† ķ‘œģ‹œė  수 ģžˆģŠµė‹ˆė‹¤." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "ģ•Œė¦¼" @@ -2451,7 +2537,7 @@ msgstr "ķ™•ģø" msgid "Oldest replies first" msgstr "ģ˜¤ėž˜ėœ 순" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "ģ˜Øė³“ė”© ģž¬ģ„¤ģ •" @@ -2463,9 +2549,8 @@ msgstr "ķ•˜ė‚˜ ģ“ģƒģ˜ ģ“ėÆøģ§€ģ— ėŒ€ģ²“ ķ…ģŠ¤ķŠøź°€ ėˆ„ė½ė˜ģ—ˆģŠµė‹ˆė‹¤. msgid "Only {0} can reply." msgstr "{0}만 ė‹µźø€ģ„ 달 수 ģžˆģŠµė‹ˆė‹¤." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "ģ“ėŸ°!" @@ -2478,15 +2563,15 @@ msgstr "ź³µź°œģ„±" msgid "Open emoji picker" msgstr "ģ“ėŖØķ‹°ģ½˜ ģ„ ķƒźø° ģ—“źø°" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "링크넼 ģøģ•± ėøŒė¼ģš°ģ €ė”œ ģ—½ė‹ˆė‹¤" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ė‚“ė¹„ź²Œģ“ģ…˜ ģ—“źø°" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "ģŠ¤ķ† ė¦¬ė¶ ķŽ˜ģ“ģ§€ ģ—“źø°" @@ -2510,7 +2595,7 @@ msgstr "źø°źø°ģ—ģ„œ ģ¹“ė©”ė¼ė„¼ ģ—½ė‹ˆė‹¤" msgid "Opens composer" msgstr "답글 ģž‘ģ„± ģƒģžė„¼ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "구성 ź°€ėŠ„ķ•œ ģ–øģ–“ ģ„¤ģ •ģ„ ģ—½ė‹ˆė‹¤" @@ -2518,33 +2603,31 @@ msgstr "구성 ź°€ėŠ„ķ•œ ģ–øģ–“ ģ„¤ģ •ģ„ ģ—½ė‹ˆė‹¤" msgid "Opens device photo gallery" msgstr "źø°źø°ģ˜ 사진 갤러리넼 ģ—½ė‹ˆė‹¤" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "ķ”„ė”œķ•„ ķ‘œģ‹œ ģ“ė¦„, ģ•„ė°”ķƒ€, ė°°ź²½ ģ“ėÆøģ§€ ė° 설명 ķŽøģ§‘źø°ė„¼ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "외부 ģž„ė² ė“œ ģ„¤ģ •ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "ķŒ”ė”œģ›Œ ėŖ©ė”ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "ķŒ”ė”œģš° 중 ėŖ©ė”ģ„ ģ—½ė‹ˆė‹¤" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "ģ“ˆėŒ€ ģ½”ė“œ ėŖ©ė”ģ„ ģ—½ė‹ˆė‹¤" +#~ msgid "Opens invite code list" +#~ msgstr "ģ“ˆėŒ€ ģ½”ė“œ ėŖ©ė”ģ„ ģ—½ė‹ˆė‹¤" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "ģ“ˆėŒ€ ģ½”ė“œ ėŖ©ė”ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "계정 ģ‚­ģ œ ķ™•ģøģ„ ģœ„ķ•œ ėŒ€ķ™” ģƒģžė„¼ ģ—½ė‹ˆė‹¤. ģ“ė©”ģ¼ ģ½”ė“œź°€ ķ•„ģš”ķ•©ė‹ˆė‹¤" @@ -2552,39 +2635,39 @@ msgstr "계정 ģ‚­ģ œ ķ™•ģøģ„ ģœ„ķ•œ ėŒ€ķ™” ģƒģžė„¼ ģ—½ė‹ˆė‹¤. ģ“ė©”ģ¼ ģ½” msgid "Opens modal for using custom domain" msgstr "ģ‚¬ģš©ģž 지정 ė„ė©”ģøģ„ ģ‚¬ģš©ķ•˜źø° ģœ„ķ•œ ėŒ€ķ™” ģƒģžė„¼ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "검토 ģ„¤ģ •ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "ė¹„ė°€ė²ˆķ˜ø ģž¬ģ„¤ģ • ģ–‘ģ‹ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "ģ €ģž„ėœ ķ”¼ė“œė„¼ ķŽøģ§‘ķ•  수 ģžˆėŠ” ķ™”ė©“ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "ėŖØė“  ģ €ģž„ėœ ķ”¼ė“œ ķ™”ė©“ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "ė¹„ė°€ė²ˆķ˜ø 설정 ķŽ˜ģ“ģ§€ė„¼ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "ķ™ˆ ķ”¼ė“œ ģ„¤ģ •ģ„ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "ģŠ¤ķ† ė¦¬ė¶ ķŽ˜ģ“ģ§€ė„¼ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "ģ‹œģŠ¤ķ…œ 딜그 ķŽ˜ģ“ģ§€ė„¼ ģ—½ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "ģŠ¤ė ˆė“œ ģ„¤ģ •ģ„ ģ—½ė‹ˆė‹¤" @@ -2601,8 +2684,8 @@ msgid "Other account" msgstr "다넸 계정" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "다넸 ģ„œė¹„ģŠ¤" +#~ msgid "Other service" +#~ msgstr "다넸 ģ„œė¹„ģŠ¤" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2616,9 +2699,9 @@ msgstr "ķŽ˜ģ“ģ§€ė„¼ ģ°¾ģ„ 수 ģ—†ģŒ" msgid "Page Not Found" msgstr "ķŽ˜ģ“ģ§€ė„¼ ģ°¾ģ„ 수 ģ—†ģŒ" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2632,11 +2715,11 @@ msgstr "ė¹„ė°€ė²ˆķ˜ø 변경됨" msgid "Password updated!" msgstr "ė¹„ė°€ė²ˆķ˜ø 변경됨" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "@{0} ė‹˜ģ“ ķŒ”ė”œģš°ķ•œ ģ‚¬ėžŒė“¤" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "@{0} ė‹˜ģ„ ķŒ”ė”œģš°ķ•˜ėŠ” ģ‚¬ėžŒė“¤" @@ -2653,15 +2736,15 @@ msgid "Pets" msgstr "ė°˜ė ¤ė™ė¬¼" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "ģ „ķ™”ė²ˆķ˜ø" +#~ msgid "Phone number" +#~ msgstr "ģ „ķ™”ė²ˆķ˜ø" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "ģ„±ģøģš© 사진." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "ķ™ˆģ— ź³ ģ •" @@ -2682,14 +2765,18 @@ msgstr "ė™ģ˜ģƒ ģž¬ģƒ" msgid "Plays the GIF" msgstr "GIF넼 ģž¬ģƒķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "ķ•øė“¤ģ„ ģž…ė „ķ•˜ģ„øģš”." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "ė¹„ė°€ė²ˆķ˜øė„¼ ģž…ė „ķ•˜ģ„øģš”." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ģ“ė©”ģ¼ģ„ ė³€ź²½ķ•˜źø° 전에 ģ“ė©”ģ¼ģ„ ķ™•ģøķ•“ ģ£¼ģ„øģš”. ģ“ėŠ” ģ“ė©”ģ¼ 변경 ė„źµ¬ź°€ ģ¶”ź°€ė˜ėŠ” ė™ģ•ˆ ģ¼ģ‹œģ ģœ¼ė”œ ģš”źµ¬ė˜ėŠ” ģ‚¬ķ•­ģ“ė©° ź³§ 제거될 ģ˜ˆģ •ģž…ė‹ˆė‹¤." @@ -2699,22 +2786,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "앱 ė¹„ė°€ė²ˆķ˜øģ˜ ģ“ė¦„ģ„ ģž…ė „ķ•˜ģ„øģš”. ėŖØė“  공백 ė¬øģžėŠ” ķ—ˆģš©ė˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤." #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "SMS ė¬øģž ė©”ģ‹œģ§€ė„¼ ė°›ģ„ 수 ģžˆėŠ” ķœ“ėŒ€ķ° 번호넼 ģž…ė „ķ•˜ģ„øģš”." +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "SMS ė¬øģž ė©”ģ‹œģ§€ė„¼ ė°›ģ„ 수 ģžˆėŠ” ķœ“ėŒ€ķ° 번호넼 ģž…ė „ķ•˜ģ„øģš”." #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "ģ“ 앱 ė¹„ė°€ė²ˆķ˜øģ— ėŒ€ķ•“ ź³ ģœ ķ•œ ģ“ė¦„ģ„ ģž…ė „ķ•˜ź±°ė‚˜ ė¬“ģž‘ģœ„ė”œ ģƒģ„±ėœ ģ“ė¦„ģ„ ģ‚¬ģš©ķ•©ė‹ˆė‹¤." #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "SMS딜 ė°›ģ€ ģ½”ė“œė„¼ ģž…ė „ķ•˜ģ„øģš”." +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "SMS딜 ė°›ģ€ ģ½”ė“œė„¼ ģž…ė „ķ•˜ģ„øģš”." #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "{phoneNumberFormatted}(으)딜 볓낓진 ģøģ¦ ģ½”ė“œė„¼ ģž…ė „ķ•˜ģ„øģš”." +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "{phoneNumberFormatted}(으)딜 볓낓진 ģøģ¦ ģ½”ė“œė„¼ ģž…ė „ķ•˜ģ„øģš”." -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "ģ“ė©”ģ¼ģ„ ģž…ė „ķ•˜ģ„øģš”." @@ -2749,26 +2836,26 @@ msgctxt "action" msgid "Post" msgstr "ź²Œģ‹œķ•˜źø°" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "ź²Œģ‹œė¬¼" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "{0} ė‹˜ģ˜ ź²Œģ‹œė¬¼" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "@{0} ė‹˜ģ˜ ź²Œģ‹œė¬¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "ź²Œģ‹œė¬¼ ģ‚­ģ œėØ" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "ź²Œģ‹œė¬¼ ģˆØź¹€" @@ -2780,11 +2867,11 @@ msgstr "ź²Œģ‹œė¬¼ ģ–øģ–“" msgid "Post Languages" msgstr "ź²Œģ‹œė¬¼ ģ–øģ–“" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "ź²Œģ‹œė¬¼ģ„ ģ°¾ģ„ 수 ģ—†ģŒ" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "ź²Œģ‹œė¬¼" @@ -2808,27 +2895,27 @@ msgstr "주 ģ–øģ–“" msgid "Prioritize Your Follows" msgstr "ė‚“ ķŒ”ė”œģš° 먼저 ķ‘œģ‹œ" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "ź°œģøģ •ė³“" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "ź°œģøģ •ė³“ 처리방침" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "처리 중…" #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "ķ”„ė”œķ•„" @@ -2836,7 +2923,7 @@ msgstr "ķ”„ė”œķ•„" msgid "Profile updated" msgstr "ķ”„ė”œķ•„ ģ—…ė°ģ“ķŠøėØ" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "ģ“ė©”ģ¼ģ„ ģøģ¦ķ•˜ģ—¬ ź³„ģ •ģ„ ė³“ķ˜øķ•˜ģ„øģš”." @@ -2893,12 +2980,12 @@ msgstr "ģ¶”ģ²œ ģ‚¬ģš©ģž" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "제거" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "{0}ģ„(넼) ė‚“ ķ”¼ė“œģ—ģ„œ ģ œź±°ķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" @@ -2911,11 +2998,11 @@ msgstr "계정 제거" msgid "Remove feed" msgstr "ķ”¼ė“œ 제거" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ė‚“ ķ”¼ė“œģ—ģ„œ 제거" @@ -2931,7 +3018,7 @@ msgstr "ģ“ėÆøģ§€ 미리볓기 제거" msgid "Remove repost" msgstr "ģž¬ź²Œģ‹œė„¼ ģ·Øģ†Œķ•©ė‹ˆė‹¤" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ģ“ ķ”¼ė“œė„¼ ė‚“ ķ”¼ė“œģ—ģ„œ ģ œź±°ķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" @@ -2944,8 +3031,8 @@ msgstr "ģ“ ķ”¼ė“œė„¼ ģ €ģž„ėœ ķ”¼ė“œģ—ģ„œ ģ œź±°ķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ?" msgid "Removed from list" msgstr "ė¦¬ģŠ¤ķŠøģ—ģ„œ 제거됨" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "ė‚“ ķ”¼ė“œģ—ģ„œ 제거됨" @@ -2953,7 +3040,7 @@ msgstr "ė‚“ ķ”¼ė“œģ—ģ„œ 제거됨" msgid "Removes default thumbnail from {0}" msgstr "{0}ģ—ģ„œ źø°ė³ø 미리볓기 ģ“ėÆøģ§€ė„¼ ģ œź±°ķ•©ė‹ˆė‹¤" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "답글" @@ -2966,12 +3053,12 @@ msgctxt "action" msgid "Reply" msgstr "답글" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "답글 ķ•„ķ„°" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "<0/> ė‹˜ģ—ź²Œ ė³“ė‚“ėŠ” 답글" @@ -2980,20 +3067,20 @@ msgstr "<0/> ė‹˜ģ—ź²Œ ė³“ė‚“ėŠ” 답글" msgid "Report {collectionName}" msgstr "{collectionName} ģ‹ ź³ " -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "계정 ģ‹ ź³ " -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ķ”¼ė“œ ģ‹ ź³ " -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "리스트 ģ‹ ź³ " #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ź²Œģ‹œė¬¼ ģ‹ ź³ " @@ -3018,11 +3105,11 @@ msgstr "ģž¬ź²Œģ‹œ ė˜ėŠ” ź²Œģ‹œė¬¼ ģøģš©" msgid "Reposted By" msgstr "ģž¬ź²Œģ‹œķ•œ ģ‚¬ģš©ģž" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "{0} ė‹˜ģ“ ģž¬ź²Œģ‹œķ•Ø" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "<0/> ė‹˜ģ“ ģž¬ź²Œģ‹œķ•Ø" @@ -3030,7 +3117,7 @@ msgstr "<0/> ė‹˜ģ“ ģž¬ź²Œģ‹œķ•Ø" msgid "reposted your post" msgstr "ė‹˜ģ“ ė‚“ ź²Œģ‹œė¬¼ģ„ ģž¬ź²Œģ‹œķ–ˆģŠµė‹ˆė‹¤" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "ģ“ ź²Œģ‹œė¬¼ģ˜ ģž¬ź²Œģ‹œ" @@ -3040,19 +3127,19 @@ msgid "Request Change" msgstr "변경 ģš”ģ²­" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "ģ½”ė“œ ģš”ģ²­" +#~ msgid "Request code" +#~ msgstr "ģ½”ė“œ ģš”ģ²­" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "ź²Œģ‹œķ•˜źø° ģ „ ėŒ€ģ²“ ķ…ģŠ¤ķŠø ķ•„ģˆ˜" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "ģ“ ģ œź³µģžģ—ģ„œ ķ•„ģˆ˜" @@ -3065,66 +3152,65 @@ msgstr "ģž¬ģ„¤ģ • ģ½”ė“œ" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "ģ˜Øė³“ė”© ģ“ˆźø°ķ™”" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "ģ˜Øė³“ė”© 상태 ģ“ˆźø°ķ™”" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "ė¹„ė°€ė²ˆķ˜ø ģž¬ģ„¤ģ •" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "설정 ģ“ˆźø°ķ™”" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "설정 상태 ģ“ˆźø°ķ™”" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "ģ˜Øė³“ė”© 상태 ģ“ˆźø°ķ™”" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "설정 상태 ģ“ˆźø°ķ™”" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "ė”œź·øģøģ„ ė‹¤ģ‹œ ģ‹œė„ķ•©ė‹ˆė‹¤" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "ģ˜¤ė„˜ź°€ ė°œģƒķ•œ ė§ˆģ§€ė§‰ ģž‘ģ—…ģ„ ė‹¤ģ‹œ ģ‹œė„ķ•©ė‹ˆė‹¤" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "ė‹¤ģ‹œ ģ‹œė„" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "ė‹¤ģ‹œ ģ‹œė„ķ•˜źø°" +#~ msgid "Retry." +#~ msgstr "ė‹¤ģ‹œ ģ‹œė„ķ•˜źø°" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "ģ“ģ „ ķŽ˜ģ“ģ§€ė”œ ėŒģ•„ź°‘ė‹ˆė‹¤" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "ģƒŒė“œė°•ģŠ¤. 글과 ź³„ģ •ģ€ ģ˜źµ¬ģ ģ“ģ§€ ģ•ŠģŠµė‹ˆė‹¤." +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "ģƒŒė“œė°•ģŠ¤. 글과 ź³„ģ •ģ€ ģ˜źµ¬ģ ģ“ģ§€ ģ•ŠģŠµė‹ˆė‹¤." #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3137,7 +3223,7 @@ msgstr "ģ €ģž„" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "ģ €ģž„" @@ -3177,11 +3263,11 @@ msgstr "과학" msgid "Scroll to top" msgstr "ė§Ø ģœ„ė”œ 스크딤" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3189,8 +3275,8 @@ msgstr "ė§Ø ģœ„ė”œ 스크딤" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "ź²€ģƒ‰" @@ -3222,8 +3308,8 @@ msgid "Select {item}" msgstr "{item} ģ„ ķƒ" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Bluesky Social ģ„ ķƒ" +#~ msgid "Select Bluesky Social" +#~ msgstr "Bluesky Social ģ„ ķƒ" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3233,8 +3319,8 @@ msgstr "기씓 ź³„ģ •ģ—ģ„œ ģ„ ķƒ" msgid "Select option {i} of {numItems}" msgstr "{numItems}개 중 {i}번째 ģ˜µģ…˜ģ„ ģ„ ķƒķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "ģ„œė¹„ģŠ¤ ģ„ ķƒ" @@ -3242,7 +3328,11 @@ msgstr "ģ„œė¹„ģŠ¤ ģ„ ķƒ" msgid "Select some accounts below to follow" msgstr "ģ•„ėž˜ģ—ģ„œ ķŒ”ė”œģš°ķ•  ź³„ģ •ģ„ ģ„ ķƒķ•˜ģ„øģš”" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "ģ•„ėž˜ ėŖ©ė”ģ—ģ„œ ķŒ”ė”œģš°ķ•  ķ™”ģ œ ķ”¼ė“œė„¼ ģ„ ķƒķ•˜ģ„øģš”" @@ -3263,8 +3353,8 @@ msgid "Select your interests from the options below" msgstr "ģ•„ėž˜ ģ˜µģ…˜ģ—ģ„œ ꓀심사넼 ģ„ ķƒķ•˜ģ„øģš”" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "ģ „ķ™”ė²ˆķ˜ø źµ­ź°€ ģ„ ķƒ" +#~ msgid "Select your phone's country" +#~ msgstr "ģ „ķ™”ė²ˆķ˜ø źµ­ź°€ ģ„ ķƒ" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3274,7 +3364,7 @@ msgstr "ķ”¼ė“œģ—ģ„œ ė²ˆģ—­ģ„ ģœ„ķ•“ ģ„ ķ˜øķ•˜ėŠ” 언얓넼 ģ„ ķƒķ•©ė‹ˆė‹¤." msgid "Select your primary algorithmic feeds" msgstr "źø°ė³ø ģ•Œź³ ė¦¬ģ¦˜ ķ”¼ė“œė„¼ ģ„ ķƒķ•˜ģ„øģš”" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "볓씰 ģ•Œź³ ė¦¬ģ¦˜ ķ”¼ė“œė„¼ ģ„ ķƒķ•˜ģ„øģš”" @@ -3292,8 +3382,8 @@ msgctxt "action" msgid "Send Email" msgstr "ģ“ė©”ģ¼ 볓낓기" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "ķ”¼ė“œė°± 볓낓기" @@ -3305,33 +3395,37 @@ msgstr "ģ‹ ź³  볓낓기" msgid "Sends email with confirmation code for account deletion" msgstr "계정 ģ‚­ģ œė„¼ ģœ„ķ•œ ķ™•ģø ģ½”ė“œź°€ ķ¬ķ•Øėœ ģ“ė©”ģ¼ģ„ ģ „ģ†”ķ•©ė‹ˆė‹¤" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "{labelGroup} ģ½˜ķ…ģø  ꓀리 정책에 ėŒ€ķ•“ {value}ģ„(넼) ģ„¤ģ •ķ•©ė‹ˆė‹¤" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "ė‚˜ģ“ 설정" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "ģƒ‰ģƒ ķ…Œė§ˆė„¼ ģ–“ė‘ģ›€ģœ¼ė”œ ģ„¤ģ •ķ•©ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "ģƒ‰ģƒ ķ…Œė§ˆė„¼ ė°ģŒģœ¼ė”œ ģ„¤ģ •ķ•©ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "ģƒ‰ģƒ ķ…Œė§ˆė„¼ ģ‹œģŠ¤ķ…œ 설정에 ė§žģ¶„ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3339,19 +3433,19 @@ msgstr "" msgid "Set new password" msgstr "새 ė¹„ė°€ė²ˆķ˜ø 설정" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "ė¹„ė°€ė²ˆķ˜ø 설정" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ķ”¼ė“œģ—ģ„œ ėŖØė“  ģøģš© ź²Œģ‹œė¬¼ģ„ 숨기려멓 ģ“ ģ„¤ģ •ģ„ \"ģ•„ė‹ˆģš”\"딜 ģ„¤ģ •ķ•©ė‹ˆė‹¤. ģž¬ź²Œģ‹œėŠ” ź³„ģ† ķ‘œģ‹œė©ė‹ˆė‹¤." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "ķ”¼ė“œģ—ģ„œ ėŖØė“  ė‹µźø€ģ„ 숨기려멓 ģ“ ģ„¤ģ •ģ„ \"ģ•„ė‹ˆģš”\"딜 ģ„¤ģ •ķ•©ė‹ˆė‹¤." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "ķ”¼ė“œģ—ģ„œ ėŖØė“  ģž¬ź²Œģ‹œė„¼ 숨기려멓 ģ“ ģ„¤ģ •ģ„ \"ģ•„ė‹ˆģš”\"딜 ģ„¤ģ •ķ•©ė‹ˆė‹¤." @@ -3360,8 +3454,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "ģŠ¤ė ˆė“œ 볓기에 ė‹µźø€ģ„ ķ‘œģ‹œķ•˜ė ¤ė©“ ģ“ ģ„¤ģ •ģ„ \"예\"딜 ģ„¤ģ •ķ•©ė‹ˆė‹¤. ģ“ėŠ” ģ‹¤ķ—˜ģ ģø źø°ėŠ„ģž…ė‹ˆė‹¤." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "ķŒ”ė”œģš°ķ•œ ķ”¼ė“œģ— ģ €ģž„ėœ ķ”¼ė“œ ģƒ˜ķ”Œģ„ ķ‘œģ‹œķ•˜ė ¤ė©“ ģ“ ģ„¤ģ •ģ„ \"예\"딜 ģ„¤ģ •ķ•©ė‹ˆė‹¤. ģ“ėŠ” ģ‹¤ķ—˜ģ ģø źø°ėŠ„ģž…ė‹ˆė‹¤." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "ķŒ”ė”œģš°ķ•œ ķ”¼ė“œģ— ģ €ģž„ėœ ķ”¼ė“œ ģƒ˜ķ”Œģ„ ķ‘œģ‹œķ•˜ė ¤ė©“ ģ“ ģ„¤ģ •ģ„ \"예\"딜 ģ„¤ģ •ķ•©ė‹ˆė‹¤. ģ“ėŠ” ģ‹¤ķ—˜ģ ģø źø°ėŠ„ģž…ė‹ˆė‹¤." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3371,24 +3469,24 @@ msgstr "계정 ģ„¤ģ •ķ•˜źø°" msgid "Sets Bluesky username" msgstr "Bluesky ģ‚¬ģš©ģž ģ“ė¦„ģ„ ģ„¤ģ •ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "ė¹„ė°€ė²ˆķ˜ø ģž¬ģ„¤ģ •ģ„ ģœ„ķ•œ ģ“ė©”ģ¼ģ„ ģ„¤ģ •ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "ė¹„ė°€ė²ˆķ˜ø ģž¬ģ„¤ģ •ģ„ ģœ„ķ•œ ķ˜øģŠ¤ķŒ… ģ œź³µģžė„¼ ģ„¤ģ •ķ•©ė‹ˆė‹¤" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "Bluesky ķ“ė¼ģ“ģ–øķŠøė„¼ ģœ„ķ•œ ģ„œė²„ė„¼ ģ„¤ģ •ķ•©ė‹ˆė‹¤" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "설정" @@ -3401,25 +3499,25 @@ msgctxt "action" msgid "Share" msgstr "공유" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "공유" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "ķ”¼ė“œ 공유" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "ķ‘œģ‹œ" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "ėŖØė“  답글 ķ‘œģ‹œ" @@ -3431,21 +3529,21 @@ msgstr "ė¬“ģ‹œķ•˜ź³  ķ‘œģ‹œ" msgid "Show embeds from {0}" msgstr "{0} ģž„ė² ė“œ ķ‘œģ‹œ" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "{0} ė‹˜ź³¼ ė¹„ģŠ·ķ•œ ķŒ”ė”œģš° ķ‘œģ‹œ" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "ė” 볓기" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ė‚“ ķ”¼ė“œģ—ģ„œ ź²Œģ‹œė¬¼ ķ‘œģ‹œ" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ģøģš© ź²Œģ‹œė¬¼ ķ‘œģ‹œ" @@ -3461,7 +3559,7 @@ msgstr "ķŒ”ė”œģš° ģ¤‘ģø ķ”¼ė“œģ— ģøģš© ķ‘œģ‹œ" msgid "Show re-posts in Following feed" msgstr "ķŒ”ė”œģš° ģ¤‘ģø ķ”¼ė“œģ— ģž¬ź²Œģ‹œ ķ‘œģ‹œ" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "답글 ķ‘œģ‹œ" @@ -3477,11 +3575,11 @@ msgstr "ķŒ”ė”œģš° ģ¤‘ģø ķ”¼ė“œģ— 답글 ķ‘œģ‹œ" msgid "Show replies in Following feed" msgstr "ķŒ”ė”œģš° ģ¤‘ģø ķ”¼ė“œģ— 답글 ķ‘œģ‹œ" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "ģ¢‹ģ•„ģš”ź°€ {value}개 ģ“ģƒģø 답글 ķ‘œģ‹œ" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ģž¬ź²Œģ‹œ ķ‘œģ‹œ" @@ -3498,17 +3596,18 @@ msgstr "ģ½˜ķ…ģø  ķ‘œģ‹œ" msgid "Show users" msgstr "ģ‚¬ģš©ģž ķ‘œģ‹œ" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "ģ“ ģ‚¬ģš©ģžģ™€ ģœ ģ‚¬ķ•œ ģ‚¬ģš©ģž ėŖ©ė”ģ„ ķ‘œģ‹œķ•©ė‹ˆė‹¤" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "ķ”¼ė“œģ— {0} ė‹˜ģ˜ ź²Œģ‹œė¬¼ģ„ ķ‘œģ‹œķ•©ė‹ˆė‹¤" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3521,8 +3620,8 @@ msgid "Sign in" msgstr "ė”œź·øģø" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "ė”œź·øģø" @@ -3535,14 +3634,14 @@ msgstr "{0}(으)딜 ė”œź·øģø" msgid "Sign in as..." msgstr "ė”œź·øģø" -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "ė”œź·øģø" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "ė”œź·øģ•„ģ›ƒ" @@ -3566,7 +3665,7 @@ msgstr "ź°€ģž… ė˜ėŠ” ė”œź·øģøķ•˜ģ—¬ ėŒ€ķ™”ģ— ģ°øģ—¬ķ•˜ģ„øģš”" msgid "Sign-in Required" msgstr "ė”œź·øģø ķ•„ģš”" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "ė”œź·øģøķ•œ 계정" @@ -3579,7 +3678,7 @@ msgid "Signs {0} out of Bluesky" msgstr "Blueskyģ—ģ„œ {0}ģ„(넼) ė”œź·øģ•„ģ›ƒķ•©ė‹ˆė‹¤" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "ź±“ė„ˆė›°źø°" @@ -3589,22 +3688,22 @@ msgid "Skip this flow" msgstr "ģ“ 단계 ź±“ė„ˆė›°źø°" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "SMS ģøģ¦" +#~ msgid "SMS verification" +#~ msgstr "SMS ģøģ¦" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "ģ†Œķ”„ķŠøģ›Øģ–“ 개발" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "ė¬øģ œź°€ ė°œģƒķ–ˆģ§€ė§Œ ģ›ģøģ„ ģ•Œ 수 ģ—†ģŠµė‹ˆė‹¤." +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "ė¬øģ œź°€ ė°œģƒķ–ˆģ§€ė§Œ ģ›ģøģ„ ģ•Œ 수 ģ—†ģŠµė‹ˆė‹¤." #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģ“ė©”ģ¼ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "ģ£„ģ†”ķ•©ė‹ˆė‹¤. ģ„øģ…˜ģ“ ė§Œė£Œė˜ģ—ˆģŠµė‹ˆė‹¤. ė‹¤ģ‹œ ė”œź·øģøķ•“ ģ£¼ģ„øģš”." @@ -3625,10 +3724,10 @@ msgid "Square" msgstr "ģ •ģ‚¬ź°ķ˜•" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "ģŠ¤ķ…Œģ“ģ§•" +#~ msgid "Staging" +#~ msgstr "ģŠ¤ķ…Œģ“ģ§•" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "상태 ķŽ˜ģ“ģ§€" @@ -3636,12 +3735,12 @@ msgstr "상태 ķŽ˜ģ“ģ§€" msgid "Step {0} of {numSteps}" msgstr "{numSteps}단계 중 {0}단계" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "ģŠ¤ķ† ė¦¬ģ§€ź°€ ģ§€ģ›Œģ”Œģœ¼ė©° ģ§€źøˆ ģ•±ģ„ ė‹¤ģ‹œ ģ‹œģž‘ķ•“ģ•¼ ķ•©ė‹ˆė‹¤." -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "ģŠ¤ķ† ė¦¬ė¶" @@ -3649,7 +3748,7 @@ msgstr "ģŠ¤ķ† ė¦¬ė¶" msgid "Submit" msgstr "ķ™•ģø" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "źµ¬ė…" @@ -3658,7 +3757,7 @@ msgstr "źµ¬ė…" msgid "Subscribe to the {0} feed" msgstr "{0} ķ”¼ė“œ źµ¬ė…ķ•˜źø°" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ģ“ 리스트 źµ¬ė…ķ•˜źø°" @@ -3674,35 +3773,35 @@ msgstr "ė‚˜ė„¼ ģœ„ķ•œ ģ¶”ģ²œ" msgid "Suggestive" msgstr "외설적" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "지원" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "ģœ„ė”œ ģŠ¤ģ™€ģ“ķ”„ķ•˜ģ—¬ ė” 볓기" +#~ msgid "Swipe up to see more" +#~ msgstr "ģœ„ė”œ ģŠ¤ģ™€ģ“ķ”„ķ•˜ģ—¬ ė” 볓기" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "계정 ģ „ķ™˜" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "{0}(으)딜 ģ „ķ™˜" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "ė”œź·øģøķ•œ ź³„ģ •ģ„ ģ „ķ™˜ķ•©ė‹ˆė‹¤" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "ģ‹œģŠ¤ķ…œ" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "ģ‹œģŠ¤ķ…œ 딜그" @@ -3718,14 +3817,14 @@ msgstr "ķƒ­ķ•˜ģ—¬ 전첓 크기딜 ė“…ė‹ˆė‹¤" msgid "Tech" msgstr "기술" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "ģ“ģš©ģ•½ź“€" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "ģ„œė¹„ģŠ¤ ģ“ģš©ģ•½ź“€" @@ -3734,7 +3833,11 @@ msgstr "ģ„œė¹„ģŠ¤ ģ“ģš©ģ•½ź“€" msgid "Text input field" msgstr "ķ…ģŠ¤ķŠø ģž…ė „ ķ•„ė“œ" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ģ°Øė‹Øģ„ ķ•“ģ œķ•˜ė©“ 핓당 ź³„ģ •ģ“ ė‚˜ģ™€ ģƒķ˜øģž‘ģš©ķ•  수 ģžˆź²Œ ė©ė‹ˆė‹¤." @@ -3750,7 +3853,7 @@ msgstr "ģ €ģž‘ź¶Œ ģ •ģ±…ģ„ <0/>(으)딜 ģ“ė™ķ–ˆģŠµė‹ˆė‹¤" msgid "The following steps will help customize your Bluesky experience." msgstr "ė‹¤ģŒ ė‹Øź³„ėŠ” Bluesky ķ™˜ź²½ģ„ ė§žģ¶¤ ģ„¤ģ •ķ•˜ėŠ” ė° ė„ģ›€ģ“ ė©ė‹ˆė‹¤." -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "ź²Œģ‹œė¬¼ģ“ ģ‚­ģ œė˜ģ—ˆģ„ 수 ģžˆģŠµė‹ˆė‹¤." @@ -3766,11 +3869,11 @@ msgstr "지원 ģ–‘ģ‹ģ„ ģ“ė™ķ–ˆģŠµė‹ˆė‹¤. ė„ģ›€ģ“ ķ•„ģš”ķ•˜ė‹¤ė©“ <0/>ķ•˜ msgid "The Terms of Service have been moved to" msgstr "ģ„œė¹„ģŠ¤ ģ“ģš©ģ•½ź“€ģ„ ė‹¤ģŒģœ¼ė”œ ģ“ė™ķ–ˆģŠµė‹ˆė‹¤:" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "ģ‹œė„ķ•“ ė³¼ ė§Œķ•œ ķ”¼ė“œ:" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "ģ„œė²„ģ— ģ—°ź²°ķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." @@ -3778,12 +3881,12 @@ msgstr "ģ„œė²„ģ— ģ—°ź²°ķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ģ“ ķ”¼ė“œė„¼ ģ‚­ģ œķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "ķ”¼ė“œė„¼ ģ—…ė°ģ“ķŠøķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3792,9 +3895,9 @@ msgstr "ģ„œė²„ģ— ģ—°ź²°ķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "ģ„œė²„ģ— ģ—°ź²°ķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤" @@ -3824,19 +3927,21 @@ msgstr "ģ„¤ģ •ģ„ ģ„œė²„ģ™€ ė™źø°ķ™”ķ•˜ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤" msgid "There was an issue with fetching your app passwords" msgstr "앱 ė¹„ė°€ė²ˆķ˜øė„¼ ź°€ģ øģ˜¤ėŠ” ė™ģ•ˆ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ ģ‹œė„ķ•˜ģ„øģš”." @@ -3844,13 +3949,13 @@ msgstr "ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•œ 후 ė‹¤ģ‹œ msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "ģ• ķ”Œė¦¬ģ¼€ģ“ģ…˜ģ— 예기치 ģ•Šģ€ ė¬øģ œź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. ģ“ėŸ° ģ¼ģ“ ė°œģƒķ•˜ė©“ ģ €ķ¬ģ—ź²Œ ģ•Œė ¤ģ£¼ģ„øģš”!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky에 ģ‹ ź·œ ģ‚¬ģš©ģžź°€ 몰리고 ģžˆģŠµė‹ˆė‹¤! ģµœėŒ€ķ•œ 빨리 ź³„ģ •ģ„ ķ™œģ„±ķ™”ķ•“ ė“œė¦¬ź² ģŠµė‹ˆė‹¤." #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "ģž˜ėŖ»ėœ ė²ˆķ˜øģž…ė‹ˆė‹¤. 국가넼 ģ„ ķƒķ•˜ź³  전첓 ģ „ķ™”ė²ˆķ˜øė„¼ ģž…ė „ķ•˜ģ„øģš”." +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "ģž˜ėŖ»ėœ ė²ˆķ˜øģž…ė‹ˆė‹¤. 국가넼 ģ„ ķƒķ•˜ź³  전첓 ģ „ķ™”ė²ˆķ˜øė„¼ ģž…ė „ķ•˜ģ„øģš”." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3876,13 +3981,17 @@ msgstr "꓀련 ģ‚¬ģš©ģž 중 ķ•œ ėŖ…ģ“ 다넸 ģ‚¬ģš©ģžė„¼ ģ°Øė‹Øķ–ˆźø° ė•Œė¬ø msgid "This content is not viewable without a Bluesky account." msgstr "ģ“ ģ½˜ķ…ģø ėŠ” Bluesky ź³„ģ •ģ“ ģ—†ģœ¼ė©“ ė³¼ 수 ģ—†ģŠµė‹ˆė‹¤." +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "ģ“ ķ”¼ė“œėŠ” ķ˜„ģž¬ ķŠøėž˜ķ”½ģ“ ė§Žģ•„ ģ¼ģ‹œģ ģœ¼ė”œ ģ‚¬ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤. ė‚˜ģ¤‘ģ— ė‹¤ģ‹œ ģ‹œė„ķ•“ ģ£¼ģ„øģš”." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "ģ“ ķ”¼ė“œėŠ” 비얓 ģžˆģŠµė‹ˆė‹¤." @@ -3910,7 +4019,7 @@ msgstr "ģ“ ė¦¬ģŠ¤ķŠøėŠ” 비얓 ģžˆģŠµė‹ˆė‹¤." msgid "This name is already in use" msgstr "ģ“ ģ“ė¦„ģ€ ģ“ėÆø ģ‚¬ģš© ģ¤‘ģž…ė‹ˆė‹¤" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ģ“ ź²Œģ‹œė¬¼ģ€ ģ‚­ģ œė˜ģ—ˆģŠµė‹ˆė‹¤." @@ -3934,12 +4043,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "ģ“ ź²½ź³ ėŠ” 미디얓가 ģ²Øė¶€ėœ ź²Œģ‹œė¬¼ģ—ė§Œ ģ‚¬ģš©ķ•  수 ģžˆģŠµė‹ˆė‹¤." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "ķ”¼ė“œģ—ģ„œ ģ“ ź²Œģ‹œė¬¼ģ„ ģˆØź¹ė‹ˆė‹¤." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "ģŠ¤ė ˆė“œ 설정" @@ -3947,7 +4056,7 @@ msgstr "ģŠ¤ė ˆė“œ 설정" msgid "Threaded Mode" msgstr "ģŠ¤ė ˆė“œ ėŖØė“œ" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "ģŠ¤ė ˆė“œ 설정" @@ -3959,45 +4068,45 @@ msgstr "ė“œė”­ė‹¤ģš“ ģ—“źø° ė° ė‹«źø°" msgid "Transformations" msgstr "ė³€ķ˜•" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ė²ˆģ—­" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "ė‹¤ģ‹œ ģ‹œė„" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "리스트 차단 ķ•“ģ œ" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "리스트 ģ–øė®¤ķŠø" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "ģ„œė¹„ģŠ¤ģ— ģ—°ź²°ķ•  수 ģ—†ģŠµė‹ˆė‹¤. ģøķ„°ė„· ģ—°ź²°ģ„ ķ™•ģøķ•˜ģ„øģš”." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "차단 ķ•“ģ œ" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "차단 ķ•“ģ œ" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "계정 차단 ķ•“ģ œ" @@ -4013,40 +4122,41 @@ msgctxt "action" msgid "Unfollow" msgstr "ģ–øķŒ”ė”œģš°" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "{0} ė‹˜ģ„ ģ–øķŒ”ė”œģš°" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "ģ•„ģ‰½ģ§€ė§Œ ź³„ģ •ģ„ ė§Œė“¤ 수 ģžˆėŠ” ģš”ź±“ģ„ ģ¶©ģ”±ķ•˜ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "ģ¢‹ģ•„ģš” ģ·Øģ†Œ" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "ģ–øė®¤ķŠø" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "계정 ģ–øė®¤ķŠø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ģŠ¤ė ˆė“œ ģ–øė®¤ķŠø" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "ź³ ģ • ķ•“ģ œ" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "검토 리스트 ź³ ģ • ķ•“ģ œ" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "ģ €ģž„ ķ•“ģ œ" @@ -4089,8 +4199,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "ģ“ ė¹„ė°€ė²ˆķ˜øģ™€ ķ•øė“¤ģ„ ģ‚¬ģš©ķ•˜ģ—¬ 다넸 앱에 ė”œź·øģøķ•˜ģ„øģš”." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "ė‚“ ė„ė©”ģøģ„ Bluesky ķ“ė¼ģ“ģ–øķŠø ģ„œė¹„ģŠ¤ ź³µźø‰ģžė”œ ģ‚¬ģš©ķ•©ė‹ˆė‹¤" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "ė‚“ ė„ė©”ģøģ„ Bluesky ķ“ė¼ģ“ģ–øķŠø ģ„œė¹„ģŠ¤ ź³µźø‰ģžė”œ ģ‚¬ģš©ķ•©ė‹ˆė‹¤" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4108,11 +4218,11 @@ msgstr "리스트딜 ģ‚¬ģš©ģž 차단됨" msgid "User Blocks You" msgstr "ģ‚¬ģš©ģžź°€ ė‚˜ė„¼ 차단함" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ģ‚¬ģš©ģž 핸들" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "{0} ė‹˜ģ˜ ģ‚¬ģš©ģž 리스트" @@ -4121,7 +4231,7 @@ msgstr "{0} ė‹˜ģ˜ ģ‚¬ģš©ģž 리스트" msgid "User list by <0/>" msgstr "<0/> ė‹˜ģ˜ ģ‚¬ģš©ģž 리스트" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4139,8 +4249,8 @@ msgstr "ģ‚¬ģš©ģž 리스트 ģ—…ė°ģ“ķŠøėØ" msgid "User Lists" msgstr "ģ‚¬ģš©ģž 리스트" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "ģ‚¬ģš©ģž ģ“ė¦„ ė˜ėŠ” ģ“ė©”ģ¼ ģ£¼ģ†Œ" @@ -4157,18 +4267,18 @@ msgid "Users in \"{0}\"" msgstr "\"{0}\"에 ģžˆėŠ” ģ‚¬ģš©ģž" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "ģøģ¦ ģ½”ė“œ" +#~ msgid "Verification code" +#~ msgstr "ģøģ¦ ģ½”ė“œ" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "ģ“ė©”ģ¼ ģøģ¦" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "ė‚“ ģ“ė©”ģ¼ ģøģ¦ķ•˜źø°" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "ė‚“ ģ“ė©”ģ¼ ģøģ¦ķ•˜źø°" @@ -4185,7 +4295,7 @@ msgstr "ģ“ė©”ģ¼ ģøģ¦ķ•˜źø°" msgid "Video Games" msgstr "ė¹„ė””ģ˜¤ ź²Œģž„" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "{0} ė‹˜ģ˜ ģ•„ė°”ķƒ€ė„¼ ė“…ė‹ˆė‹¤" @@ -4210,15 +4320,15 @@ msgid "Visit Site" msgstr "ģ‚¬ģ“ķŠø 방문" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "경고" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "Skygazeģ˜ \"For You\"넼 ģ‚¬ģš©ķ•“ ė³¼ ģˆ˜ė„ ģžˆģŠµė‹ˆė‹¤:" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "ź³„ģ •ģ“ 준비될 ė•Œź¹Œģ§€ {estimatedTime}ģ“(ź°€) 걸릓 것으딜 ģ˜ˆģƒė©ė‹ˆė‹¤." @@ -4230,7 +4340,7 @@ msgstr "즐거욓 ģ‹œź°„ ė˜ģ‹œźø° ė°”ėžė‹ˆė‹¤. Blueskyģ˜ ė‹¤ģŒ ķŠ¹ģ§•ģ„ źø° msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ķŒ”ė”œģš°ķ•œ ģ‚¬ģš©ģžģ˜ ź²Œģ‹œė¬¼ģ“ ė¶€ģ”±ķ•©ė‹ˆė‹¤. ėŒ€ģ‹  <0/>ģ˜ ģµœģ‹  ź²Œģ‹œė¬¼ģ„ ķ‘œģ‹œķ•©ė‹ˆė‹¤." -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "\"Discover\" ķ”¼ė“œė„¼ ź¶Œģž„ķ•©ė‹ˆė‹¤:" @@ -4238,7 +4348,7 @@ msgstr "\"Discover\" ķ”¼ė“œė„¼ ź¶Œģž„ķ•©ė‹ˆė‹¤:" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "ģ—°ź²°ķ•˜ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤. 계정 ģ„¤ģ •ģ„ ź³„ģ†ķ•˜ė ¤ė©“ ė‹¤ģ‹œ ģ‹œė„ķ•“ ģ£¼ģ„øģš”. ź³„ģ† ģ‹¤ķŒØķ•˜ė©“ ģ“ ź³¼ģ •ģ„ ź±“ė„ˆė›ø 수 ģžˆģŠµė‹ˆė‹¤." -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "ź³„ģ •ģ“ ģ¤€ė¹„ė˜ė©“ ģ•Œė ¤ė“œė¦¬ź² ģŠµė‹ˆė‹¤." @@ -4250,11 +4360,11 @@ msgstr "ģ“ģ˜ģ‹ ģ²­ģ„ ģ¦‰ģ‹œ ź²€ķ† ķ•˜ź² ģŠµė‹ˆė‹¤." msgid "We'll use this to help customize your experience." msgstr "ģ“ė„¼ 통핓 ģ‚¬ģš©ģž ķ™˜ź²½ģ„ ė§žģ¶¤ 설정할 수 ģžˆģŠµė‹ˆė‹¤." -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "당신과 ķ•Øź»˜ķ•˜ź²Œ ė˜ģ–“ 정말 źø°ģ˜ė„¤ģš”!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "ģ£„ģ†”ķ•˜ģ§€ė§Œ ģ“ 리스트넼 불러올 수 ģ—†ģŠµė‹ˆė‹¤. ģ“ ė¬øģ œź°€ ź³„ģ†ė˜ė©“ 리스트 ģž‘ģ„±ģžģø @{handleOrDid}ģ—ź²Œ ė¬øģ˜ķ•˜ģ„øģš”." @@ -4278,7 +4388,7 @@ msgstr "꓀심사가 ģ–“ė–»ź²Œ ė˜ė‚˜ģš”?" msgid "What is the issue with this {collectionName}?" msgstr "ģ“ {collectionName}에 ģ–“ė–¤ ė¬øģ œź°€ ģžˆė‚˜ģš”?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "묓슨 ģ¼ģ“ ģ¼ģ–“ė‚˜ź³  ģžˆė‚˜ģš”?" @@ -4314,20 +4424,20 @@ msgid "Writers" msgstr "ģž‘ź°€" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "XXXXXX" +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" msgstr "예" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "ėŒ€źø° ģ¤‘ģž…ė‹ˆė‹¤." @@ -4353,7 +4463,7 @@ msgstr "아직 ģ“ˆėŒ€ ģ½”ė“œź°€ ģ—†ģŠµė‹ˆė‹¤! Bluesky넼 좀 ė” ģ˜¤ėž˜ ģ‚¬ģš© msgid "You don't have any pinned feeds." msgstr "ź³ ģ •ėœ ķ”¼ė“œź°€ ģ—†ģŠµė‹ˆė‹¤." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "ģ €ģž„ėœ ķ”¼ė“œź°€ ģ—†ģŠµė‹ˆė‹¤!" @@ -4361,7 +4471,7 @@ msgstr "ģ €ģž„ėœ ķ”¼ė“œź°€ ģ—†ģŠµė‹ˆė‹¤!" msgid "You don't have any saved feeds." msgstr "ģ €ģž„ėœ ķ”¼ė“œź°€ ģ—†ģŠµė‹ˆė‹¤." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "ģž‘ģ„±ģžė„¼ ģ°Øė‹Øķ–ˆź±°ė‚˜ ģž‘ģ„±ģžź°€ ė‚˜ė„¼ ģ°Øė‹Øķ–ˆģŠµė‹ˆė‹¤." @@ -4401,7 +4511,7 @@ msgstr "아직 앱 ė¹„ė°€ė²ˆķ˜øė„¼ ģƒģ„±ķ•˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤. ģ•„ėž˜ ė²„ķŠ¼ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "아직 ģ–“ė–¤ ź³„ģ •ė„ ė®¤ķŠøķ•˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤. ź³„ģ •ģ„ ė®¤ķŠøķ•˜ė ¤ė©“ 핓당 ź³„ģ •ģ˜ ķ”„ė”œķ•„ė”œ ģ“ė™ķ•˜ģ—¬ 계정 ė©”ė‰“ģ—ģ„œ \"계정 뮤트\"넼 ģ„ ķƒķ•˜ģ„øģš”." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "ģ„±ģø ģ½˜ķ…ģø ė„¼ ķ™œģ„±ķ™”ķ•˜ė ¤ė©“ 18세 ģ“ģƒģ“ģ–“ģ•¼ ķ•©ė‹ˆė‹¤." @@ -4409,11 +4519,11 @@ msgstr "ģ„±ģø ģ½˜ķ…ģø ė„¼ ķ™œģ„±ķ™”ķ•˜ė ¤ė©“ 18세 ģ“ģƒģ“ģ–“ģ•¼ ķ•©ė‹ˆė‹¤." msgid "You must be 18 years or older to enable adult content" msgstr "ģ„±ģø ģ½˜ķ…ģø ė„¼ ģ‚¬ģš©ķ•˜ė ¤ė©“ 만 18세 ģ“ģƒģ“ģ–“ģ•¼ ķ•©ė‹ˆė‹¤." -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "ģ“ ģŠ¤ė ˆė“œģ— ėŒ€ķ•œ ģ•Œė¦¼ģ„ ė” ģ“ģƒ 받지 ģ•ŠģŠµė‹ˆė‹¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "ģ“ģ œ ģ“ ģŠ¤ė ˆė“œģ— ėŒ€ķ•œ ģ•Œė¦¼ģ„ ė°›ģŠµė‹ˆė‹¤" @@ -4425,9 +4535,9 @@ msgstr "\"ģž¬ģ„¤ģ • ģ½”ė“œ\"ź°€ ķ¬ķ•Øėœ ģ“ė©”ģ¼ģ„ ė°›ź²Œ 되멓 여기에 msgid "You're in control" msgstr "직접 ģ œģ–“ķ•˜ģ„øģš”" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "ėŒ€źø° ģ¤‘ģž…ė‹ˆė‹¤" @@ -4439,7 +4549,7 @@ msgstr "준비가 ėė‚¬ģŠµė‹ˆė‹¤!" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ķ”¼ė“œ ėģ— ė„ė‹¬ķ–ˆģŠµė‹ˆė‹¤! ķŒ”ė”œģš°ķ•  ź³„ģ •ģ„ ė” ģ°¾ģ•„ė³“ģ„øģš”." -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "ė‚“ 계정" @@ -4447,7 +4557,11 @@ msgstr "ė‚“ 계정" msgid "Your account has been deleted" msgstr "ź³„ģ •ģ„ ģ‚­ģ œķ–ˆģŠµė‹ˆė‹¤" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "ģƒė…„ģ›”ģ¼" @@ -4459,7 +4573,7 @@ msgstr "ģ„ ķƒ ģ‚¬ķ•­ģ€ ģ €ģž„ė˜ė©° ė‚˜ģ¤‘ģ— ģ„¤ģ •ģ—ģ„œ 변경할 수 ģžˆ msgid "Your default feed is \"Following\"" msgstr "źø°ė³ø ķ”¼ė“œėŠ” \"ķŒ”ė”œģš° 중\"ģž…ė‹ˆė‹¤" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4481,7 +4595,7 @@ msgstr "ģ“ė©”ģ¼ģ“ 아직 ģøģ¦ė˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤. ģ“ėŠ” ģ¤‘ģš”ķ•œ 볓 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ķŒ”ė”œģš° ģ¤‘ģø ķ”¼ė“œź°€ 비얓 ģžˆģŠµė‹ˆė‹¤! ė” ė§Žģ€ ģ‚¬ģš©ģžė„¼ ķŒ”ė”œģš°ķ•˜ģ—¬ 묓슨 ģ¼ģ“ ģ¼ģ–“ė‚˜ź³  ģžˆėŠ”ģ§€ ķ™•ģøķ•˜ģ„øģš”." -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ė‚“ 전첓 핸들:" @@ -4492,8 +4606,8 @@ msgstr "ė‚“ 전첓 핸들: <0>@{0}" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "앱 ė¹„ė°€ė²ˆķ˜øė„¼ ģ‚¬ģš©ķ•˜ģ—¬ ė”œź·øģøķ•˜ė©“ ģ“ˆėŒ€ ģ½”ė“œź°€ ģˆØź²Øģ§‘ė‹ˆė‹¤" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "앱 ė¹„ė°€ė²ˆķ˜øė„¼ ģ‚¬ģš©ķ•˜ģ—¬ ė”œź·øģøķ•˜ė©“ ģ“ˆėŒ€ ģ½”ė“œź°€ ģˆØź²Øģ§‘ė‹ˆė‹¤" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4510,7 +4624,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "ź²Œģ‹œė¬¼, ģ¢‹ģ•„ģš”, 차단 ėŖ©ė”ģ€ ź³µź°œė©ė‹ˆė‹¤. 뮤트 ėŖ©ė”ģ€ ź³µź°œė˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "ė‚“ ķ”„ė”œķ•„" @@ -4518,6 +4632,6 @@ msgstr "ė‚“ ķ”„ė”œķ•„" msgid "Your reply has been published" msgstr "ė‚“ ė‹µźø€ģ„ ź²Œģ‹œķ–ˆģŠµė‹ˆė‹¤" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ė‚“ ģ‚¬ģš©ģž 핸들" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 4667ce2a9e..9178214dd4 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "(sem email)" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {# convite disponĆ­vel} other {# convites disponĆ­veis}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# convite disponĆ­vel} other {# convites disponĆ­veis}}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} seguindo" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {Convites: # disponĆ­vel} other {Convites: # disponĆ­veis}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {Convites: # disponĆ­vel} other {Convites: # disponĆ­veis}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} convite disponĆ­vel" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} convite disponĆ­vel" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} convites disponĆ­veis" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} convites disponĆ­veis" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} nĆ£o lidas" @@ -47,7 +47,7 @@ msgstr "{numUnreadNotifications} nĆ£o lidas" msgid "<0/> members" msgstr "<0/> membros" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following} <1>seguindo" @@ -63,7 +63,7 @@ msgstr "<0>Siga alguns<2>UsuĆ”rios<1>recomendados" msgid "<0>Welcome to<1>Bluesky" msgstr "<0>Bem-vindo ao<1>Bluesky" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "⚠UsuĆ”rio InvĆ”lido" @@ -80,26 +80,26 @@ msgstr "Uma nova versĆ£o do aplicativo estĆ” disponĆ­vel. Por favor, atualize pa msgid "Access navigation links and settings" msgstr "Acessar links de navegação e configuraƧƵes" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Acessar perfil e outros links de navegação" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "Acessibilidade" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "Conta" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Conta bloqueada" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Conta silenciada" @@ -119,11 +119,11 @@ msgstr "ConfiguraƧƵes da conta" msgid "Account removed from quick access" msgstr "Conta removida do acesso rĆ”pido" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Conta desbloqueada" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Conta dessilenciada" @@ -142,8 +142,8 @@ msgstr "Adicionar um aviso de conteĆŗdo" msgid "Add a user to this list" msgstr "Adicionar um usuĆ”rio a esta lista" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "Adicionar conta" @@ -180,12 +180,12 @@ msgstr "Adicionar prĆ©via de link:" msgid "Add the following DNS record to your domain:" msgstr "Adicione o seguinte registro DNS ao seu domĆ­nio:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Adicionar Ć s Listas" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Adicionar aos meus feeds" @@ -198,11 +198,11 @@ msgstr "Adicionado" msgid "Added to list" msgstr "Adicionado Ć  lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Adicionado aos meus feeds" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajuste o nĆŗmero de curtidas para que uma resposta apareƧa no seu feed." @@ -210,7 +210,7 @@ msgstr "Ajuste o nĆŗmero de curtidas para que uma resposta apareƧa no seu feed. msgid "Adult Content" msgstr "ConteĆŗdo Adulto" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "ConteĆŗdo adulto só pode ser habilitado no site: <0/>." @@ -218,11 +218,15 @@ msgstr "ConteĆŗdo adulto só pode ser habilitado no site: <0/>." #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "ConteĆŗdo adulto só pode ser habilitado no site: <0>bsky.app." -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "AvanƧado" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "JĆ” tem um código?" @@ -281,7 +285,7 @@ msgstr "O nome da Senha de Aplicativo só pode conter letras, nĆŗmeros, traƧos msgid "App Password names must be at least 4 characters long." msgstr "O nome da Senha de Aplicativo precisa ter no mĆ­nimo 4 caracteres." -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "ConfiguraƧƵes de Senha de Aplicativo" @@ -289,13 +293,13 @@ msgstr "ConfiguraƧƵes de Senha de Aplicativo" #~ msgid "App passwords" #~ msgstr "Senhas de aplicativos" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "Senhas de Aplicativos" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Contestar aviso de conteĆŗdo" @@ -311,7 +315,7 @@ msgstr "Contestar esta decisĆ£o" msgid "Appeal this decision." msgstr "Contestar esta decisĆ£o." -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "AparĆŖncia" @@ -323,11 +327,11 @@ msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Tem certeza que deseja descartar este rascunho?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Tem certeza?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Tem certeza? Esta ação nĆ£o poderĆ” ser desfeita." @@ -343,21 +347,21 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artĆ­stica ou nĆ£o erótica." -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Voltar" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "Voltar" @@ -366,42 +370,42 @@ msgstr "Voltar" msgid "Based on your interest in {interestsText}" msgstr "Com base no seu interesse em {interestsText}" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "BĆ”sicos" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "AniversĆ”rio" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "AniversĆ”rio:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloquear Conta" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloquear contas" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Lista de bloqueio" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Bloquear estas contas?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Bloquear esta Lista" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Bloqueado" @@ -414,7 +418,7 @@ msgstr "Contas bloqueadas" msgid "Blocked Accounts" msgstr "Contas Bloqueadas" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vocĆŖ." @@ -422,22 +426,29 @@ msgstr "Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vo msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vocĆŖ. VocĆŖ nĆ£o verĆ” o conteĆŗdo deles e eles serĆ£o impedidos de ver o seu." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Post bloqueado." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Bloqueios sĆ£o pĆŗblicos. Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vocĆŖ." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Blog" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -462,24 +473,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "O Bluesky nĆ£o mostrarĆ” seu perfil e publicaƧƵes para usuĆ”rios desconectados. Outros aplicativos podem nĆ£o honrar esta solicitação. Isso nĆ£o torna a sua conta privada." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "Livros" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "VersĆ£o {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "Empresarial" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "BotĆ£o desabilitado. Utilize um domĆ­nio personalizado para continuar." +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "BotĆ£o desabilitado. Utilize um domĆ­nio personalizado para continuar." #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -498,8 +510,8 @@ msgid "by you" msgstr "por vocĆŖ" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "CĆ¢mera" @@ -507,7 +519,7 @@ msgstr "CĆ¢mera" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Só pode conter letras, nĆŗmeros, espaƧos, traƧos e sublinhados. Deve ter pelo menos 4 caracteres, mas nĆ£o mais de 32 caracteres." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -567,17 +579,17 @@ msgstr "Cancelar busca" msgid "Cancel waitlist signup" msgstr "Cancelar inscrição na lista de espera" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "Alterar" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Alterar usuĆ”rio" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Alterar UsuĆ”rio" @@ -585,11 +597,11 @@ msgstr "Alterar UsuĆ”rio" msgid "Change my email" msgstr "Alterar meu email" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "Alterar senha" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "Alterar Senha" @@ -597,7 +609,7 @@ msgstr "Alterar Senha" msgid "Change post language to {0}" msgstr "Trocar idioma do post para {0}" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "Alterar sua senha do Bluesky" @@ -605,8 +617,8 @@ msgstr "Alterar sua senha do Bluesky" msgid "Change Your Email" msgstr "Altere o Seu Email" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "Verificar minha situação" @@ -626,11 +638,11 @@ msgstr "Verifique em sua caixa de entrada um e-mail com o código de confirmaƧ msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "Escolha \"Todos\" ou \"NinguĆ©m\"" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "Crie ou escolha um novo usuĆ”rio no Bluesky" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Escolher ServiƧo" @@ -651,29 +663,29 @@ msgstr "Escolha os algoritmos que fazem sentido para vocĆŖ com os feeds personal msgid "Choose your main feeds" msgstr "Escolha seus feeds principais" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "Escolha sua senha" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "Limpar todos os dados de armazenamento legados" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento legados (reinicie em seguida)" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "Limpar todos os dados de armazenamento" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "Limpar busca" @@ -691,7 +703,8 @@ msgstr "Clima e tempo" msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "Fechar janela ativa" @@ -743,7 +756,7 @@ msgstr "ComĆ©dia" msgid "Comics" msgstr "Quadrinhos" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -752,6 +765,10 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Completar e comeƧar a usar sua conta" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Escreva posts de atĆ© {MAX_GRAPHEME_LENGTH} caracteres" @@ -764,12 +781,12 @@ msgstr "Escrever resposta" msgid "Configure content filtering setting for category: {0}" msgstr "Configure o filtro de conteĆŗdo por categoria: {0}" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirmar" @@ -793,7 +810,7 @@ msgstr "Confirmar configuraƧƵes de idioma de conteĆŗdo" msgid "Confirm delete account" msgstr "Confirmar a exclusĆ£o da conta" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "Confirme sua idade para habilitar conteĆŗdo adulto." @@ -807,12 +824,12 @@ msgstr "Código de confirmação" msgid "Confirms signing up {email} to the waitlist" msgstr "Confirma adição de {email} Ć  lista de espera" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Conectando..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "Contatar suporte" @@ -842,11 +859,11 @@ msgstr "Aviso de ConteĆŗdo" msgid "Content warnings" msgstr "Avisos de conteĆŗdo" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -855,15 +872,15 @@ msgstr "Continuar" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "Continuar para o próximo passo" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "Continuar para o próximo passo" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "Continuar para o próximo passo sem seguir contas" @@ -876,13 +893,13 @@ msgstr "CulinĆ”ria" msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "VersĆ£o do aplicativo copiada" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Copiado" @@ -894,28 +911,28 @@ msgstr "Copia senha de aplicativo" msgid "Copy" msgstr "Copiar" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copiar link do post" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copiar link do perfil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copiar texto do post" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "PolĆ­tica de Direitos Autorais" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "NĆ£o foi possĆ­vel carregar o feed" @@ -924,20 +941,20 @@ msgid "Could not load list" msgstr "NĆ£o foi possĆ­vel carregar a lista" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "PaĆ­s" +#~ msgid "Country" +#~ msgstr "PaĆ­s" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "Criar uma nova conta" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "Criar uma nova conta do Bluesky" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Criar Conta" @@ -946,7 +963,7 @@ msgid "Create App Password" msgstr "Criar Senha de Aplicativo" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "Criar uma nova conta" @@ -970,12 +987,17 @@ msgstr "Cria uma prĆ©via com miniatura. A prĆ©via faz um link para {url}" msgid "Culture" msgstr "Cultura" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "DomĆ­nio personalizado" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Feeds customizados feitos pela comunidade te proporcionam novas experiĆŖncias e te ajudam a encontrar o conteĆŗdo que vocĆŖ mais ama." @@ -987,8 +1009,8 @@ msgstr "Configurar mĆ­dia de sites externos." #~ msgid "Danger Zone" #~ msgstr "Zona Perigosa" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "Escuro" @@ -996,7 +1018,7 @@ msgstr "Escuro" msgid "Dark mode" msgstr "Modo escuro" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "Modo Escuro" @@ -1004,7 +1026,7 @@ msgstr "Modo Escuro" msgid "Debug panel" msgstr "Painel de depuração" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "Excluir a conta" @@ -1017,8 +1039,8 @@ msgstr "Excluir a Conta" msgid "Delete app password" msgstr "Excluir senha de aplicativo" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Excluir Lista" @@ -1030,23 +1052,23 @@ msgstr "Excluir minha conta" #~ msgid "Delete my account…" #~ msgstr "Excluir minha conta…" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "Excluir minha conta…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Excluir post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Excluir este post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "ExcluĆ­do" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "Post excluĆ­do." @@ -1058,14 +1080,14 @@ msgid "Description" msgstr "Descrição" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Ferramentas de Desenvolvedor" +#~ msgid "Developer Tools" +#~ msgstr "Ferramentas de Desenvolvedor" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "VocĆŖ gostaria de dizer alguma coisa?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "Menos escuro" @@ -1086,9 +1108,13 @@ msgstr "Desencorajar aplicativos a mostrar minha conta para usuĆ”rios deslogados msgid "Discover new custom feeds" msgstr "Descubra novos feeds" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "Descubra novos feeds" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "Descubra novos feeds" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1102,7 +1128,7 @@ msgstr "Nome de Exibição" msgid "Domain verified!" msgstr "DomĆ­nio verificado!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "NĆ£o possui um convite?" @@ -1119,6 +1145,8 @@ msgctxt "action" msgid "Done" msgstr "Feito" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1127,7 +1155,9 @@ msgstr "Feito" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "Feito" @@ -1139,7 +1169,16 @@ msgstr "Feito{extraText}" msgid "Double tap to sign in" msgstr "Toque duas vezes para logar" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "Solte para adicionar imagens" @@ -1185,7 +1224,7 @@ msgstr "Editar" msgid "Edit image" msgstr "Editar imagem" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Editar detalhes da lista" @@ -1193,8 +1232,8 @@ msgstr "Editar detalhes da lista" msgid "Edit Moderation List" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Editar Meus Feeds" @@ -1203,15 +1242,15 @@ msgstr "Editar Meus Feeds" msgid "Edit my profile" msgstr "Editar meu perfil" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Editar perfil" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Editar Perfil" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Editar Feeds Salvos" @@ -1231,17 +1270,15 @@ msgstr "Editar sua descrição" msgid "Education" msgstr "Educação" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "E-mail" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "EndereƧo de e-mail" @@ -1258,7 +1295,7 @@ msgstr "E-mail Atualizado" msgid "Email verified" msgstr "E-mail verificado" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "E-mail:" @@ -1266,7 +1303,7 @@ msgstr "E-mail:" msgid "Enable {0} only" msgstr "Habilitar somente {0}" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "Habilitar ConteĆŗdo Adulto" @@ -1283,11 +1320,11 @@ msgstr "Habilitar MĆ­dia Externa" msgid "Enable media players for" msgstr "Habilitar mĆ­dia para" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Ative esta configuração para ver respostas apenas entre as pessoas que vocĆŖ segue." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "Fim do feed" @@ -1307,11 +1344,11 @@ msgstr "Digite o código recebido para alterar sua senha." msgid "Enter the domain you want to use" msgstr "Digite o domĆ­nio que vocĆŖ deseja usar" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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 "Digite o e-mail que vocĆŖ usou para criar a sua conta. Nós lhe enviaremos um \"código de redefinição\" para que vocĆŖ possa definir uma nova senha." -#: src/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "Insira seu aniversĆ”rio" @@ -1320,7 +1357,7 @@ msgstr "Insira seu aniversĆ”rio" msgid "Enter your email" msgstr "Digite seu e-mail" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Digite seu endereƧo de e-mail" @@ -1333,13 +1370,17 @@ msgid "Enter your new email address below." msgstr "Digite seu novo endereƧo de e-mail abaixo." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "Digite seu nĆŗmero de telefone" +#~ msgid "Enter your phone number" +#~ msgstr "Digite seu nĆŗmero de telefone" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Digite seu nome de usuĆ”rio e senha" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Erro:" @@ -1374,6 +1415,15 @@ msgstr "Expandir texto alternativo" msgid "Expand or collapse the full post you are replying to" msgstr "Mostrar ou esconder o post a que vocĆŖ estĆ” respondendo" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "MĆ­dia Externa" @@ -1383,13 +1433,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "PreferĆŖncias de MĆ­dia Externa" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "PreferĆŖncias de mĆ­dia externa" @@ -1402,7 +1452,7 @@ msgstr "NĆ£o foi possĆ­vel criar senha de aplicativo." msgid "Failed to create the list. Check your internet connection and try again." msgstr "NĆ£o foi possĆ­vel criar a lista. Por favor tente novamente." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "NĆ£o foi possĆ­vel excluir o post, por favor tente novamente." @@ -1411,15 +1461,15 @@ msgstr "NĆ£o foi possĆ­vel excluir o post, por favor tente novamente." msgid "Failed to load recommended feeds" msgstr "Falha ao carregar feeds recomendados" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Feed por {0}" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Feed offline" @@ -1427,18 +1477,19 @@ msgstr "Feed offline" msgid "Feed Preferences" msgstr "PreferĆŖncias de Feeds" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "ComentĆ”rios" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Feeds" @@ -1458,7 +1509,7 @@ msgstr "Os feeds sĆ£o criados por usuĆ”rios para curadoria de conteĆŗdo. Escolha msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Os feeds sĆ£o algoritmos personalizados que os usuĆ”rios com um pouco de experiĆŖncia em programação podem criar. <0/> para mais informaƧƵes." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "Feeds podem ser de assuntos especĆ­ficos tambĆ©m!" @@ -1484,9 +1535,13 @@ msgstr "Encontre usuĆ”rios com a ferramenta de busca Ć  direita" msgid "Finding similar accounts..." msgstr "Procurando contas semelhantes..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ajuste o conteĆŗdo que vocĆŖ vĆŖ na sua tela inicial." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ajuste o conteĆŗdo que vocĆŖ vĆŖ na sua tela inicial." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1509,21 +1564,24 @@ msgstr "Virar horizontalmente" msgid "Flip vertically" msgstr "Virar verticalmente" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "Seguir" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "Seguir" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "Seguir" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "Seguir Todas" @@ -1543,7 +1601,7 @@ msgstr "Seguido por {0}" msgid "Followed users" msgstr "UsuĆ”rios seguidos" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Somente usuĆ”rios seguidos" @@ -1555,16 +1613,24 @@ msgstr "seguiu vocĆŖ" msgid "Followers" msgstr "Seguidores" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Seguindo" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Seguindo {0}" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Segue vocĆŖ" @@ -1584,11 +1650,11 @@ msgstr "Por motivos de seguranƧa, precisamos enviar um código de confirmação msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Por motivos de seguranƧa, vocĆŖ nĆ£o poderĆ” ver esta senha novamente. Se vocĆŖ perder esta senha, terĆ” que gerar uma nova." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "Esqueci" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "Esqueci a senha" @@ -1597,7 +1663,7 @@ msgstr "Esqueci a senha" msgid "Forgot Password" msgstr "Esqueci a Senha" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "Por <0/>" @@ -1618,8 +1684,8 @@ msgstr "Vamos comeƧar" msgid "Go back" msgstr "Voltar" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1635,9 +1701,9 @@ msgstr "Voltar para o passo anterior" msgid "Go to @{queryMaybeHandle}" msgstr "Ir para @{queryMaybleHandle}" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1647,12 +1713,12 @@ msgstr "Próximo" msgid "Handle" msgstr "UsuĆ”rio" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "Precisa de ajuda?" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "Ajuda" @@ -1660,11 +1726,11 @@ msgstr "Ajuda" msgid "Here are some accounts for you to follow" msgstr "Aqui estĆ£o algumas contas para vocĆŖ seguir" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "Aqui estĆ£o alguns feeds de assuntos. VocĆŖ pode seguir quantos quiser." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "Aqui estĆ£o alguns feeds de assuntos baseados nos seus interesses: {interestsText}. VocĆŖ pode seguir quantos quiser." @@ -1673,19 +1739,19 @@ msgid "Here is your app password." msgstr "Aqui estĆ” a sua senha de aplicativo." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "Ocultar" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "Esconder" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Ocultar post" @@ -1694,7 +1760,7 @@ msgstr "Ocultar post" msgid "Hide the content" msgstr "Esconder o conteĆŗdo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Ocultar este post?" @@ -1702,7 +1768,7 @@ msgstr "Ocultar este post?" msgid "Hide user list" msgstr "Ocultar lista de usuĆ”rios" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Esconder posts de {0} no seu feed" @@ -1726,22 +1792,23 @@ msgstr "Hmm, o servidor do feed teve algum problema. Por favor, avise o criador msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, estamos com problemas para encontrar este feed. Ele pode ter sido excluĆ­do." -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "PĆ”gina Inicial" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "PreferĆŖncias da PĆ”gina Inicial" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "PreferĆŖncias da PĆ”gina Inicial" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "Provedor de hospedagem" @@ -1781,8 +1848,8 @@ msgstr "Imagem" msgid "Image alt text" msgstr "Texto alternativo da imagem" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "OpƧƵes de imagem" @@ -1794,11 +1861,11 @@ msgstr "Insira o código enviado para o seu e-mail para redefinir sua senha" msgid "Input confirmation code for account deletion" msgstr "Insira o código de confirmação para excluir sua conta" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "Insira o e-mail para a sua conta do Bluesky" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "Insira o convite para continuar" @@ -1815,56 +1882,55 @@ msgid "Input password for account deletion" msgstr "Insira a senha para excluir a conta" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "Insira o nĆŗmero de telefone para verificação via SMS" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "Insira o nĆŗmero de telefone para verificação via SMS" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "Insira a senha da conta {identifier}" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "Insira o usuĆ”rio ou e-mail que vocĆŖ cadastrou" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "Insira o código de verificação que enviamos para vocĆŖ" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "Insira o código de verificação que enviamos para vocĆŖ" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "Insira seu e-mail para entrar na lista de espera do Bluesky" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "Insira sua senha" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Insira o usuĆ”rio" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Post invĆ”lido" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "Credenciais invĆ”lidas" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Convidar" +#~ msgid "Invite" +#~ msgstr "Convidar" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Convide um Amigo" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "Convite" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 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." @@ -1873,8 +1939,8 @@ msgid "Invite codes: {0} available" msgstr "Convites: {0} disponĆ­veis" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "Convites: {invitesAvailable} disponĆ­vel" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "Convites: {invitesAvailable} disponĆ­vel" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1885,6 +1951,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "Mostra os posts de quem vocĆŖ segue conforme acontecem." #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Carreiras" @@ -1892,8 +1959,8 @@ msgstr "Carreiras" msgid "Join the waitlist" msgstr "Junte-se Ć  lista de espera" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "Junte-se Ć  lista de espera." @@ -1909,7 +1976,7 @@ msgstr "Jornalismo" msgid "Language selection" msgstr "Seleção de idioma" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "Configuração de Idioma" @@ -1918,7 +1985,7 @@ msgstr "Configuração de Idioma" msgid "Language Settings" msgstr "ConfiguraƧƵes de Idiomas" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Idiomas" @@ -1956,11 +2023,11 @@ msgstr "Deixe todos desmarcados para ver qualquer idioma." msgid "Leaving Bluesky" msgstr "Saindo do Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "na sua frente." -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, vocĆŖ precisa reiniciar o app agora." @@ -1973,16 +2040,17 @@ msgstr "Vamos redefinir sua senha!" msgid "Let's go!" msgstr "Vamos lĆ”!" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "Biblioteca" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "Claro" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "Curtir" @@ -1990,7 +2058,7 @@ msgstr "Curtir" msgid "Like this feed" msgstr "Curtir este feed" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "Curtido por" @@ -1999,7 +2067,7 @@ msgstr "Curtido por" msgid "Liked By" msgstr "Curtido Por" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Curtido por {0} {1}" @@ -2015,15 +2083,15 @@ msgstr "curtiram seu feed" msgid "liked your post" msgstr "curtiu seu post" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "Curtidas" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Curtidas neste post" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "Lista" @@ -2031,19 +2099,19 @@ msgstr "Lista" msgid "List Avatar" msgstr "Avatar da lista" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Lista bloqueada" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Lista por {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Lista excluĆ­da" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Lista silenciada" @@ -2051,35 +2119,35 @@ msgstr "Lista silenciada" msgid "List Name" msgstr "Nome da lista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Lista desbloqueada" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Lista dessilenciada" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Listas" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Carregar mais posts" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Carregar novas notificaƧƵes" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Carregar novos posts" @@ -2088,17 +2156,17 @@ msgid "Loading..." msgstr "Carregando..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Servidor de desenvolvimento local" +#~ msgid "Local dev server" +#~ msgstr "Servidor de desenvolvimento local" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "Registros" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "Sair" @@ -2114,7 +2182,15 @@ msgstr "Fazer login em uma conta que nĆ£o estĆ” listada" msgid "Make sure this is where you intend to go!" msgstr "Certifique-se de onde estĆ” indo!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "MĆ­dia" @@ -2137,14 +2213,14 @@ msgstr "Mensagem do servidor: {0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "Moderação" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Lista de moderação por {0}" @@ -2153,7 +2229,7 @@ msgstr "Lista de moderação por {0}" msgid "Moderation list by <0/>" msgstr "Lista de moderação por <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2176,7 +2252,7 @@ msgstr "Listas de moderação" msgid "Moderation Lists" msgstr "Listas de Moderação" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "Moderação" @@ -2184,17 +2260,17 @@ msgstr "Moderação" msgid "Moderator has chosen to set a general warning on the content." msgstr "O moderador escolheu um aviso geral neste conteĆŗdo." -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "Mais feeds" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Mais opƧƵes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Mais opƧƵes do post" @@ -2202,31 +2278,35 @@ msgstr "Mais opƧƵes do post" msgid "Most-liked replies first" msgstr "Respostas mais curtidas primeiro" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenciar Conta" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silenciar contas" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Lista de moderação" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Silenciar estas contas?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Silenciar esta lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silenciar thread" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Silenciada" @@ -2243,7 +2323,7 @@ msgstr "Contas Silenciadas" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Contas silenciadas nĆ£o aparecem no seu feed ou nas suas notificaƧƵes. Suas contas silenciadas sĆ£o completamente privadas." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar Ć© privado. Contas silenciadas podem interagir com vocĆŖ, mas vocĆŖ nĆ£o verĆ” postagens ou receber notificaƧƵes delas." @@ -2251,7 +2331,7 @@ msgstr "Silenciar Ć© privado. Contas silenciadas podem interagir com vocĆŖ, mas msgid "My Birthday" msgstr "Meu AniversĆ”rio" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "Meus Feeds" @@ -2259,10 +2339,14 @@ msgstr "Meus Feeds" msgid "My Profile" msgstr "Meu Perfil" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "Meus Feeds Salvos" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2276,15 +2360,15 @@ msgstr "Nome Ć© obrigatório" msgid "Nature" msgstr "Natureza" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "Navega para próxima tela" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "Navega para seu perfil" @@ -2323,16 +2407,17 @@ msgstr "Nova senha" msgid "New Password" msgstr "Nova Senha" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "Novo post" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Novo post" @@ -2354,10 +2439,10 @@ msgstr "Respostas mais recentes primeiro" msgid "News" msgstr "NotĆ­cias" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2375,10 +2460,10 @@ msgstr "Próximo" msgid "Next image" msgstr "Próxima imagem" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2389,7 +2474,7 @@ msgstr "NĆ£o" msgid "No description" msgstr "Sem descrição" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "VocĆŖ nĆ£o estĆ” mais seguindo {0}" @@ -2402,7 +2487,7 @@ msgstr "Nenhuma notificação!" msgid "No result" msgstr "Nenhum resultado" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" @@ -2425,6 +2510,7 @@ msgid "Not Applicable." msgstr "NĆ£o AplicĆ”vel." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "NĆ£o encontrado" @@ -2437,13 +2523,13 @@ msgstr "Agora nĆ£o" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky Ć© uma rede aberta e pĆŗblica. Esta configuração limita somente a visibilidade do seu conteĆŗdo no site e aplicativo do Bluesky, e outros aplicativos podem nĆ£o respeitar esta configuração. Seu conteĆŗdo ainda poderĆ” ser exibido para usuĆ”rios deslogados por outros aplicativos e sites." -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "NotificaƧƵes" @@ -2467,7 +2553,7 @@ msgstr "Ok" msgid "Oldest replies first" msgstr "Respostas mais antigas primeiro" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "Resetar tutoriais" @@ -2479,9 +2565,8 @@ msgstr "Uma ou mais imagens estĆ£o sem texto alternativo." msgid "Only {0} can reply." msgstr "Apenas {0} pode responder." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "Opa!" @@ -2494,15 +2579,15 @@ msgstr "Abrir" msgid "Open emoji picker" msgstr "Abrir seletor de emojis" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "Abrir links no navegador interno" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Abrir navegação" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "Abre o storybook" @@ -2526,7 +2611,7 @@ msgstr "Abre a cĆ¢mera do dispositivo" msgid "Opens composer" msgstr "Abre o editor de post" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "Abre definiƧƵes de idioma configurĆ”veis" @@ -2534,33 +2619,31 @@ msgstr "Abre definiƧƵes de idioma configurĆ”veis" msgid "Opens device photo gallery" msgstr "Abre a galeria de fotos do dispositivo" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Abre o editor de nome, avatar, banner e descrição do perfil" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "Abre as configuraƧƵes de anexos externos" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Abre lista de seguidores" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Abre lista de seguidos" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "Abre lista de convites" +#~ msgid "Opens invite code list" +#~ msgstr "Abre lista de convites" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "Abre a lista de códigos de convite" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "Abre modal para confirmar exclusĆ£o de conta. Requer código de verificação." @@ -2568,39 +2651,39 @@ msgstr "Abre modal para confirmar exclusĆ£o de conta. Requer código de verifica msgid "Opens modal for using custom domain" msgstr "Abre modal para usar o domĆ­nio personalizado" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "Abre configuraƧƵes de moderação" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "Abre o formulĆ”rio de redefinição de senha" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "Abre a tela para editar feeds salvos" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "Abre a tela com todos os feeds salvos" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "Abre a pĆ”gina de configuraƧƵes de senha do aplicativo" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "Abre as preferĆŖncias do feed inicial" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "Abre a pĆ”gina do storybook" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "Abre a pĆ”gina de log do sistema" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "Abre as preferĆŖncias de threads" @@ -2617,8 +2700,8 @@ msgid "Other account" msgstr "Outra conta" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Outro serviƧo" +#~ msgid "Other service" +#~ msgstr "Outro serviƧo" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2632,9 +2715,9 @@ msgstr "PĆ”gina nĆ£o encontrada" msgid "Page Not Found" msgstr "PĆ”gina NĆ£o Encontrada" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2648,11 +2731,11 @@ msgstr "Senha atualizada" msgid "Password updated!" msgstr "Senha atualizada!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" @@ -2669,15 +2752,15 @@ msgid "Pets" msgstr "Pets" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "NĆŗmero de telefone" +#~ msgid "Phone number" +#~ msgstr "NĆŗmero de telefone" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Fixar na tela inicial" @@ -2698,14 +2781,18 @@ msgstr "Reproduzir VĆ­deo" msgid "Plays the GIF" msgstr "Reproduz o GIF" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Por favor, escolha seu usuĆ”rio." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Por favor, escolha sua senha." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Por favor, confirme seu e-mail antes de alterĆ”-lo. Este Ć© um requisito temporĆ”rio enquanto ferramentas de atualização de e-mail sĆ£o adicionadas, e em breve serĆ” removido." @@ -2715,22 +2802,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Por favor, insira um nome para a sua Senha de Aplicativo." #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "Por favor, insira um nĆŗmero de telefone que possa receber mensagens SMS." +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "Por favor, insira um nĆŗmero de telefone que possa receber mensagens SMS." #: src/view/com/modals/AddAppPasswords.tsx:145 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/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "Por favor, digite o código recebido via SMS." +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "Por favor, digite o código recebido via SMS." #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "Por favor, digite o código de verificação enviado para {phoneNumberFormatted}." +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "Por favor, digite o código de verificação enviado para {phoneNumberFormatted}." -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Por favor, digite o seu e-mail." @@ -2770,26 +2857,26 @@ msgctxt "action" msgid "Post" msgstr "Postar" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "Post por @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Post excluĆ­do" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "Post oculto" @@ -2801,11 +2888,11 @@ msgstr "Idioma do post" msgid "Post Languages" msgstr "Idiomas do Post" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "Post nĆ£o encontrado" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "Posts" @@ -2829,27 +2916,27 @@ msgstr "Idioma Principal" msgid "Prioritize Your Follows" msgstr "Priorizar seus Seguidores" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "Privacidade" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "PolĆ­tica de Privacidade" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "Processando..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "Perfil" @@ -2857,7 +2944,7 @@ msgstr "Perfil" msgid "Profile updated" msgstr "Perfil atualizado" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "Proteja a sua conta verificando o seu e-mail." @@ -2914,12 +3001,12 @@ msgstr "UsuĆ”rios Recomendados" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Remover" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Remover {0} dos meus feeds?" @@ -2932,11 +3019,11 @@ msgstr "Remover conta" msgid "Remove feed" msgstr "Remover feed" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" @@ -2952,7 +3039,7 @@ msgstr "Remover visualização da imagem" msgid "Remove repost" msgstr "Desfazer repost" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Remover este feed dos meus feeds?" @@ -2965,8 +3052,8 @@ msgstr "Remover este feed dos feeds salvos?" msgid "Removed from list" msgstr "Removido da lista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Remover dos meus feeds" @@ -2974,7 +3061,7 @@ msgstr "Remover dos meus feeds" msgid "Removes default thumbnail from {0}" msgstr "Remover miniatura de {0}" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "Respostas" @@ -2987,12 +3074,12 @@ msgctxt "action" msgid "Reply" msgstr "Responder" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtros de Resposta" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Responder <0/>" @@ -3001,20 +3088,20 @@ msgstr "Responder <0/>" msgid "Report {collectionName}" msgstr "Denunciar {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Denunciar Conta" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Denunciar feed" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Denunciar Lista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Denunciar post" @@ -3039,11 +3126,11 @@ msgstr "Repostar ou citar um post" msgid "Reposted By" msgstr "Repostado Por" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "Repostado por {0}" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Repostado por <0/>" @@ -3051,7 +3138,7 @@ msgstr "Repostado por <0/>" msgid "reposted your post" msgstr "repostou seu post" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Reposts" @@ -3061,19 +3148,19 @@ msgid "Request Change" msgstr "Solicitar Alteração" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "Solicitar código" +#~ msgid "Request code" +#~ msgstr "Solicitar código" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "Solicitar Código" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "Exigir texto alternativo antes de postar" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Obrigatório para este provedor" @@ -3086,66 +3173,65 @@ msgstr "Código de redefinição" msgid "Reset Code" msgstr "Código de Redefinição" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "Redefinir tutoriais" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "Redefinir tutoriais" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "Redefinir senha" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "Redefinir configuraƧƵes" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "Redefinir configuraƧƵes" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "Redefine tutoriais" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "Redefine as configuraƧƵes" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "Tenta entrar novamente" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "Tenta a Ćŗltima ação, que deu erro" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Tente novamente" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "Tentar novamente." +#~ msgid "Retry." +#~ msgstr "Tentar novamente." #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "Voltar para pĆ”gina anterior" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "SANDBOX. Posts e contas nĆ£o sĆ£o permanentes." +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "SANDBOX. Posts e contas nĆ£o sĆ£o permanentes." #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3158,7 +3244,7 @@ msgstr "Salvar" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Salvar" @@ -3198,11 +3284,11 @@ msgstr "CiĆŖncia" msgid "Scroll to top" msgstr "Ir para o topo" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3210,8 +3296,8 @@ msgstr "Ir para o topo" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Buscar" @@ -3243,8 +3329,8 @@ msgid "Select {item}" msgstr "Selecionar {item}" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Selecionar Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "Selecionar Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3254,8 +3340,8 @@ msgstr "Selecionar de uma conta existente" msgid "Select option {i} of {numItems}" msgstr "Seleciona opção {i} de {numItems}" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "Selecionar serviƧo" @@ -3263,11 +3349,15 @@ msgstr "Selecionar serviƧo" msgid "Select some accounts below to follow" msgstr "Selecione algumas contas para seguir" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "Selecione os tipos de conteĆŗdo que vocĆŖ quer (ou nĆ£o) ver, e cuidaremos do resto." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "Selecione feeds de assuntos para seguir" @@ -3288,8 +3378,8 @@ msgid "Select your interests from the options below" msgstr "Selecione seus interesses" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "Selecione o paĆ­s do nĆŗmero de telefone" +#~ msgid "Select your phone's country" +#~ msgstr "Selecione o paĆ­s do nĆŗmero de telefone" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3299,7 +3389,7 @@ msgstr "Selecione seu idioma preferido para as traduƧƵes no seu feed." msgid "Select your primary algorithmic feeds" msgstr "Selecione seus feeds primĆ”rios" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "Selecione seus feeds secundĆ”rios" @@ -3317,8 +3407,8 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar E-mail" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "Enviar comentĆ”rios" @@ -3330,33 +3420,37 @@ msgstr "Denunciar" msgid "Sends email with confirmation code for account deletion" msgstr "Envia o e-mail com o código de confirmação para excluir a conta" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "Definir {value} para o filtro de moderação {labelGroup}" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "Definir Idade" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "Definir o tema de cor para escuro" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "Definir o tema de cor para claro" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "Definir o tema para acompanhar o sistema" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "Definir o tema escuro para o padrĆ£o" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "Definir o tema escuro para a versĆ£o menos escura" @@ -3364,19 +3458,19 @@ msgstr "Definir o tema escuro para a versĆ£o menos escura" msgid "Set new password" msgstr "Definir uma nova senha" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "Definir senha" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Defina esta configuração como \"NĆ£o\" para ocultar todas as citaƧƵes do seu feed. Reposts ainda serĆ£o visĆ­veis." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Defina esta configuração como \"NĆ£o\" para ocultar todas as respostas do seu feed." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Defina esta configuração como \"NĆ£o\" para ocultar todos os reposts do seu feed." @@ -3385,8 +3479,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Defina esta configuração como \"Sim\" para mostrar respostas em uma visualização de thread. Este Ć© um recurso experimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Defina esta configuração como \"Sim\" para mostrar amostras de seus feeds salvos na sua pĆ”gina inicial. Este Ć© um recurso experimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Defina esta configuração como \"Sim\" para mostrar amostras de seus feeds salvos na sua pĆ”gina inicial. Este Ć© um recurso experimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3396,24 +3494,24 @@ msgstr "Configure sua conta" msgid "Sets Bluesky username" msgstr "Configura o usuĆ”rio no Bluesky" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "Configura o e-mail para recuperação de senha" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "Configura o provedor de hospedagem para recuperação de senha" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "Configura o servidor para o cliente do Bluesky" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "ConfiguraƧƵes" @@ -3426,25 +3524,25 @@ msgctxt "action" msgid "Share" msgstr "Compartilhar" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Compartilhar" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Compartilhar feed" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "Mostrar" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Mostrar todas as respostas" @@ -3456,21 +3554,21 @@ msgstr "Mostrar mesmo assim" msgid "Show embeds from {0}" msgstr "Mostrar anexos de {0}" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Mostrar usuĆ”rios parecidos com {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Mostrar Mais" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostrar Posts dos Meus Feeds" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostrar CitaƧƵes" @@ -3486,7 +3584,7 @@ msgstr "Mostrar citaƧƵes no Seguindo" msgid "Show re-posts in Following feed" msgstr "Mostrar reposts no feed Seguindo" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostrar Respostas" @@ -3502,11 +3600,11 @@ msgstr "Mostrar respostas no Seguindo" msgid "Show replies in Following feed" msgstr "Mostrar respostas no feed Seguindo" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Mostrar respostas com ao menos {0} {value}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostrar Reposts" @@ -3523,17 +3621,18 @@ msgstr "Mostrar conteĆŗdo" msgid "Show users" msgstr "Mostrar usuĆ”rios" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Mostra uma lista de usuĆ”rios parecidos com este" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Mostra posts de {0} no seu feed" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3546,8 +3645,8 @@ msgid "Sign in" msgstr "Fazer login" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Fazer Login" @@ -3560,14 +3659,14 @@ msgstr "Fazer login como {0}" msgid "Sign in as..." msgstr "Fazer login como..." -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Fazer login" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "Sair" @@ -3591,7 +3690,7 @@ msgstr "Inscreva-se ou faƧa login para se juntar Ć  conversa" msgid "Sign-in Required" msgstr "Ɖ NecessĆ”rio Fazer Login" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "Entrou como" @@ -3604,7 +3703,7 @@ msgid "Signs {0} out of Bluesky" msgstr "Desloga a conta {0}" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "Pular" @@ -3614,22 +3713,22 @@ msgid "Skip this flow" msgstr "Pular" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "Verificação por SMS" +#~ msgid "SMS verification" +#~ msgstr "Verificação por SMS" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "Desenvolvimento de software" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "Algo deu errado e meio que nĆ£o sabemos o que houve." +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "Algo deu errado e meio que nĆ£o sabemos o que houve." #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "Algo deu errado. Verifique seu e-mail e tente novamente." -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "Opa! Sua sessĆ£o expirou. Por favor, entre novamente." @@ -3650,10 +3749,10 @@ msgid "Square" msgstr "Quadrado" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "Staging" +#~ msgid "Staging" +#~ msgstr "Staging" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "PĆ”gina de status" @@ -3661,12 +3760,12 @@ msgstr "PĆ”gina de status" msgid "Step {0} of {numSteps}" msgstr "Passo {0} de {numSteps}" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, vocĆŖ precisa reiniciar o app agora." -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "Storybook" @@ -3674,7 +3773,7 @@ msgstr "Storybook" msgid "Submit" msgstr "Enviar" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Inscrever-se" @@ -3683,7 +3782,7 @@ msgstr "Inscrever-se" msgid "Subscribe to the {0} feed" msgstr "Increver-se no feed {0}" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Inscreva-se nesta lista" @@ -3699,35 +3798,35 @@ msgstr "Sugeridos para vocĆŖ" msgid "Suggestive" msgstr "Sugestivo" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "Suporte" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "Deslize para cima para ver mais" +#~ msgid "Swipe up to see more" +#~ msgstr "Deslize para cima para ver mais" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "Alterar Conta" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "Trocar para {0}" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "Troca a conta que vocĆŖ estĆ” logado" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "Log do sistema" @@ -3743,14 +3842,14 @@ msgstr "Toque para ver tudo" msgid "Tech" msgstr "Tecnologia" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Termos de ServiƧo" @@ -3759,7 +3858,11 @@ msgstr "Termos de ServiƧo" msgid "Text input field" msgstr "Campo de entrada de texto" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderĆ” interagir com vocĆŖ após o desbloqueio." @@ -3775,7 +3878,7 @@ msgstr "A PolĆ­tica de Direitos Autorais foi movida para <0/>" msgid "The following steps will help customize your Bluesky experience." msgstr "Os seguintes passos vĆ£o ajudar a customizar sua experiĆŖncia no Bluesky." -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "O post pode ter sido excluĆ­do." @@ -3791,11 +3894,11 @@ msgstr "O formulĆ”rio de suporte foi movido. Se precisar de ajuda, <0/> ou visit msgid "The Terms of Service have been moved to" msgstr "Os Termos de ServiƧo foram movidos para" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "Temos vĆ”rios feeds para vocĆŖ experimentar:" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua conexĆ£o com a internet e tente novamente." @@ -3803,12 +3906,12 @@ msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua cone msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conexĆ£o com a internet e tente novamente." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Tivemos um problema ao atualizar seus feeds, por favor verifique sua conexĆ£o com a internet e tente novamente." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3817,9 +3920,9 @@ msgstr "Tivemos um problema ao contatar o servidor deste feed" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Tivemos um problema ao contatar o servidor deste feed" @@ -3849,19 +3952,21 @@ msgstr "Tivemos um problema ao sincronizar suas configuraƧƵes" msgid "There was an issue with fetching your app passwords" msgstr "Tivemos um problema ao carregar suas senhas de app." -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Tivemos um problema! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Tivemos algum problema. Por favor verifique sua conexĆ£o com a internet e tente novamente." @@ -3869,13 +3974,13 @@ msgstr "Tivemos algum problema. Por favor verifique sua conexĆ£o com a internet msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Houve um problema inesperado no aplicativo. Por favor, deixe-nos saber se isso aconteceu com vocĆŖ!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Muitos usuĆ”rios estĆ£o tentando acessar o Bluesky! Ativaremos sua conta assim que possĆ­vel." #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "Houve um problema com este nĆŗmero. Por favor, escolha um paĆ­s e digite seu nĆŗmero de telefone completo!" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "Houve um problema com este nĆŗmero. Por favor, escolha um paĆ­s e digite seu nĆŗmero de telefone completo!" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3901,13 +4006,17 @@ msgstr "Este conteĆŗdo nĆ£o estĆ” disponĆ­vel porque um dos usuĆ”rios bloqueou o msgid "This content is not viewable without a Bluesky account." msgstr "Este conteĆŗdo nĆ£o Ć© visĆ­vel sem uma conta do Bluesky." +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Este feed estĆ” recebendo muito trĆ”fego e estĆ” temporariamente indisponĆ­vel. Por favor, tente novamente mais tarde." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Este feed estĆ” vazio!" @@ -3935,7 +4044,7 @@ msgstr "Esta lista estĆ” vazia!" msgid "This name is already in use" msgstr "VocĆŖ jĆ” tem uma senha com esse nome" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Este post foi excluĆ­do." @@ -3959,12 +4068,12 @@ msgstr "Este usuĆ”rio estĆ” incluĆ­do na lista <0/>, que vocĆŖ silenciou." msgid "This warning is only available for posts with media attached." msgstr "Este aviso só estĆ” disponĆ­vel para publicaƧƵes com mĆ­dia anexada." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Isso ocultarĆ” este post de seus feeds." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "PreferĆŖncias das Threads" @@ -3972,7 +4081,7 @@ msgstr "PreferĆŖncias das Threads" msgid "Threaded Mode" msgstr "Visualização de Threads" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "PreferĆŖncias das Threads" @@ -3984,45 +4093,45 @@ msgstr "Alternar menu suspenso" msgid "Transformations" msgstr "TransformaƧƵes" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Traduzir" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "Tentar novamente" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Desbloquear lista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Dessilenciar lista" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "NĆ£o foi possĆ­vel entrar em contato com seu serviƧo. Por favor, verifique sua conexĆ£o Ć  internet." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Desbloquear" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Desbloquear Conta" @@ -4038,40 +4147,41 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "Infelizmente, vocĆŖ nĆ£o atende aos requisitos para criar uma conta." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "Descurtir" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Dessilenciar" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Dessilenciar conta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Dessilenciar thread" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Desafixar" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Remover" @@ -4114,8 +4224,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "Use esta senha para entrar no outro aplicativo juntamente com seu identificador." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "Use seu domĆ­nio como o provedor de serviƧo do Bluesky" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "Use seu domĆ­nio como o provedor de serviƧo do Bluesky" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4133,11 +4243,11 @@ msgstr "UsuĆ”rio Bloqueado Por Lista" msgid "User Blocks You" msgstr "Este UsuĆ”rio Te Bloqueou" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "UsuĆ”rio" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Lista de usuĆ”rios por {0}" @@ -4146,7 +4256,7 @@ msgstr "Lista de usuĆ”rios por {0}" msgid "User list by <0/>" msgstr "Lista de usuĆ”rios por <0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4164,8 +4274,8 @@ msgstr "Lista de usuĆ”rios atualizada" msgid "User Lists" msgstr "Listas de UsuĆ”rios" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Nome de usuĆ”rio ou endereƧo de e-mail" @@ -4182,18 +4292,18 @@ msgid "Users in \"{0}\"" msgstr "UsuĆ”rios em \"{0}\"" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "Código de verificação" +#~ msgid "Verification code" +#~ msgstr "Código de verificação" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "Verificar e-mail" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "Verificar meu e-mail" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "Verificar Meu Email" @@ -4210,7 +4320,7 @@ msgstr "Verificar Seu E-mail" msgid "Video Games" msgstr "Games" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" @@ -4235,15 +4345,15 @@ msgid "Visit Site" msgstr "Visitar Site" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "Avisar" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "TambĆ©m recomendamos o \"For You\", do Skygaze:" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos que sua conta estarĆ” pronta em mais ou menos {estimatedTime}." @@ -4259,7 +4369,7 @@ msgstr "NĆ£o temos mais posts de quem vocĆŖ segue. Aqui estĆ£o os mais novos de #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "Recomendamos o \"Para vocĆŖ\", do Skygaze:" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "Recomendamos nosso feed \"Discover\":" @@ -4267,7 +4377,7 @@ msgstr "Recomendamos nosso feed \"Discover\":" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "NĆ£o conseguimos conectar. Por favor, tente novamente para continuar configurando a sua conta. Se continuar falhando, vocĆŖ pode pular este fluxo." -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "Avisaremos quando sua conta estiver pronta." @@ -4279,11 +4389,11 @@ msgstr "Avaliaremos sua contestação o quanto antes." msgid "We'll use this to help customize your experience." msgstr "Usaremos isto para customizar a sua experiĆŖncia." -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Estamos muito felizes em recebĆŖ-lo!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, contate o criador da lista: @{handleOrDid}." @@ -4307,7 +4417,7 @@ msgstr "Do que vocĆŖ gosta?" msgid "What is the issue with this {collectionName}?" msgstr "Qual Ć© o problema com este {collectionName}?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "E aĆ­?" @@ -4343,14 +4453,14 @@ msgid "Writers" msgstr "Escritores" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "XXXXXX" +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4360,7 +4470,7 @@ msgstr "Sim" #~ msgid "You are in control" #~ msgstr "VocĆŖ estĆ” no controle" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "VocĆŖ estĆ” na fila." @@ -4390,7 +4500,7 @@ msgstr "VocĆŖ ainda nĆ£o tem nenhum convite! Nós lhe enviaremos alguns quando v msgid "You don't have any pinned feeds." msgstr "VocĆŖ nĆ£o tem feeds fixados." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "VocĆŖ nĆ£o tem feeds salvos!" @@ -4398,7 +4508,7 @@ msgstr "VocĆŖ nĆ£o tem feeds salvos!" msgid "You don't have any saved feeds." msgstr "VocĆŖ nĆ£o tem feeds salvos." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "VocĆŖ bloqueou esta conta ou foi bloqueado por ela." @@ -4438,7 +4548,7 @@ msgstr "VocĆŖ ainda nĆ£o criou nenhuma senha de aplicativo. VocĆŖ pode criar uma msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "VocĆŖ ainda nĆ£o silenciou nenhuma conta. Para silenciar uma conta, acesse um perfil e selecione \"Silenciar conta\" no menu." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "VocĆŖ precisa ser maior de idade para habilitar conteĆŗdo adulto." @@ -4446,11 +4556,11 @@ msgstr "VocĆŖ precisa ser maior de idade para habilitar conteĆŗdo adulto." msgid "You must be 18 years or older to enable adult content" msgstr "VocĆŖ precisa ser maior de idade para habilitar conteĆŗdo adulto." -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "VocĆŖ nĆ£o vai mais receber notificaƧƵes desta thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "VocĆŖ vai receber notificaƧƵes desta thread" @@ -4462,9 +4572,9 @@ msgstr "VocĆŖ receberĆ” um e-mail com um \"código de redefinição\". Digite es msgid "You're in control" msgstr "VocĆŖ estĆ” no controle" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "VocĆŖ estĆ” na fila" @@ -4476,7 +4586,7 @@ msgstr "Tudo pronto!" 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/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "Sua conta" @@ -4484,7 +4594,11 @@ msgstr "Sua conta" msgid "Your account has been deleted" msgstr "Sua conta foi excluĆ­da" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "Sua data de nascimento" @@ -4496,7 +4610,7 @@ msgstr "Sua escolha serĆ” salva, mas vocĆŖ pode trocĆ”-la nas configuraƧƵes de msgid "Your default feed is \"Following\"" msgstr "Seu feed inicial Ć© o \"Seguindo\"" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4518,7 +4632,7 @@ msgstr "Seu e-mail ainda nĆ£o foi verificado. Esta Ć© uma etapa importante de se msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Seu feed inicial estĆ” vazio! Siga mais usuĆ”rios para acompanhar o que estĆ” acontecendo." -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Seu identificador completo serĆ”" @@ -4529,8 +4643,8 @@ msgstr "Seu usuĆ”rio completo serĆ” <0>@{0}" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Seus códigos de convite estĆ£o ocultos quando conectado com uma Senha do Aplicativo" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Seus códigos de convite estĆ£o ocultos quando conectado com uma Senha do Aplicativo" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4547,7 +4661,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Suas postagens, curtidas e bloqueios sĆ£o pĆŗblicos. Silenciamentos sĆ£o privados." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "Seu perfil" @@ -4555,6 +4669,6 @@ msgstr "Seu perfil" msgid "Your reply has been published" msgstr "Sua resposta foi publicada" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Seu identificador de usuĆ”rio" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 925ea9850c..169b1feb78 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -31,8 +31,8 @@ msgid "(no email)" msgstr "" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {Š”Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ # коГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń} few {Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ # коГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń} other {Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ # коГів Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {Š”Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ # коГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń} few {Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ # коГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń} other {Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ # коГів Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń}}" #: src/view/com/modals/CreateOrEditList.tsx:185 #: src/view/screens/Settings.tsx:294 @@ -43,29 +43,29 @@ msgstr "{0, plural, one {Š”Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ # коГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń} few { #~ msgid "{0} {purposeLabel} List" #~ msgstr "{0} Дписок {purposeLabel}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {КоГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½ŃŒ: Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾ #} other {КоГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½ŃŒ: Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾ #}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {КоГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½ŃŒ: Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾ #} other {КоГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½ŃŒ: Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾ #}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "Š”Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ коГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "Š”Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ коГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ {invitesAvailable} коГів Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ {invitesAvailable} коГів Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń" #: src/view/screens/Search/Search.tsx:87 #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "<0/> members" msgstr "<0/> ŃƒŃ‡Š°ŃŠ½ŠøŠŗŃ–Š²" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "" @@ -105,7 +105,7 @@ msgstr "<0>ŠŸŃ–Š“ŠæŠøŃˆŃ–Ń‚ŃŒŃŃ на Š“ŠµŃŠŗŠøŃ… <1>рекоменГов msgid "<0>Welcome to<1>Bluesky" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "" @@ -122,26 +122,26 @@ msgstr "Š”Š¾ŃŃ‚ŃƒŠæŠ½Š° нова Š²ŠµŃ€ŃŃ–я. Š‘ŃƒŠ“ŃŒ ласка, онові msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "Š”Š¾ŃŃ‚ŃƒŠæŠ½Ń–ŃŃ‚ŃŒ" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "ŠžŠ±Š»Ń–ŠŗŠ¾Š²ŠøŠ¹ запис" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -161,11 +161,11 @@ msgstr "ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Šø облікового запису" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -184,8 +184,8 @@ msgstr "ДоГати ŠæŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń про вміст" msgid "Add a user to this list" msgstr "ДоГати ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° Го списку" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "ДоГати обліковий запис" @@ -222,12 +222,12 @@ msgstr "ДоГати попереГній ŠæŠµŃ€ŠµŠ³Š»ŃŠ“:" msgid "Add the following DNS record to your domain:" msgstr "ДоГайте Š½Š°ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ DNS-запис Го вашого Гомену:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ДоГати Го списку" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ДоГати Го моїх стрічок" @@ -240,11 +240,11 @@ msgstr "" msgid "Added to list" msgstr "ДоГано Го списку" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ¹Ń‚Šµ Š¼Ń–Š½Ń–Š¼Š°Š»ŃŒŠ½Ńƒ ŠŗŃ–Š»ŃŒŠŗŃ–ŃŃ‚ŃŒ впоГобань Š“Š»Ń того щоб Š²Ń–Š“ŠæŠ¾Š²Ń–Š“ŃŒ Š²Ń–Š“Š¾Š±Ń€Š°Š·ŠøŠ»Š°ŃŃ у Š²Š°ŃˆŃ–Š¹ стрічці." @@ -252,7 +252,7 @@ msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ¹Ń‚Šµ Š¼Ń–Š½Ń–Š¼Š°Š»ŃŒŠ½Ńƒ ŠŗŃ–Š»ŃŒŠŗŃ–ŃŃ‚ŃŒ впоГо msgid "Adult Content" msgstr "Вміст Š“Š»Ń Горослих" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "" @@ -260,11 +260,15 @@ msgstr "" #~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." #~ msgstr "" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "Š Š¾Š·ŃˆŠøŃ€ŠµŠ½Ń–" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "" @@ -323,7 +327,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "" @@ -331,13 +335,13 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "ŠŸŠ°Ń€Š¾Š»Ń– Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃ–Š²" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "ŠŸŠ°Ń€Š¾Š»Ń– Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃ–Š²" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ŠžŃŠŗŠ°Ń€Š¶ŠøŃ‚Šø ŠæŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń про вміст" @@ -357,7 +361,7 @@ msgstr "ŠžŃŠŗŠ°Ń€Š¶ŠøŃ‚Šø це Ń€Ń–ŃˆŠµŠ½Š½Ń" msgid "Appeal this decision." msgstr "ŠžŃŠŗŠ°Ń€Š¶ŠøŃ‚Šø це Ń€Ń–ŃˆŠµŠ½Š½Ń" -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "ŠžŃ„Š¾Ń€Š¼Š»ŠµŠ½Š½Ń" @@ -373,11 +377,11 @@ msgstr "Š’Šø Гійсно хочете виГалити ŠæŠ°Ń€Š¾Š»ŃŒ Š“Š»Ń за msgid "Are you sure you'd like to discard this draft?" msgstr "Š’Šø Гійсно бажаєте виГалити цю Ń‡ŠµŃ€Š½ŠµŃ‚ŠŗŃƒ?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Š’Šø впевнені?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Š’Šø впевнені? Це не можна буГе ŃŠŗŠ°ŃŃƒŠ²Š°Ń‚Šø." @@ -397,21 +401,21 @@ msgstr "Š„ŃƒŠ“Š¾Š¶Š½Ń або нееротична Š¾Š³Š¾Š»ŠµŠ½Ń–ŃŃ‚ŃŒ." #~ msgid "Ask apps to limit the visibility of my account" #~ msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ŠŠ°Š·Š°Š“" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "" @@ -420,42 +424,42 @@ msgstr "" msgid "Based on your interest in {interestsText}" msgstr "" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "ŠžŃŠ½Š¾Š²Š½Ń–" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "Дата Š½Š°Ń€Š¾Š“Š¶ŠµŠ½Š½Ń" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "Дата Š½Š°Ń€Š¾Š“Š¶ŠµŠ½Š½Ń:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Š—Š°Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Š—Š°Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø облікові записи" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Š—Š°Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø список" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Š—Š°Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø ці облікові записи?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -468,7 +472,7 @@ msgstr "Заблоковані облікові записи" msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблоковані облікові записи не Š¼Š¾Š¶ŃƒŃ‚ŃŒ вам віГповіГати, Š·Š³Š°Š“ŃƒŠ²Š°Ń‚Šø вас у своїх постах, і Š²Š·Š°Ń”Š¼Š¾Š“Ń–ŃŃ‚Šø Š· вами буГь-ŃŠŗŠøŠ¼ Ń–Š½ŃˆŠøŠ¼ чином." @@ -476,22 +480,29 @@ msgstr "Заблоковані облікові записи не Š¼Š¾Š¶ŃƒŃ‚ŃŒ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Заблоковані облікові записи не Š¼Š¾Š¶ŃƒŃ‚ŃŒ вам віГповіГати, Š·Š³Š°Š“ŃƒŠ²Š°Ń‚Šø вас у своїх постах, і Š²Š·Š°Ń”Š¼Š¾Š“Ń–ŃŃ‚Šø Š· вами буГь-ŃŠŗŠøŠ¼ Ń–Š½ŃˆŠøŠ¼ чином. Š’Šø не Š±ŃƒŠ“ете бачити їхні пости і вони не Š±ŃƒŠ“ŃƒŃ‚ŃŒ бачити Š²Š°ŃˆŃ–." -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "Заблокований пост." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Š‘Š»Š¾ŠŗŃƒŠ²Š°Š½Š½Ń - це віГкрита Ń–Š½Ń„Š¾Ń€Š¼Š°Ń†Ń–Ń. Заблоковані ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń– не Š¼Š¾Š¶ŃƒŃ‚ŃŒ віГповісти у Š²Š°ŃˆŠøŃ… темах, Š·Š³Š°Š“ŃƒŠ²Š°Ń‚Šø вас або Ń–Š½ŃˆŠøŠ¼ чином Š²Š·Š°Ń”Š¼Š¾Š“Ń–ŃŃ‚Šø Š· вами." #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "Блог" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -516,24 +527,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "Bluesky не буГе ŠæŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø ваш ŠæŃ€Š¾Ń„Ń–Š»ŃŒ і ŠæŠ¾Š²Ń–Š“Š¾Š¼Š»ŠµŠ½Š½Ń Š²Ń–Š“Š²Ń–Š“ŃƒŠ²Š°Ń‡Š°Š¼ без облікового запису. Š†Š½ŃˆŃ– Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŠø Š¼Š¾Š¶ŃƒŃ‚ŃŒ не ŃŠ»Ń–Š“ŃƒŠ²Š°Ń‚Šø Ń†ŃŒŠ¾Š¼Ńƒ Š·Š°ŠæŠøŃ‚Ńƒ. Це не Ń€Š¾Š±ŠøŃ‚ŃŒ ваш обліковий запис приватним." #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "Š’ŠµŃ€ŃŃ–Ń {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "ŠžŃ€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -552,8 +564,8 @@ msgid "by you" msgstr "" #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "ŠšŠ°Š¼ŠµŃ€Š°" @@ -561,7 +573,7 @@ msgstr "ŠšŠ°Š¼ŠµŃ€Š°" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Може містити лише літери, цифри, пробіли, Гефіси та знаки ŠæŃ–Š“ŠŗŃ€ŠµŃŠ»ŠµŠ½Š½Ń, і мати Говжину віГ 4 Го 32 символів." -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -625,7 +637,7 @@ msgstr "Š”ŠŗŠ°ŃŃƒŠ²Š°Ń‚Šø пошук" msgid "Cancel waitlist signup" msgstr "Š”ŠŗŠ°ŃŃƒŠ²Š°Ń‚Šø запис у Ń‡ŠµŃ€Š³Ńƒ Š¾Ń‡Ń–ŠŗŃƒŠ²Š°Š½Š½Ń" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "" @@ -634,12 +646,12 @@ msgstr "" #~ msgid "Change" #~ msgstr "Змінити" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "Змінити псевГонім" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "Змінити псевГонім" @@ -647,11 +659,11 @@ msgstr "Змінити псевГонім" msgid "Change my email" msgstr "Змінити Š°Š“Ń€ŠµŃŃƒ електронної ŠæŠ¾ŃˆŃ‚Šø" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "" @@ -659,7 +671,7 @@ msgstr "" msgid "Change post language to {0}" msgstr "" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "" @@ -667,8 +679,8 @@ msgstr "" msgid "Change Your Email" msgstr "Змінити Š°Š“Ń€ŠµŃŃƒ електронної ŠæŠ¾ŃˆŃ‚Šø" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "" @@ -688,11 +700,11 @@ msgstr "ŠŸŠ¾ŃˆŃƒŠŗŠ°Š¹Ń‚Šµ у Š²Š°ŃˆŃ–Š¹ ŠæŠ¾ŃˆŃ‚Š¾Š²Ń–Š¹ ŃŠŗŃ€ŠøŠ½ŃŒŃ†Ń– ли msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "Š’ŠøŠ±ŠµŃ€Ń–Ń‚ŃŒ \"Усі\" або \"ŠŃ–Ń…Ń‚Š¾\"" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "ŠžŠ±ŠµŃ€Ń–Ń‚ŃŒ хостинг-провайГера" @@ -717,29 +729,29 @@ msgstr "Автори стрічок Š¼Š¾Š¶ŃƒŃ‚ŃŒ обирати буГь-ŃŠŗŃ– msgid "Choose your main feeds" msgstr "" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "Š’ŠŗŠ°Š¶Ń–Ń‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "ŠžŃ‡ŠøŃŃ‚ŠøŃ‚Šø пошуковий запит" @@ -757,7 +769,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -809,7 +822,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ŠŸŃ€Š°Š²ŠøŠ»Š° ŃŠæŃ–Š»ŃŒŠ½Š¾Ń‚Šø" @@ -818,6 +831,10 @@ msgstr "ŠŸŃ€Š°Š²ŠøŠ»Š° ŃŠæŃ–Š»ŃŒŠ½Š¾Ń‚Šø" msgid "Complete onboarding and start using your account" msgstr "" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -830,12 +847,12 @@ msgstr "ВіГповісти" msgid "Configure content filtering setting for category: {0}" msgstr "" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚Šø" @@ -859,7 +876,7 @@ msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚Šø перелік мов" msgid "Confirm delete account" msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚Šø Š²ŠøŠ“Š°Š»ŠµŠ½Š½Ń облікового запису" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "" @@ -873,12 +890,12 @@ msgstr "КоГ ŠæŃ–Š“Ń‚Š²ŠµŃ€Š“Š¶ŠµŠ½Š½Ń" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Š—ā€™Ń”Š“Š½Š°Š½Š½Ń..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -908,11 +925,11 @@ msgstr "ŠŸŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń про вміст" msgid "Content warnings" msgstr "ŠŸŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń про вміст" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -921,15 +938,15 @@ msgstr "ŠŸŃ€Š¾Š“Š¾Š²Š¶ŠøŃ‚Šø" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "" @@ -942,13 +959,13 @@ msgstr "" msgid "Copied" msgstr "Дкопійовано" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -960,28 +977,28 @@ msgstr "" msgid "Copy" msgstr "Š”ŠŗŠ¾ŠæŃ–ŃŽŠ²Š°Ń‚Šø" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Š”ŠŗŠ¾ŠæŃ–ŃŽŠ²Š°Ń‚Šø ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Š”ŠŗŠ¾ŠæŃ–ŃŽŠ²Š°Ń‚Šø ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Š”ŠŗŠ¾ŠæŃ–ŃŽŠ²Š°Ń‚Šø ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Š”ŠŗŠ¾ŠæŃ–ŃŽŠ²Š°Ń‚Šø текст" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "ŠŸŠ¾Š»Ń–Ń‚ŠøŠŗŠ° Š·Š°Ń…ŠøŃŃ‚Ńƒ Š°Š²Ń‚Š¾Ń€ŃŃŒŠŗŠ¾Š³Š¾ права" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ завантажити ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ" @@ -990,20 +1007,20 @@ msgid "Could not load list" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ завантажити список" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "" +#~ msgid "Country" +#~ msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "Дтворити новий обліковий запис" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Дтворити обліковий запис" @@ -1012,7 +1029,7 @@ msgid "Create App Password" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "Дтворити новий обліковий запис" @@ -1036,12 +1053,17 @@ msgstr "" msgid "Culture" msgstr "" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "Власний Гомен" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1053,8 +1075,8 @@ msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń меГіа Š·Ń– сторонніх вебсай #~ msgid "Danger Zone" #~ msgstr "ŠŠµŠ±ŠµŠ·ŠæŠµŃ‡Š½Š° зона" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "" @@ -1062,7 +1084,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "" @@ -1074,7 +1096,7 @@ msgstr "" msgid "Debug panel" msgstr "" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "ВиГалити обліковий запис" @@ -1087,8 +1109,8 @@ msgstr "ВиГалити обліковий запис" msgid "Delete app password" msgstr "ВиГалити ŠæŠ°Ń€Š¾Š»ŃŒ Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃƒ" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "ВиГалити список" @@ -1100,23 +1122,23 @@ msgstr "ВиГалити мій обліковий запис" #~ msgid "Delete my account…" #~ msgstr "ВиГалити мій обліковий запис…" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ВиГалити пост" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ВиГалити цей пост?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "ВиГалений пост." @@ -1132,14 +1154,14 @@ msgstr "ŠžŠæŠøŃ" #~ msgstr "" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "Š†Š½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚Šø розробника" +#~ msgid "Developer Tools" +#~ msgstr "Š†Š½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚Šø розробника" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "ŠŸŠ¾Ń€Š¾Š¶Š½Ń–Š¹ пост. Š’Šø хотіли Ń‰Š¾ŃŃŒ написати?" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "" @@ -1160,9 +1182,13 @@ msgstr "ŠŸŠ¾ŠæŃ€Š¾ŃŠøŃ‚Šø Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŠø не ŠæŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø мій msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "ВіГкрийте Š“Š»Ń себе нові стрічки" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "ВіГкрийте Š“Š»Ń себе нові стрічки" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1176,7 +1202,7 @@ msgstr "Ім'я" msgid "Domain verified!" msgstr "Домен перевірено!" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "" @@ -1193,6 +1219,8 @@ msgctxt "action" msgid "Done" msgstr "" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1201,7 +1229,9 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "Готово" @@ -1213,7 +1243,16 @@ msgstr "Готово{extraText}" msgid "Double tap to sign in" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "" @@ -1259,7 +1298,7 @@ msgstr "" msgid "Edit image" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø Š·Š¾Š±Ń€Š°Š¶ŠµŠ½Š½Ń" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø опис списку" @@ -1267,8 +1306,8 @@ msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø опис списку" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø мої стрічки" @@ -1277,15 +1316,15 @@ msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø мої стрічки" msgid "Edit my profile" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø мій ŠæŃ€Š¾Ń„Ń–Š»ŃŒ" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø ŠæŃ€Š¾Ń„Ń–Š»ŃŒ" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø ŠæŃ€Š¾Ń„Ń–Š»ŃŒ" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø збережені стрічки" @@ -1305,17 +1344,15 @@ msgstr "" msgid "Education" msgstr "" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "Ел. аГреса" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "АГреса електронної ŠæŠ¾ŃˆŃ‚Šø" @@ -1332,7 +1369,7 @@ msgstr "Ел. Š°Š“Ń€ŠµŃŃƒ оновлено" msgid "Email verified" msgstr "" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "Ел. аГреса:" @@ -1340,7 +1377,7 @@ msgstr "Ел. аГреса:" msgid "Enable {0} only" msgstr "Š£Š²Ń–Š¼ŠŗŠ½ŃƒŃ‚Šø лише {0}" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "" @@ -1357,11 +1394,11 @@ msgstr "Š£Š²Ń–Š¼ŠŗŠ½ŃƒŃ‚Šø Š·Š¾Š²Š½Ń–ŃˆŠ½Ń– меГіа" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Š£Š²Ń–Š¼ŠŗŠ½Ń–Ń‚ŃŒ цей параметр, щоб бачити віГповіГі Ń‚Ń–Š»ŃŒŠŗŠø між Š»ŃŽŠ“ŃŒŠ¼Šø, на ŃŠŗŠøŃ… ви піГписані." -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "ŠšŃ–Š½ŠµŃ†ŃŒ стрічки" @@ -1385,11 +1422,11 @@ msgstr "" msgid "Enter the domain you want to use" msgstr "Š’Š²ŠµŠ“Ń–Ń‚ŃŒ Гомен, ŃŠŗŠøŠ¹ ви хочете Š²ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ²Š°Ń‚Šø" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "" @@ -1398,7 +1435,7 @@ msgstr "" msgid "Enter your email" msgstr "" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "Š’Š²ŠµŠ“Ń–Ń‚ŃŒ Š°Š“Ń€ŠµŃŃƒ електронної ŠæŠ¾ŃˆŃ‚Šø" @@ -1411,13 +1448,17 @@ msgid "Enter your new email address below." msgstr "Š’Š²ŠµŠ“Ń–Ń‚ŃŒ нову Š°Š“Ń€ŠµŃŃƒ електронної ŠæŠ¾ŃˆŃ‚Šø." #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "" +#~ msgid "Enter your phone number" +#~ msgstr "" #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "Š’Š²ŠµŠ“Ń–Ń‚ŃŒ псевГонім та ŠæŠ°Ń€Š¾Š»ŃŒ" +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "Помилка:" @@ -1452,6 +1493,15 @@ msgstr "Š Š¾Š·Š³Š¾Ń€Š½ŃƒŃ‚Šø Š°Š»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½ŠøŠ¹ текст" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "Š—Š¾Š²Š½Ń–ŃˆŠ½Ń– меГіа" @@ -1461,13 +1511,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š·Š¾Š²Š½Ń–ŃˆŠ½Ń–Ń… меГіа" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "" @@ -1480,7 +1530,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1489,15 +1539,15 @@ msgstr "" msgid "Failed to load recommended feeds" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ завантажити рекоменГації стрічок" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "Дтрічка не ŠæŃ€Š°Ń†ŃŽŃ”" @@ -1505,18 +1555,19 @@ msgstr "Дтрічка не ŠæŃ€Š°Ń†ŃŽŃ”" msgid "Feed Preferences" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń стрічки" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "ŠŠ°Š“Ń–ŃŠ»Š°Ń‚Šø Š²Ń–Š“Š³ŃƒŠŗ" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "Дтрічки" @@ -1536,7 +1587,7 @@ msgstr "Дтрічки ŃŃ‚Š²Š¾Ń€ŃŽŃŽŃ‚ŃŒŃŃ ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š°Š¼Šø Š“Š»Ń msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Дтрічки - це алгоритми, створені ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š°Š¼Šø Š· Š“ŠµŃŠŗŠøŠ¼ ГосвіГом ŠæŃ€Š¾Š³Ń€Š°Š¼ŃƒŠ²Š°Š½Š½Ń. <0/> Š“Š»Ń ГоГаткової інформації." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1562,9 +1613,13 @@ msgstr "Знайти ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š² за Š“Š¾ŠæŠ¾Š¼Š¾Š³Š¾ŃŽ ŠæŠ¾Š»Ń msgid "Finding similar accounts..." msgstr "Пошук схожих ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š²..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ŠžŠ±ŠµŃ€Ń–Ń‚ŃŒ, що ви хочете бачити у своїй Š“Š¾Š¼Š°ŃˆŠ½Ń–Š¹ стрічці." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ŠžŠ±ŠµŃ€Ń–Ń‚ŃŒ, що ви хочете бачити у своїй Š“Š¾Š¼Š°ŃˆŠ½Ń–Š¹ стрічці." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1587,21 +1642,24 @@ msgstr "" msgid "Flip vertically" msgstr "" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Ń‚ŠøŃŃ" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Ń‚ŠøŃŃ" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "" @@ -1629,7 +1687,7 @@ msgstr "" msgid "Followed users" msgstr "Š’Š°ŃˆŃ– піГписки" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Š¢Ń–Š»ŃŒŠŗŠø Š²Š°ŃˆŃ– піГписки" @@ -1645,16 +1703,24 @@ msgstr "ŠŸŃ–Š“ŠæŠøŃŠ½ŠøŠŗŠø" #~ msgid "following" #~ msgstr "піГписок" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Š½Ń–" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Š½ŠøŠ¹(-на) на вас" @@ -1674,11 +1740,11 @@ msgstr "Š— Š¼Ń–Ń€ŠŗŃƒŠ²Š°Š½ŃŒ безпеки нам потрібно буГе в msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Š— Š¼Ń–Ń€ŠŗŃƒŠ²Š°Š½ŃŒ безпеки цей ŠæŠ°Ń€Š¾Š»ŃŒ Š²Ń–Š“Š¾Š±Ń€Š°Š¶Š°Ń”Ń‚ŃŒŃŃ лише оГин раз. Якщо ви втратите цей ŠæŠ°Ń€Š¾Š»ŃŒ, вам потрібно буГе Š·Š³ŠµŠ½ŠµŃ€ŃƒŠ²Š°Ń‚Šø новий." -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "Š—Š°Š±ŃƒŠ»Šø ŠæŠ°Ń€Š¾Š»ŃŒ" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "Š—Š°Š±ŃƒŠ»Šø ŠæŠ°Ń€Š¾Š»ŃŒ" @@ -1687,7 +1753,7 @@ msgstr "Š—Š°Š±ŃƒŠ»Šø ŠæŠ°Ń€Š¾Š»ŃŒ" msgid "Forgot Password" msgstr "Š—Š°Š±ŃƒŠ»Šø ŠæŠ°Ń€Š¾Š»ŃŒ" -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1708,8 +1774,8 @@ msgstr "ŠŸŠ¾Ń‡Š°Ń‚Šø" msgid "Go back" msgstr "ŠŠ°Š·Š°Š“" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1725,9 +1791,9 @@ msgstr "" msgid "Go to @{queryMaybeHandle}" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1737,12 +1803,12 @@ msgstr "Далі" msgid "Handle" msgstr "ŠŸŃŠµŠ²Š“Š¾Š½Ń–Š¼" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "ДовіГка" @@ -1754,11 +1820,11 @@ msgstr "" #~ msgid "Here are some accounts for your to follow" #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1767,19 +1833,19 @@ msgid "Here is your app password." msgstr "Це ваш ŠæŠ°Ń€Š¾Š»ŃŒ Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃ–Š²." #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "ŠŸŃ€ŠøŃ…Š¾Š²Š°Ń‚Šø" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "ŠŸŃ€ŠøŃ…Š¾Š²Š°Ń‚Šø пост" @@ -1788,7 +1854,7 @@ msgstr "ŠŸŃ€ŠøŃ…Š¾Š²Š°Ń‚Šø пост" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ŠŸŃ€ŠøŃ…Š¾Š²Š°Ń‚Šø цей пост?" @@ -1796,7 +1862,7 @@ msgstr "ŠŸŃ€ŠøŃ…Š¾Š²Š°Ń‚Šø цей пост?" msgid "Hide user list" msgstr "ŠŸŃ€ŠøŃ…Š¾Š²Š°Ń‚Šø список ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š²" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1828,22 +1894,23 @@ msgstr "Єм, ми не можемо знайти цю ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ. Можл #~ msgid "Hmmm, we're having trouble finding this feed. It may have been deleted." #~ msgstr "" -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "Головна" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š“Š¾Š¼Š°ŃˆŠ½ŃŒŠ¾Ń— стрічки" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š“Š¾Š¼Š°ŃˆŠ½ŃŒŠ¾Ń— стрічки" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "Єостинг-провайГер" @@ -1888,8 +1955,8 @@ msgstr "" msgid "Image alt text" msgstr "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½ŠøŠ¹ текст" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Š½Š½Ń Š·Š¾Š±Ń€Š°Š¶ŠµŠ½Š½Ń" @@ -1906,7 +1973,7 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "" @@ -1918,7 +1985,7 @@ msgstr "" #~ msgid "Input hosting provider address" #~ msgstr "" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "" @@ -1935,56 +2002,55 @@ msgid "Input password for account deletion" msgstr "" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "" +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "ŠŠµŠ²Ń–Ń€Š½Šµ ім'я ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° або ŠæŠ°Ń€Š¾Š»ŃŒ" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "Запросити" +#~ msgid "Invite" +#~ msgstr "Запросити" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "Запросити Š“Ń€ŃƒŠ³Š°" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "КоГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "КоГ Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń не ŠæŃ€ŠøŠ¹Š½ŃŃ‚о. ŠŸŠµŃ€ŠµŠŗŠ¾Š½Š°Š¹Ń‚ŠµŃŃ в його ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾ŃŃ‚Ń– та ŠæŠ¾Š²Ń‚Š¾Ń€Ń–Ń‚ŃŒ ŃŠæŃ€Š¾Š±Ńƒ." @@ -1993,8 +2059,8 @@ msgid "Invite codes: {0} available" msgstr "" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "КоГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń: {invitesAvailable}" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "КоГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń: {invitesAvailable}" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -2005,6 +2071,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "Вакансії" @@ -2012,8 +2079,8 @@ msgstr "Вакансії" msgid "Join the waitlist" msgstr "ŠŸŃ€ŠøŃ”Š“Š½Š°Ń‚ŠøŃŃ Го черги Š¾Ń‡Ń–ŠŗŃƒŠ²Š°Š½Š½Ń" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "ŠŸŃ€ŠøŃ”Š“Š½Š°Ń‚ŠøŃŃ Го черги Š¾Ń‡Ń–ŠŗŃƒŠ²Š°Š½Š½Ń." @@ -2029,7 +2096,7 @@ msgstr "" msgid "Language selection" msgstr "Вибір мови" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "" @@ -2038,7 +2105,7 @@ msgstr "" msgid "Language Settings" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń мов" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "Мови" @@ -2076,11 +2143,11 @@ msgstr "Š—Š°Š»ŠøŃˆŃ‚Šµ їх усі невіГміченими, щоб бачит msgid "Leaving Bluesky" msgstr "Š’Šø Š·Š°Š»ŠøŃˆŠ°Ń”Ń‚Šµ Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -2093,16 +2160,17 @@ msgstr "Давайте віГновимо ваш ŠæŠ°Ń€Š¾Š»ŃŒ!" msgid "Let's go!" msgstr "" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "Š“Š°Š»ŠµŃ€ŠµŃ" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "" @@ -2110,7 +2178,7 @@ msgstr "" msgid "Like this feed" msgstr "ВпоГобати цю ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "Š”ŠæŠ¾Š“Š¾Š±Š°Š»Š¾ŃŃ" @@ -2119,7 +2187,7 @@ msgstr "Š”ŠæŠ¾Š“Š¾Š±Š°Š»Š¾ŃŃ" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2143,11 +2211,11 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "Š’ŠæŠ¾Š“Š¾Š±Š°Š½Š½Ń" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" @@ -2159,7 +2227,7 @@ msgstr "" #~ msgid "Limit the visibility of my account to logged-out users" #~ msgstr "" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "" @@ -2167,19 +2235,19 @@ msgstr "" msgid "List Avatar" msgstr "Аватар списку" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2187,35 +2255,35 @@ msgstr "" msgid "List Name" msgstr "ŠŠ°Š·Š²Š° списку" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "Дписки" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "Завантажити Š±Ń–Š»ŃŒŃˆŠµ постів" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "Завантажити нові ŃŠæŠ¾Š²Ń–Ń‰ŠµŠ½Š½Ń" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Завантажити нові пости" @@ -2224,17 +2292,17 @@ msgid "Loading..." msgstr "Š—Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "Š›Š¾ŠŗŠ°Š»ŃŒŠ½ŠøŠ¹ сервер розробки" +#~ msgid "Local dev server" +#~ msgstr "Š›Š¾ŠŗŠ°Š»ŃŒŠ½ŠøŠ¹ сервер розробки" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "" @@ -2258,7 +2326,15 @@ msgstr "Увійти Го облікового запису, ŃŠŗŠ¾Š³Š¾ нема msgid "Make sure this is where you intend to go!" msgstr "ŠŸŠµŃ€ŠµŠŗŠ¾Š½Š°Š¹Ń‚ŠµŃŃ, що це Гійсно той сайт, що ви Š·Š±ŠøŃ€Š°Ń”Ń‚ŠµŃŃ віГвіГати!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "ŠœŠµŠ“Ń–Š°" @@ -2285,14 +2361,14 @@ msgstr "" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "ŠœŠ¾Š“ŠµŃ€Š°Ń†Ń–Ń" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2301,7 +2377,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2324,7 +2400,7 @@ msgstr "Дписки Š“Š»Ń моГерації" msgid "Moderation Lists" msgstr "Дписки Š“Š»Ń моГерації" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "" @@ -2332,17 +2408,17 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "Š‘Ń–Š»ŃŒŃˆŠµ стрічок" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ДоГаткові опції" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2350,31 +2426,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "За ŠŗŃ–Š»ŃŒŠŗŃ–ŃŃ‚ŃŽ впоГобань" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø обліковий запис" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø облікові записи" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø список" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø ці облікові записи?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø пост" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2391,7 +2471,7 @@ msgstr "Ігноровані облікові записи" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Ігноровані облікові записи автоматично Š²ŠøŠ»ŃƒŃ‡Š°ŃŽŃ‚ŃŒŃŃ Ń–Š· Š²Š°ŃˆŠ¾Ń— стрічки та ŃŠæŠ¾Š²Ń–Ń‰ŠµŠ½ŃŒ. Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Š½Š½Ń є ŠæŠ¾Š²Š½Ń–ŃŃ‚ŃŽ приватним." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Š½Š½Ń є приватним. Ігноровані ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń– Š¼Š¾Š¶ŃƒŃ‚ŃŒ Š²Š·Š°Ń”Š¼Š¾Š“Ń–ŃŃ‚Šø Š· вами, але ви не бачитимете їх пости і не Š¾Ń‚Ń€ŠøŠ¼ŃƒŠ²Š°Ń‚ŠøŠ¼ŠµŃ‚Šµ віГ них ŃŠæŠ¾Š²Ń–Ń‰ŠµŠ½ŃŒ." @@ -2403,7 +2483,7 @@ msgstr "Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Š½Š½Ń є приватним. Ігноровані ко msgid "My Birthday" msgstr "ŠœŃ–Š¹ Гень Š½Š°Ń€Š¾Š“Š¶ŠµŠ½Š½Ń" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "ŠœŠ¾Ń— стрічки" @@ -2411,10 +2491,14 @@ msgstr "ŠœŠ¾Ń— стрічки" msgid "My Profile" msgstr "ŠœŃ–Š¹ ŠæŃ€Š¾Ń„Ń–Š»ŃŒ" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "ŠœŠ¾Ń— збережені стрічки" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2428,15 +2512,15 @@ msgstr "" msgid "Nature" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "" @@ -2475,16 +2559,17 @@ msgstr "" msgid "New Password" msgstr "" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ŠŠ¾Š²ŠøŠ¹ пост" @@ -2510,10 +2595,10 @@ msgstr "Š”ŠæŠ¾Ń‡Š°Ń‚ŠŗŃƒ Š½Š°Š¹Š½Š¾Š²Ń–ŃˆŃ–" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2531,10 +2616,10 @@ msgstr "" msgid "Next image" msgstr "ŠŠ°ŃŃ‚ŃƒŠæŠ½Šµ Š·Š¾Š±Ń€Š°Š¶ŠµŠ½Š½Ń" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2545,7 +2630,7 @@ msgstr "ŠŃ–" msgid "No description" msgstr "ŠžŠæŠøŃ Š²Ń–Š“ŃŃƒŃ‚Š½Ń–Š¹" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2558,7 +2643,7 @@ msgstr "" msgid "No result" msgstr "Š ŠµŠ·ŃƒŠ»ŃŒŃ‚Š°Ń‚Šø Š²Ń–Š“ŃŃƒŃ‚Š½Ń–" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "ŠŃ–Ń‡Š¾Š³Š¾ не знайГено за запитом Ā«{query}Ā»" @@ -2590,6 +2675,7 @@ msgid "Not Applicable." msgstr "ŠŠµ застосовно." #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "" @@ -2610,13 +2696,13 @@ msgstr "ŠŸŃ€ŠøŠ¼Ń–Ń‚ŠŗŠ°: Bluesky є Š²Ń–Š“ŠŗŃ€ŠøŃ‚Š¾ŃŽ і ŠæŃƒŠ±Š»Ń–Ń‡Š½Š¾ŃŽ м #~ msgid "Note: Third-party apps that display Bluesky content may not respect this setting." #~ msgstr "" -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "Š”ŠæŠ¾Š²Ń–Ń‰ŠµŠ½Š½Ń" @@ -2640,7 +2726,7 @@ msgstr "Добре" msgid "Oldest replies first" msgstr "Š”ŠæŠ¾Ń‡Š°Ń‚ŠŗŃƒ Š½Š°Š¹Š“Š°Š²Š½Ń–ŃˆŃ–" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "" @@ -2652,9 +2738,8 @@ msgstr "Š”Š»Ń оГного або ŠŗŃ–Š»ŃŒŠŗŠ¾Ń… Š·Š¾Š±Ń€Š°Š¶ŠµŠ½ŃŒ Š²Ń–Š“ŃŃƒ msgid "Only {0} can reply." msgstr "Š¢Ń–Š»ŃŒŠŗŠø {0} Š¼Š¾Š¶ŃƒŃ‚ŃŒ віГповіГати." -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "" @@ -2667,15 +2752,15 @@ msgstr "" msgid "Open emoji picker" msgstr "ЕмоГжі" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ВіГкрити Š½Š°Š²Ń–Š³Š°Ń†Ń–ŃŽ" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "" @@ -2699,7 +2784,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń мов" @@ -2707,33 +2792,31 @@ msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń мов" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š·Š¾Š²Š½Ń–ŃˆŠ½Ń–Ń… вбуГувань" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "" +#~ msgid "Opens invite code list" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "ВіГкриває список коГів Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "" @@ -2741,39 +2824,39 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "ВіГкриває Гіалог Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń власного Гомену ŃŠŗ ŠæŃŠµŠ²Š“Š¾Š½Ń–Š¼Ńƒ" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń моГерації" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "ВіГкриває ŃŃ‚Š¾Ń€Ń–Š½ŠŗŃƒ Š· ŃƒŃŃ–Š¼Š° збереженими стрічками" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń паролів Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃ–Š²" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š“Š¾Š¼Š°ŃˆŠ½ŃŒŠ¾Ń— стрічки" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "ВіГкриває системний Š¶ŃƒŃ€Š½Š°Š»" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "ВіГкриває Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń гілок" @@ -2794,8 +2877,8 @@ msgid "Other account" msgstr "Š†Š½ŃˆŠøŠ¹ обліковий запис" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "Š†Š½ŃˆŠøŠ¹ хостинг-провайГер" +#~ msgid "Other service" +#~ msgstr "Š†Š½ŃˆŠøŠ¹ хостинг-провайГер" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2809,9 +2892,9 @@ msgstr "Š”Ń‚Š¾Ń€Ń–Š½ŠŗŃƒ не знайГено" msgid "Page Not Found" msgstr "" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2825,11 +2908,11 @@ msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ змінено" msgid "Password updated!" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ змінено!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "" @@ -2846,15 +2929,15 @@ msgid "Pets" msgstr "" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "" +#~ msgid "Phone number" +#~ msgstr "" #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "Š—Š¾Š±Ń€Š°Š¶ŠµŠ½Š½Ń, призначені Š“Š»Ń Горослих." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2875,14 +2958,18 @@ msgstr "ВіГтворити віГео" msgid "Plays the GIF" msgstr "Š’Ń–Š“Ń‚Š²Š¾Ń€ŃŽŃ” GIF" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "Š‘ŃƒŠ“ŃŒ ласка, Š¾Š±ŠµŃ€Ń–Ń‚ŃŒ псевГонім." -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "Š‘ŃƒŠ“ŃŒ ласка, Š¾Š±ŠµŃ€Ń–Ń‚ŃŒ ваш ŠæŠ°Ń€Š¾Š»ŃŒ." +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "Š‘ŃƒŠ“ŃŒ ласка, ŠæŃ–Š“Ń‚Š²ŠµŃ€Š“Ń–Ń‚ŃŒ вашу ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ńƒ Š°Š“Ń€ŠµŃŃƒ, ŠæŠµŃ€Ńˆ ніж змінити її. Це тимчасова вимога піГ час Š“Š¾Š“Š°Š²Š°Š½Š½Ń Ń–Š½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚Ń–Š² Š¾Š½Š¾Š²Š»ŠµŠ½Š½Ń електронної аГреси, незабаром її Š²ŠøŠ“Š°Š»ŃŃ‚ŃŒ." @@ -2892,22 +2979,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Š‘ŃƒŠ“ŃŒ ласка, Š²Š²ŠµŠ“Ń–Ń‚ŃŒ ŃƒŠ½Ń–ŠŗŠ°Š»ŃŒŠ½Ńƒ назву Š“Š»Ń Ń†ŃŒŠ¾Š³Š¾ ŠæŠ°Ń€Š¾Š»ŃŽ або Š²ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ нашу випаГково Š·Š³ŠµŠ½ŠµŃ€Š¾Š²Š°Š½Ńƒ." #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "Š‘ŃƒŠ“ŃŒ ласка, Š²Š²ŠµŠ“Ń–Ń‚ŃŒ Š°Š“Ń€ŠµŃŃƒ ел. ŠæŠ¾ŃˆŃ‚Šø." @@ -2947,7 +3034,7 @@ msgctxt "action" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "" @@ -2958,21 +3045,21 @@ msgstr "" #~ msgid "Post" #~ msgstr "ŠŸŠ¾ŃŃ‚" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "ŠŸŠ¾ŃŃ‚ приховано" @@ -2984,11 +3071,11 @@ msgstr "Мова ŠæŠ¾ŃŃ‚Ńƒ" msgid "Post Languages" msgstr "Мови ŠæŠ¾ŃŃ‚Ńƒ" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "ŠŸŠ¾ŃŃ‚ не знайГено" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "ŠŸŠ¾ŃŃ‚Šø" @@ -3012,27 +3099,27 @@ msgstr "ŠžŃŠ½Š¾Š²Š½Š° мова" msgid "Prioritize Your Follows" msgstr "ŠŸŃ€Ń–Š¾Ń€ŠøŃ‚ŠµŠ·ŃƒŠ²Š°Ń‚Šø Š²Š°ŃˆŃ– піГписки" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "ŠšŠ¾Š½Ń„Ń–Š“ŠµŠ½Ń†Ń–Š¹Š½Ń–ŃŃ‚ŃŒ" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "ŠŸŠ¾Š»Ń–Ń‚ŠøŠŗŠ° конфіГенційності" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "ŠžŠ±Ń€Š¾Š±ŠŗŠ°..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "ŠŸŃ€Š¾Ń„Ń–Š»ŃŒ" @@ -3040,7 +3127,7 @@ msgstr "ŠŸŃ€Š¾Ń„Ń–Š»ŃŒ" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "Š—Š°Ń…ŠøŃŃ‚Ń–Ń‚ŃŒ свій обліковий запис, ŠæŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŠ²ŃˆŠø ŃŠ²Š¾ŃŽ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ńƒ Š°Š“Ń€ŠµŃŃƒ." @@ -3106,12 +3193,12 @@ msgstr "РекоменГовані ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø {0} Š·Ń– збережених стрічок?" @@ -3124,11 +3211,11 @@ msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø обліковий запис" msgid "Remove feed" msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø Š· моїх стрічок" @@ -3144,7 +3231,7 @@ msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø попереГній ŠæŠµŃ€ŠµŠ³Š»ŃŠ“ зображен msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø цю ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ Š· Š²Š°ŃˆŠøŃ… стрічок?" @@ -3157,8 +3244,8 @@ msgstr "Š’ŠøŠ»ŃƒŃ‡ŠøŃ‚Šø цю ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ Š·Ń– збережених стрі msgid "Removed from list" msgstr "Š’ŠøŠ»ŃƒŃ‡ŠµŠ½Š¾ Š·Ń– списку" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -3166,7 +3253,7 @@ msgstr "" msgid "Removes default thumbnail from {0}" msgstr "" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "ВіГповіГі" @@ -3179,12 +3266,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "ŠÆŠŗŃ– віГповіГі ŠæŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3193,20 +3280,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "ŠŸŠ¾ŃŠŗŠ°Ń€Š¶ŠøŃ‚ŠøŃŃŒ на {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ŠŸŠ¾ŃŠŗŠ°Ń€Š¶ŠøŃ‚ŠøŃŃŒ на обліковий запис" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ŠŸŠ¾ŃŠŗŠ°Ń€Š¶ŠøŃ‚ŠøŃŃŒ на ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "ŠŸŠ¾ŃŠŗŠ°Ń€Š¶ŠøŃ‚ŠøŃŃŒ на список" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ŠŸŠ¾ŃŠŗŠ°Ń€Š¶ŠøŃ‚ŠøŃŃŒ на пост" @@ -3235,7 +3322,7 @@ msgstr "Репостити або Ń†ŠøŃ‚ŃƒŠ²Š°Ń‚Šø" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3243,7 +3330,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3251,7 +3338,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3261,8 +3348,8 @@ msgid "Request Change" msgstr "Змінити" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "" +#~ msgid "Request code" +#~ msgstr "" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 @@ -3273,11 +3360,11 @@ msgstr "" #~ msgid "Request to limit the visibility of my account" #~ msgstr "" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "Вимагати Š°Š»ŃŒŃ‚ернативний текст Го Š·Š¾Š±Ń€Š°Š¶ŠµŠ½ŃŒ переГ ŠæŃƒŠ±Š»Ń–ŠŗŠ°Ń†Ń–Ń”ŃŽ" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "Š’ŠøŠ¼Š°Š³Š°Ń”Ń‚ŃŒŃŃ цим хостинг-провайГером" @@ -3290,52 +3377,51 @@ msgstr "КоГ ŠæŃ–Š“Ń‚Š²ŠµŃ€Š“Š¶ŠµŠ½Š½Ń" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "Š”ŠŗŠøŠ½ŃƒŃ‚Šø ŠæŠ°Ń€Š¾Š»ŃŒ" -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "ŠŸŠ¾Š²Ń‚Š¾Ń€ŠøŃ‚Šø ŃŠæŃ€Š¾Š±Ńƒ" @@ -3344,16 +3430,16 @@ msgstr "ŠŸŠ¾Š²Ń‚Š¾Ń€ŠøŃ‚Šø ŃŠæŃ€Š¾Š±Ńƒ" #~ msgstr "" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "" +#~ msgid "Retry." +#~ msgstr "" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3366,7 +3452,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Зберегти" @@ -3410,11 +3496,11 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3422,8 +3508,8 @@ msgstr "" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "Пошук" @@ -3459,8 +3545,8 @@ msgid "Select {item}" msgstr "" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "Вибрати Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "Вибрати Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3470,8 +3556,8 @@ msgstr "Вибрати Ń–ŃŠ½ŃƒŃŽŃ‡ŠøŠ¹ обліковий запис" msgid "Select option {i} of {numItems}" msgstr "" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "Вибрати хостинг-провайГера" @@ -3479,11 +3565,15 @@ msgstr "Вибрати хостинг-провайГера" msgid "Select some accounts below to follow" msgstr "" +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:49 #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3504,8 +3594,8 @@ msgid "Select your interests from the options below" msgstr "" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "" +#~ msgid "Select your phone's country" +#~ msgstr "" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3515,7 +3605,7 @@ msgstr "ŠžŠ±ŠµŃ€Ń–Ń‚ŃŒ бажану мову Š“Š»Ń переклаГів у ва msgid "Select your primary algorithmic feeds" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "" @@ -3537,8 +3627,8 @@ msgstr "" #~ msgid "Send Email" #~ msgstr "ŠŠ°Š“Ń–ŃŠ»Š°Ń‚Šø ел. листа" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "ŠŠ°Š“Ń–ŃŠ»Š°Ń‚Šø Š²Ń–Š“Š³ŃƒŠŗ" @@ -3550,33 +3640,37 @@ msgstr "ŠŸŠ¾ŃŠŗŠ°Ń€Š¶ŠøŃ‚ŠøŃŃŒ" msgid "Sends email with confirmation code for account deletion" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "" @@ -3584,19 +3678,19 @@ msgstr "" msgid "Set new password" msgstr "Зміна ŠæŠ°Ń€Š¾Š»Ń" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Š’ŠøŠ¼ŠŗŠ½Ń–Ń‚ŃŒ це Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń, щоб приховати всі цитовані пости у Š²Š°ŃˆŃ–Š¹ стрічці. ŠŠµ впливає на репости без Ń†ŠøŃ‚ŃƒŠ²Š°Š½Š½Ń." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Š’ŠøŠ¼ŠŗŠ½Ń–Ń‚ŃŒ це Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń, щоб приховати всі віГповіГі у Š²Š°ŃˆŃ–Š¹ стрічці." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Š’ŠøŠ¼ŠŗŠ½Ń–Ń‚ŃŒ це Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń, щоб приховати всі репости у Š²Š°ŃˆŃ–Š¹ стрічці." @@ -3605,8 +3699,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Š£Š²Ń–Š¼ŠŗŠ½Ń–Ń‚ŃŒ це Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń, щоб ŠæŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø віГповіГі у Š²ŠøŠ³Š»ŃŠ“Ń– гілок. Це ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š° Ń„ŃƒŠ½ŠŗŃ†Ń–Ń." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Š£Š²Ń–Š¼ŠŗŠ½Ń–Ń‚ŃŒ це Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń, щоб іноГі бачити пости Š·Ń– збережених стрічок у Š²Š°ŃˆŃ–Š¹ Š“Š¾Š¼Š°ŃˆŠ½Ń–Š¹ стрічці. Це ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š° Ń„ŃƒŠ½ŠŗŃ†Ń–Ń." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Š£Š²Ń–Š¼ŠŗŠ½Ń–Ń‚ŃŒ це Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń, щоб іноГі бачити пости Š·Ń– збережених стрічок у Š²Š°ŃˆŃ–Š¹ Š“Š¾Š¼Š°ŃˆŠ½Ń–Š¹ стрічці. Це ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š° Ń„ŃƒŠ½ŠŗŃ†Ń–Ń." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3616,11 +3714,11 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "" @@ -3628,16 +3726,16 @@ msgstr "" #~ msgid "Sets hosting provider to {label}" #~ msgstr "" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń" @@ -3650,13 +3748,13 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "ŠŸŠ¾ŃˆŠøŃ€ŠøŃ‚Šø" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "ŠŸŠ¾ŃˆŠøŃ€ŠøŃ‚Šø ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ" @@ -3665,14 +3763,14 @@ msgstr "ŠŸŠ¾ŃˆŠøŃ€ŠøŃ‚Šø ŃŃ‚Ń€Ń–Ń‡ŠŗŃƒ" #~ msgstr "" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚Šø" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3684,21 +3782,21 @@ msgstr "ВсеоГно показати" msgid "Show embeds from {0}" msgstr "ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚Šø Š²Š±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ń Š· {0}" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ŠŸŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø пости Š·Ń– збережених стрічок" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ŠŸŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø цитати" @@ -3714,7 +3812,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ŠŸŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø віГповіГі" @@ -3730,11 +3828,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ŠŸŠ¾ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø репости" @@ -3751,17 +3849,18 @@ msgstr "" msgid "Show users" msgstr "ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚Šø ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š²" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3774,8 +3873,8 @@ msgid "Sign in" msgstr "Увійти" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "Увійти" @@ -3788,14 +3887,14 @@ msgstr "Увійти ŃŠŗ {0}" msgid "Sign in as..." msgstr "Увійти ŃŠŗ..." -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "Увійти Го" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "Вийти" @@ -3819,7 +3918,7 @@ msgstr "Š—Š°Ń€ŠµŃ”ŃŃ‚Ń€ŃƒŠ¹Ń‚ŠµŃŃ або ŃƒŠ²Ń–Š¹Š“Ń–Ń‚ŃŒ, щоб приєГ msgid "Sign-in Required" msgstr "ŠŠµŠ¾Š±Ń…Ń–Š“Š½Š¾ ŃƒŠ²Ń–Š¹Ń‚Šø Š“Š»Ń ŠæŠµŃ€ŠµŠ³Š»ŃŠ“Ńƒ" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "Š’Šø ŃƒŠ²Ń–Š¹ŃˆŠ»Šø ŃŠŗ" @@ -3832,7 +3931,7 @@ msgid "Signs {0} out of Bluesky" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "ŠŸŃ€Š¾ŠæŃƒŃŃ‚ŠøŃ‚Šø" @@ -3842,22 +3941,22 @@ msgid "Skip this flow" msgstr "" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "" +#~ msgid "SMS verification" +#~ msgstr "" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -3878,10 +3977,10 @@ msgid "Square" msgstr "ŠšŠ²Š°Š“Ń€Š°Ń‚Š½Šµ" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "" +#~ msgid "Staging" +#~ msgstr "" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "Дторінка ŃŃ‚Š°Š½Ńƒ" @@ -3893,12 +3992,12 @@ msgstr "" #~ msgid "Step {step} of 3" #~ msgstr "" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "" @@ -3906,7 +4005,7 @@ msgstr "" msgid "Submit" msgstr "ŠŠ°Š“Ń–ŃŠ»Š°Ń‚Šø" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Ń‚ŠøŃŃ" @@ -3915,7 +4014,7 @@ msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Ń‚ŠøŃŃ" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ŠŸŃ–Š“ŠæŠøŃŠ°Ń‚ŠøŃŃ на цей список" @@ -3935,35 +4034,35 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "ŠŸŃ–Š“Ń‚Ń€ŠøŠ¼ŠŗŠ°" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "" +#~ msgid "Swipe up to see more" +#~ msgstr "" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "ŠŸŠµŃ€ŠµŠ¼ŠøŠŗŠ½ŃƒŃ‚Šø обліковий запис" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "Дистемний Š¶ŃƒŃ€Š½Š°Š»" @@ -3979,14 +4078,14 @@ msgstr "" msgid "Tech" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "Умови" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "Умови Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š°Š½Š½Ń" @@ -3995,7 +4094,11 @@ msgstr "Умови Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š°Š½Š½Ń" msgid "Text input field" msgstr "Поле ввоГу Ń‚ŠµŠŗŃŃ‚Ńƒ" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ŠžŠ±Š»Ń–ŠŗŠ¾Š²ŠøŠ¹ запис зможе Š²Š·Š°Ń”Š¼Š¾Š“Ń–ŃŃ‚Šø Š· вами ŠæŃ–ŃŠ»Ń Ń€Š¾Š·Š±Š»Š¾ŠŗŃƒŠ²Š°Š½Š½Ń." @@ -4011,7 +4114,7 @@ msgstr "ŠŸŠ¾Š»Ń–Ń‚ŠøŠŗŃƒ Š·Š°Ń…ŠøŃŃ‚Ńƒ Š°Š²Ń‚Š¾Ń€ŃŃŒŠŗŠ¾Š³Š¾ права пер msgid "The following steps will help customize your Bluesky experience." msgstr "" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "Можливо цей пост було виГалено." @@ -4031,11 +4134,11 @@ msgstr "" msgid "The Terms of Service have been moved to" msgstr "Умови Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š°Š½Š½Ń перенесено Го" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -4043,12 +4146,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -4057,9 +4160,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -4089,19 +4192,21 @@ msgstr "" msgid "There was an issue with fetching your app passwords" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -4109,13 +4214,13 @@ msgstr "" msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "Š£ Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃƒ ŃŃ‚Š°Š»Š°ŃŃ Š½ŠµŠ¾Ń‡Ń–ŠŗŃƒŠ²Š°Š½Š° проблема. Š‘ŃƒŠ“ŃŒ ласка, повіГомте нас, ŃŠŗŃ‰Š¾ ви отримали це ŠæŠ¾Š²Ń–Š“Š¾Š¼Š»ŠµŠ½Š½Ń!" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -4149,13 +4254,17 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "Цей вміст не Š“Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ Š“Š»Ń ŠæŠµŃ€ŠµŠ³Š»ŃŠ“Ńƒ без облікового запису Bluesky." +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "Š¦Ń стрічка зараз Š¾Ń‚Ń€ŠøŠ¼ŃƒŃ” забагато запитів і тимчасово Š½ŠµŠ“Š¾ŃŃ‚ŃƒŠæŠ½Š°. Š”ŠæŃ€Š¾Š±ŃƒŠ¹Ń‚Šµ ще раз ŠæŃ–Š·Š½Ń–ŃˆŠµ." -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -4187,7 +4296,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Цей пост було виГалено." @@ -4211,12 +4320,12 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Це ŠæŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń Š“Š¾ŃŃ‚ŃƒŠæŠ½Šµ Ń‚Ń–Š»ŃŒŠŗŠø Š“Š»Ń записів Š· прикріпленими меГіа-файлами." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Це приховає цей пост Ń–Š· Š²Š°ŃˆŠ¾Ń— стрічки." #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń гілок" @@ -4224,7 +4333,7 @@ msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń гілок" msgid "Threaded Mode" msgstr "Режим гілок" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -4236,13 +4345,13 @@ msgstr "Розкрити/сховати" msgid "Transformations" msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Š½Š½Ń" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ŠŸŠµŃ€ŠµŠŗŠ»Š°ŃŃ‚Šø" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "" @@ -4251,34 +4360,34 @@ msgstr "" #~ msgid "Try again" #~ msgstr "Š”ŠæŃ€Š¾Š±ŃƒŠ²Š°Ń‚Šø ще раз" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Š Š¾Š·Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø список" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "ŠŸŠµŃ€ŠµŃŃ‚Š°Ń‚Šø Ń–Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ зв'ŃŠ·Š°Ń‚ŠøŃŃ Š· вашим хостинг-провайГером. ŠŸŠµŃ€ŠµŠ²Ń–Ń€Ń‚Šµ ваше ŠæŃ–Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½Š½Ń Го Š†Š½Ń‚ŠµŃ€Š½ŠµŃ‚Ńƒ." -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Š Š¾Š·Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Š Š¾Š·Š±Š»Š¾ŠŗŃƒŠ²Š°Ń‚Šø обліковий запис" @@ -4294,40 +4403,41 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "ŠŠ° жаль, ви не віГповіГаєте вимогам Š“Š»Ń ŃŃ‚Š²Š¾Ń€ŠµŠ½Š½Ń облікового запису." -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ŠŸŠµŃ€ŠµŃŃ‚Š°Ń‚Šø Ń–Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ŠŸŠµŃ€ŠµŃŃ‚Š°Ń‚Šø Ń–Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "ВіГкріпити список моГерації" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4370,8 +4480,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "Š”ŠŗŠ¾Ń€ŠøŃŃ‚Š°Š¹Ń‚ŠµŃŃŒ ним Š“Š»Ń Š²Ń…Š¾Š“Ńƒ в Ń–Š½ŃˆŃ– Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŠø." #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4389,11 +4499,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ŠŸŃŠµŠ²Š“Š¾Š½Ń–Š¼" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4402,7 +4512,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4420,8 +4530,8 @@ msgstr "" msgid "User Lists" msgstr "Дписки ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š²" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "Ім'я ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° або електронна аГреса" @@ -4442,18 +4552,18 @@ msgid "Users in \"{0}\"" msgstr "ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń– в Ā«{0}Ā»" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "" +#~ msgid "Verification code" +#~ msgstr "" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚Šø ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ńƒ Š°Š“Ń€ŠµŃŃƒ" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚Šø Š¼Š¾ŃŽ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ńƒ Š°Š“Ń€ŠµŃŃƒ" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚Šø Š¼Š¾ŃŽ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ńƒ Š°Š“Ń€ŠµŃŃƒ" @@ -4470,7 +4580,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4495,15 +4605,15 @@ msgid "Visit Site" msgstr "ВіГвіГати сайт" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "" @@ -4523,7 +4633,7 @@ msgstr "" #~ msgid "We recommend \"For You\" by Skygaze:" #~ msgstr "" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "" @@ -4531,7 +4641,7 @@ msgstr "" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "" @@ -4543,7 +4653,7 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Ми Гуже раГі, що ви ŠæŃ€ŠøŃ”Š“Š½Š°Š»ŠøŃŃ!" @@ -4555,7 +4665,7 @@ msgstr "Ми Гуже раГі, що ви ŠæŃ€ŠøŃ”Š“Š½Š°Š»ŠøŃŃ!" #~ msgid "We're sorry, but this feed is currently receiving high traffic and is temporarily unavailable. Please try again later." #~ msgstr "" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4579,7 +4689,7 @@ msgstr "" msgid "What is the issue with this {collectionName}?" msgstr "Яка проблема Š· {collectionName}?" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "ŠÆŠŗ справи?" @@ -4619,14 +4729,14 @@ msgid "Writers" msgstr "" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "" +#~ msgid "XXXXXX" +#~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4636,7 +4746,7 @@ msgstr "Так" #~ msgid "You are in control" #~ msgstr "" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "" @@ -4670,7 +4780,7 @@ msgstr "Š£ вас ще немає коГів Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń! Š— часом msgid "You don't have any pinned feeds." msgstr "Š£ вас немає закріплених стрічок." -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "Š£ вас немає збережених стрічок!" @@ -4678,7 +4788,7 @@ msgstr "Š£ вас немає збережених стрічок!" msgid "You don't have any saved feeds." msgstr "Š£ вас немає збережених стрічок." -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "Š’Šø заблокували автора або автор заблокував вас." @@ -4718,7 +4828,7 @@ msgstr "Š’Šø ще не створили жоГного ŠæŠ°Ń€Š¾Š»Ń Š“Š»Ń за msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "Š’Šø ще не Ń–Š³Š½Š¾Ń€ŃƒŃ”Ń‚Šµ жоГного облікового запису. Щоб Ń–Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø когось, ŠæŠµŃ€ŠµŠ¹Š“Ń–Ń‚ŃŒ Го їх ŠæŃ€Š¾Ń„Ń–Š»ŃŽ та Š²ŠøŠ±ŠµŃ€Ń–Ń‚ŃŒ Š¾ŠæŃ†Ń–ŃŽ \"Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Ń‚Šø\" у Š¼ŠµŠ½ŃŽ їх облікового запису." -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "" @@ -4726,11 +4836,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4742,9 +4852,9 @@ msgstr "Š’Šø отримаєте електронний лист Ń–Š· коГом msgid "You're in control" msgstr "" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "" @@ -4756,7 +4866,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "Š’Š°Ńˆ Š°ŠŗŠ°ŃƒŠ½Ń‚" @@ -4764,7 +4874,11 @@ msgstr "Š’Š°Ńˆ Š°ŠŗŠ°ŃƒŠ½Ń‚" msgid "Your account has been deleted" msgstr "" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "Š’Š°ŃˆŠ° Гата Š½Š°Ń€Š¾Š“Š¶ŠµŠ½Š½Ń" @@ -4776,7 +4890,7 @@ msgstr "" msgid "Your default feed is \"Following\"" msgstr "" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4798,7 +4912,7 @@ msgstr "Š’Š°ŃˆŠ° електронна ŠæŠ¾ŃˆŃ‚Š° ще не піГтверГже msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Š’Š°Ńˆ повний псевГонім буГе" @@ -4813,8 +4927,8 @@ msgstr "" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "Š’Š°ŃˆŃ– коГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń приховано, ŃŠŗŃ‰Š¾ ви ŃƒŠ²Ń–Š¹ŃˆŠ»Šø за Š“Š¾ŠæŠ¾Š¼Š¾Š³Š¾ŃŽ ŠæŠ°Ń€Š¾Š»Ń Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃ–Š²" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "Š’Š°ŃˆŃ– коГи Š·Š°ŠæŃ€Š¾ŃˆŠµŠ½Š½Ń приховано, ŃŠŗŃ‰Š¾ ви ŃƒŠ²Ń–Š¹ŃˆŠ»Šø за Š“Š¾ŠæŠ¾Š¼Š¾Š³Š¾ŃŽ ŠæŠ°Ń€Š¾Š»Ń Š“Š»Ń Š·Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŃ–Š²" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4831,7 +4945,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Š’Š°ŃˆŃ– ŠæŠ¾Š²Ń–Š“Š¾Š¼Š»ŠµŠ½Š½Ń, Š²ŠæŠ¾Š“Š¾Š±Š°Š½Š½Ń і блоки є ŠæŃƒŠ±Š»Ń–Ń‡Š½ŠøŠ¼Šø. Š†Š³Š½Š¾Ń€ŃƒŠ²Š°Š½Š½Ń - приватні." #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "Š’Š°Ńˆ ŠæŃ€Š¾Ń„Ń–Š»ŃŒ" @@ -4851,6 +4965,6 @@ msgstr "Š’Š°Ńˆ ŠæŃ€Š¾Ń„Ń–Š»ŃŒ" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Š’Š°Ńˆ псевГонім" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 4baee3179e..aa7b24c9c6 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -18,28 +18,28 @@ msgid "(no email)" msgstr "(ę²”ęœ‰é‚®ä»¶)" #: src/view/shell/desktop/RightNav.tsx:168 -msgid "{0, plural, one {# invite code available} other {# invite codes available}}" -msgstr "{0, plural, one {# ę”é‚€čÆ·ē åÆē”Ø} other {# ę”é‚€čÆ·ē åÆē”Ø}}" +#~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" +#~ msgstr "{0, plural, one {# ę”é‚€čÆ·ē åÆē”Ø} other {# ę”é‚€čÆ·ē åÆē”Ø}}" -#: src/view/com/profile/ProfileHeader.tsx:632 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} ę­£åœØå…³ę³Ø" #: src/view/shell/desktop/RightNav.tsx:151 -msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" -msgstr "{invitesAvailable, plural, one {邀请码: # åÆē”Ø} other {邀请码: # åÆē”Ø}}" +#~ msgid "{invitesAvailable, plural, one {Invite codes: # available} other {Invite codes: # available}}" +#~ msgstr "{invitesAvailable, plural, one {邀请码: # åÆē”Ø} other {邀请码: # åÆē”Ø}}" #: src/view/screens/Settings.tsx:435 #: src/view/shell/Drawer.tsx:664 -msgid "{invitesAvailable} invite code available" -msgstr "{invitesAvailable} ę”é‚€čÆ·ē åÆē”Ø" +#~ msgid "{invitesAvailable} invite code available" +#~ msgstr "{invitesAvailable} ę”é‚€čÆ·ē åÆē”Ø" #: src/view/screens/Settings.tsx:437 #: src/view/shell/Drawer.tsx:666 -msgid "{invitesAvailable} invite codes available" -msgstr "{invitesAvailable} ę”é‚€čÆ·ē åÆē”Ø" +#~ msgid "{invitesAvailable} invite codes available" +#~ msgstr "{invitesAvailable} ę”é‚€čÆ·ē åÆē”Ø" -#: src/view/shell/Drawer.tsx:443 +#: src/view/shell/Drawer.tsx:440 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 未读" @@ -47,7 +47,7 @@ msgstr "{numUnreadNotifications} 未读" msgid "<0/> members" msgstr "<0/> ęˆå‘˜" -#: src/view/com/profile/ProfileHeader.tsx:634 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} <1>following" msgstr "<0>{following} <1>ę­£åœØå…³ę³Ø" @@ -63,7 +63,7 @@ msgstr "<0>关注一些<1>ęŽØčēš„<2>ē”Øęˆ·" msgid "<0>Welcome to<1>Bluesky" msgstr "<0>ę¬¢čæŽę„åˆ°<1>Bluesky" -#: src/view/com/profile/ProfileHeader.tsx:597 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "⚠Invalid Handle" msgstr "āš ę— ę•ˆēš„ē”Øęˆ·čÆ†åˆ«ē¬¦" @@ -80,26 +80,26 @@ msgstr "App ę–°ē‰ˆęœ¬å·²å‘åøƒļ¼ŒčÆ·ę›“ę–°ä»„ē»§ē»­ä½æē”Øć€‚" msgid "Access navigation links and settings" msgstr "č®æé—®åÆ¼čˆŖé“¾ęŽ„åŠč®¾ē½®" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "č®æé—®äøŖäŗŗčµ„ę–™åŠå…¶ä»–åÆ¼čˆŖé“¾ęŽ„" #: src/view/com/modals/EditImage.tsx:299 -#: src/view/screens/Settings.tsx:445 +#: src/view/screens/Settings/index.tsx:451 msgid "Accessibility" msgstr "ę— éšœē¢" -#: src/view/com/auth/login/LoginForm.tsx:163 -#: src/view/screens/Settings.tsx:308 -#: src/view/screens/Settings.tsx:715 +#: src/view/com/auth/login/LoginForm.tsx:166 +#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:721 msgid "Account" msgstr "蓦ꈷ" -#: src/view/com/profile/ProfileHeader.tsx:293 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "å·²å±č”½č“¦ęˆ·" -#: src/view/com/profile/ProfileHeader.tsx:260 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "å·²éšč—č“¦ęˆ·" @@ -119,11 +119,11 @@ msgstr "č“¦ęˆ·é€‰é”¹" msgid "Account removed from quick access" msgstr "å·²ä»Žåæ«é€Ÿč®æé—®äø­ē§»é™¤č“¦ęˆ·" -#: src/view/com/profile/ProfileHeader.tsx:315 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "å·²å–ę¶ˆå±č”½č“¦ęˆ·" -#: src/view/com/profile/ProfileHeader.tsx:273 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "å·²å–ę¶ˆéšč—č“¦ęˆ·" @@ -142,8 +142,8 @@ msgstr "ę·»åŠ å†…å®¹č­¦å‘Š" msgid "Add a user to this list" msgstr "å°†ē”Øęˆ·ę·»åŠ č‡³åˆ—č”Ø" -#: src/view/screens/Settings.tsx:383 -#: src/view/screens/Settings.tsx:392 +#: src/view/screens/Settings/index.tsx:383 +#: src/view/screens/Settings/index.tsx:392 msgid "Add account" msgstr "添加蓦户" @@ -180,12 +180,12 @@ msgstr "ę·»åŠ é“¾ęŽ„å”ē‰‡:" msgid "Add the following DNS record to your domain:" msgstr "将仄下DNSč®°å½•ę·»åŠ åˆ°ä½ ēš„åŸŸå:" -#: src/view/com/profile/ProfileHeader.tsx:357 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ę·»åŠ č‡³åˆ—č”Ø" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ę·»åŠ č‡³č‡Ŗå®šä¹‰äæ”ęÆęµ" @@ -198,11 +198,11 @@ msgstr "已添加" msgid "Added to list" msgstr "ę·»åŠ č‡³åˆ—č”Ø" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "ę·»åŠ č‡³č‡Ŗå®šä¹‰äæ”ęÆęµ" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "č°ƒę•“å›žå¤äø­éœ€č¦å…·ęœ‰ēš„ē‚¹čµžę•°ę‰ä¼šåœØä½ ēš„äæ”ęÆęµäø­ę˜¾ē¤ŗć€‚" @@ -210,15 +210,19 @@ msgstr "č°ƒę•“å›žå¤äø­éœ€č¦å…·ęœ‰ēš„ē‚¹čµžę•°ę‰ä¼šåœØä½ ēš„äæ”ęÆęµäø­ę˜¾ē¤ŗ msgid "Adult Content" msgstr "ęˆäŗŗå†…å®¹" -#: src/view/com/modals/ContentFilteringSettings.tsx:137 +#: src/view/com/modals/ContentFilteringSettings.tsx:141 msgid "Adult content can only be enabled via the Web at <0/>." msgstr "č¦ę˜¾ē¤ŗęˆäŗŗå†…å®¹ļ¼Œä½ åæ…é”»č®æé—®ē½‘é”µē«ÆäøŠēš„<0/>怂" -#: src/view/screens/Settings.tsx:658 +#: src/view/screens/Settings/index.tsx:664 msgid "Advanced" msgstr "详细设置" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:217 +#: src/view/screens/Feeds.tsx:666 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/view/com/auth/login/ForgotPasswordForm.tsx:221 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Already have a code?" msgstr "å·²ē»ęœ‰ē”®č®¤ē äŗ†ļ¼Ÿ" @@ -277,7 +281,7 @@ msgstr "App äø“ē”ØåÆ†ē åŖčƒ½åŒ…å«å­—ęÆć€ę•°å­—ć€ē©ŗę ¼ć€ē “ęŠ˜å·åŠäø‹ msgid "App Password names must be at least 4 characters long." msgstr "App 专用密码必锻至少为 4 个字符。" -#: src/view/screens/Settings.tsx:669 +#: src/view/screens/Settings/index.tsx:675 msgid "App password settings" msgstr "App 专用密码设置" @@ -285,13 +289,13 @@ msgstr "App 专用密码设置" #~ msgid "App passwords" #~ msgstr "App 专用密码" -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:237 #: src/view/screens/AppPasswords.tsx:187 -#: src/view/screens/Settings.tsx:678 +#: src/view/screens/Settings/index.tsx:684 msgid "App Passwords" msgstr "App 专用密码" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ē”³čÆ‰å†…å®¹č­¦å‘Š" @@ -307,7 +311,7 @@ msgstr "åÆ¹ę­¤å†³å®šęå‡ŗē”³čÆ‰" msgid "Appeal this decision." msgstr "åÆ¹ę­¤å†³å®šęå‡ŗē”³čÆ‰ć€‚" -#: src/view/screens/Settings.tsx:460 +#: src/view/screens/Settings/index.tsx:466 msgid "Appearance" msgstr "外观" @@ -319,11 +323,11 @@ msgstr "ä½ ē”®å®šč¦åˆ é™¤čæ™ę” App 专用密码 \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "ä½ ē”®å®šč¦äø¢å¼ƒę­¤č‰ēØæå—ļ¼Ÿ" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ä½ ē”®å®šå—ļ¼Ÿ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ä½ ē”®å®šå—ļ¼Ÿę­¤ę“ä½œę— ę³•ę’¤é”€ć€‚" @@ -339,21 +343,21 @@ msgstr "č‰ŗęœÆ" msgid "Artistic or non-erotic nudity." msgstr "č‰ŗęœÆä½œå“ęˆ–éžč‰²ęƒ…ēš„č£øä½“ć€‚" -#: src/view/com/auth/create/CreateAccount.tsx:147 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:170 -#: src/view/com/auth/login/LoginForm.tsx:256 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:174 +#: src/view/com/auth/login/LoginForm.tsx:259 #: src/view/com/auth/login/SetNewPasswordForm.tsx:179 #: src/view/com/modals/report/InputIssueDetails.tsx:46 -#: src/view/com/post-thread/PostThread.tsx:413 -#: src/view/com/post-thread/PostThread.tsx:463 #: src/view/com/post-thread/PostThread.tsx:471 -#: src/view/com/profile/ProfileHeader.tsx:688 +#: src/view/com/post-thread/PostThread.tsx:521 +#: src/view/com/post-thread/PostThread.tsx:529 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "čæ”å›ž" -#: src/view/com/post-thread/PostThread.tsx:421 +#: src/view/com/post-thread/PostThread.tsx:479 msgctxt "action" msgid "Back" msgstr "čæ”å›ž" @@ -362,42 +366,42 @@ msgstr "čæ”å›ž" msgid "Based on your interest in {interestsText}" msgstr "åŸŗäŗŽä½ åÆ¹ {interestsText} ę„Ÿå…“č¶£" -#: src/view/screens/Settings.tsx:517 +#: src/view/screens/Settings/index.tsx:523 msgid "Basics" msgstr "åŸŗē”€äæ”ęÆ" -#: src/view/com/auth/create/Step1.tsx:194 +#: src/view/com/auth/create/Step1.tsx:250 #: src/view/com/modals/BirthDateSettings.tsx:73 msgid "Birthday" msgstr "ē”Ÿę—„" -#: src/view/screens/Settings.tsx:340 +#: src/view/screens/Settings/index.tsx:340 msgid "Birthday:" msgstr "ē”Ÿę—„:" -#: src/view/com/profile/ProfileHeader.tsx:286 -#: src/view/com/profile/ProfileHeader.tsx:393 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "å±č”½č“¦ęˆ·" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "å±č”½č“¦ęˆ·" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "å±č”½åˆ—č”Ø" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "å±č”½čæ™äŗ›č“¦ęˆ·ļ¼Ÿ" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "å±č”½čæ™äøŖåˆ—č”Ø" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "å·²å±č”½" @@ -410,7 +414,7 @@ msgstr "å·²å±č”½č“¦ęˆ·" msgid "Blocked Accounts" msgstr "å·²å±č”½č“¦ęˆ·" -#: src/view/com/profile/ProfileHeader.tsx:288 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "č¢«å±č”½ēš„č“¦ęˆ·ę— ę³•åœØä½ ēš„åø–å­äø­å›žå¤ć€ęåŠä½ ęˆ–ä»„å…¶ä»–ę–¹å¼äøŽä½ äŗ’åŠØć€‚" @@ -418,22 +422,29 @@ msgstr "č¢«å±č”½ēš„č“¦ęˆ·ę— ę³•åœØä½ ēš„åø–å­äø­å›žå¤ć€ęåŠä½ ęˆ–ä»„å…¶ä»– msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "č¢«å±č”½ēš„č“¦ęˆ·ę— ę³•åœØä½ ēš„åø–å­äø­å›žå¤ć€ęåŠä½ ęˆ–ä»„å…¶ä»–ę–¹å¼äøŽä½ äŗ’åŠØć€‚ä½ å°†äøä¼šēœ‹åˆ°ä»–ä»¬ę‰€å‘ēš„å†…å®¹ļ¼ŒåŒę ·ä»–ä»¬ä¹Ÿę— ę³•ęŸ„ēœ‹ä½ ēš„å†…å®¹ć€‚" -#: src/view/com/post-thread/PostThread.tsx:272 +#: src/view/com/post-thread/PostThread.tsx:324 msgid "Blocked post." msgstr "å·²å±č”½åø–å­ć€‚" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "å±č”½ę˜Æå…¬å…±ę€§ēš„ć€‚č¢«å±č”½ēš„č“¦ęˆ·ę— ę³•åœØä½ ēš„åø–å­äø­å›žå¤ć€ęåŠä½ ęˆ–ä»„å…¶ä»–ę–¹å¼äøŽä½ äŗ’åŠØć€‚" #: src/view/com/auth/HomeLoggedOutCTA.tsx:93 +#: src/view/com/auth/SplashScreen.web.tsx:133 msgid "Blog" msgstr "博客" #: src/view/com/auth/HomeLoggedOutCTA.tsx:31 +#: src/view/com/auth/server-input/index.tsx:89 +#: src/view/com/auth/server-input/index.tsx:90 msgid "Bluesky" msgstr "Bluesky" +#: src/view/com/auth/server-input/index.tsx:150 +msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:80 msgid "Bluesky is flexible." @@ -458,24 +469,25 @@ msgid "Bluesky will not show your profile and posts to logged-out users. Other a msgstr "Bluesky äøä¼šå‘ęœŖē™»å½•ēš„ē”Øęˆ·ę˜¾ē¤ŗä½ ēš„äøŖäŗŗčµ„ę–™å’Œåø–å­ć€‚ä½†å…¶ä»–åŗ”ē”ØåÆčƒ½äøä¼šéµē…§ę­¤čÆ·ę±‚ļ¼Œčæ™ę— ę³•ē”®äæä½ ēš„č“¦ęˆ·éšē§ć€‚" #: src/view/com/modals/ServerInput.tsx:78 -msgid "Bluesky.Social" -msgstr "Bluesky.Social" +#~ msgid "Bluesky.Social" +#~ msgstr "Bluesky.Social" #: src/screens/Onboarding/index.tsx:33 msgid "Books" msgstr "ä¹¦ē±" -#: src/view/screens/Settings.tsx:841 +#: src/view/screens/Settings/index.tsx:859 msgid "Build version {0} {1}" msgstr "ęž„å»ŗē‰ˆęœ¬å· {0} {1}" #: src/view/com/auth/HomeLoggedOutCTA.tsx:87 +#: src/view/com/auth/SplashScreen.web.tsx:128 msgid "Business" msgstr "商劔" #: src/view/com/modals/ServerInput.tsx:115 -msgid "Button disabled. Input custom domain to proceed." -msgstr "ęŒ‰é’®å·²ē¦ē”Øć€‚č¾“å…„č‡Ŗå®šä¹‰åŸŸåä»„ē»§ē»­ć€‚" +#~ msgid "Button disabled. Input custom domain to proceed." +#~ msgstr "ęŒ‰é’®å·²ē¦ē”Øć€‚č¾“å…„č‡Ŗå®šä¹‰åŸŸåä»„ē»§ē»­ć€‚" #: src/view/com/profile/ProfileSubpageHeader.tsx:157 msgid "by —" @@ -494,8 +506,8 @@ msgid "by you" msgstr "ę„č‡Ŗä½ " #: src/view/com/composer/photos/OpenCameraBtn.tsx:60 -#: src/view/com/util/UserAvatar.tsx:221 -#: src/view/com/util/UserBanner.tsx:38 +#: src/view/com/util/UserAvatar.tsx:224 +#: src/view/com/util/UserBanner.tsx:40 msgid "Camera" msgstr "ē›øęœŗ" @@ -503,7 +515,7 @@ msgstr "ē›øęœŗ" msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "åŖčƒ½åŒ…å«å­—ęÆć€ę•°å­—ć€ē©ŗę ¼ć€ē “ęŠ˜å·åŠäø‹åˆ’ēŗæć€‚ 长度必锻至少 4 äøŖå­—ē¬¦ļ¼Œä½†äøč¶…čæ‡ 32 个字符。" -#: src/components/Prompt.tsx:92 +#: src/components/Prompt.tsx:91 #: src/view/com/composer/Composer.tsx:300 #: src/view/com/composer/Composer.tsx:305 #: src/view/com/modals/ChangeEmail.tsx:218 @@ -563,17 +575,17 @@ msgstr "ę’¤é”€ęœē“¢" msgid "Cancel waitlist signup" msgstr "ę’¤é”€å€™č”„åˆ—č”Øē”³čÆ·" -#: src/view/screens/Settings.tsx:334 +#: src/view/screens/Settings/index.tsx:334 msgctxt "action" msgid "Change" msgstr "曓改" -#: src/view/screens/Settings.tsx:690 +#: src/view/screens/Settings/index.tsx:696 msgid "Change handle" msgstr "ę›“ę”¹ē”Øęˆ·čÆ†åˆ«ē¬¦" #: src/view/com/modals/ChangeHandle.tsx:161 -#: src/view/screens/Settings.tsx:699 +#: src/view/screens/Settings/index.tsx:705 msgid "Change Handle" msgstr "ę›“ę”¹ē”Øęˆ·čÆ†åˆ«ē¬¦" @@ -581,11 +593,11 @@ msgstr "ę›“ę”¹ē”Øęˆ·čÆ†åˆ«ē¬¦" msgid "Change my email" msgstr "ę›“ę”¹ęˆ‘ēš„é‚®ē®±åœ°å€" -#: src/view/screens/Settings.tsx:726 +#: src/view/screens/Settings/index.tsx:732 msgid "Change password" msgstr "曓改密码" -#: src/view/screens/Settings.tsx:735 +#: src/view/screens/Settings/index.tsx:741 msgid "Change Password" msgstr "曓改密码" @@ -593,7 +605,7 @@ msgstr "曓改密码" msgid "Change post language to {0}" msgstr "ę›“ę”¹åø–å­ēš„å‘åøƒčÆ­čØ€č‡³ {0}" -#: src/view/screens/Settings.tsx:727 +#: src/view/screens/Settings/index.tsx:733 msgid "Change your Bluesky password" msgstr "ę›“ę”¹ä½ ēš„ Bluesky 密码" @@ -601,8 +613,8 @@ msgstr "ę›“ę”¹ä½ ēš„ Bluesky 密码" msgid "Change Your Email" msgstr "ę›“ę”¹ä½ ēš„é‚®ē®±åœ°å€" -#: src/screens/Deactivated.tsx:73 -#: src/screens/Deactivated.tsx:77 +#: src/screens/Deactivated.tsx:72 +#: src/screens/Deactivated.tsx:76 msgid "Check my status" msgstr "ę£€ęŸ„ęˆ‘ēš„ēŠ¶ę€" @@ -622,11 +634,11 @@ msgstr "ęŸ„ēœ‹å‘é€č‡³ä½ ē”µå­é‚®ē®±ēš„ē”®č®¤é‚®ä»¶ļ¼Œå¹¶åœØäø‹ę–¹č¾“å…„ę”¶åˆ° msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "选ꋩ \"ę‰€ęœ‰äŗŗ\" ęˆ–ę˜Æ \"ę²”ęœ‰äŗŗ\"" -#: src/view/screens/Settings.tsx:691 +#: src/view/screens/Settings/index.tsx:697 msgid "Choose a new Bluesky username or create" msgstr "é€‰ę‹©äø€äøŖę–°ēš„ Bluesky ē”Øęˆ·åęˆ–é‡ę–°åˆ›å»ŗ" -#: src/view/com/modals/ServerInput.tsx:38 +#: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "é€‰ę‹©ęœåŠ”" @@ -643,29 +655,29 @@ msgstr "é€‰ę‹©åÆę”¹čæ›ä½ č‡Ŗå®šä¹‰äæ”ęÆęµēš„ē®—ę³•ć€‚" msgid "Choose your main feeds" msgstr "é€‰ę‹©ä½ ēš„é¦–é€‰äæ”ęÆęµ" -#: src/view/com/auth/create/Step1.tsx:163 +#: src/view/com/auth/create/Step1.tsx:219 msgid "Choose your password" msgstr "é€‰ę‹©ä½ ēš„åÆ†ē " -#: src/view/screens/Settings.tsx:816 -#: src/view/screens/Settings.tsx:817 +#: src/view/screens/Settings/index.tsx:834 +#: src/view/screens/Settings/index.tsx:835 msgid "Clear all legacy storage data" msgstr "ęø…é™¤ę‰€ęœ‰ę—§å­˜å‚Øę•°ę®" -#: src/view/screens/Settings.tsx:819 +#: src/view/screens/Settings/index.tsx:837 msgid "Clear all legacy storage data (restart after this)" msgstr "ęø…é™¤ę‰€ęœ‰ę—§å­˜å‚Øę•°ę®ļ¼ˆå¹¶é‡åÆļ¼‰" -#: src/view/screens/Settings.tsx:828 -#: src/view/screens/Settings.tsx:829 +#: src/view/screens/Settings/index.tsx:846 +#: src/view/screens/Settings/index.tsx:847 msgid "Clear all storage data" msgstr "ęø…é™¤ę‰€ęœ‰ę•°ę®" -#: src/view/screens/Settings.tsx:831 +#: src/view/screens/Settings/index.tsx:849 msgid "Clear all storage data (restart after this)" msgstr "ęø…é™¤ę‰€ęœ‰ę•°ę®ļ¼ˆå¹¶é‡åÆļ¼‰" -#: src/view/com/util/forms/SearchInput.tsx:74 +#: src/view/com/util/forms/SearchInput.tsx:88 #: src/view/screens/Search/Search.tsx:674 msgid "Clear search query" msgstr "ęø…é™¤ęœē“¢åŽ†å²č®°å½•" @@ -683,7 +695,8 @@ msgstr "갔豔" msgid "Close" msgstr "关闭" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "å…³é—­ę“»åŠØåÆ¹čÆę”†" @@ -735,7 +748,7 @@ msgstr "喜剧" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:228 +#: src/Navigation.tsx:227 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "ē¤¾ē¾¤å‡†åˆ™" @@ -744,6 +757,10 @@ msgstr "ē¤¾ē¾¤å‡†åˆ™" msgid "Complete onboarding and start using your account" msgstr "å®Œęˆå¼•åÆ¼å¹¶å¼€å§‹ä½æē”Øä½ ēš„č“¦ęˆ·" +#: src/view/com/auth/create/Step3.tsx:73 +msgid "Complete the challenge" +msgstr "" + #: src/view/com/composer/Composer.tsx:417 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "ę’°å†™åø–å­ēš„é•æåŗ¦ęœ€å¤šäøŗ {MAX_GRAPHEME_LENGTH} 个字符" @@ -756,12 +773,12 @@ msgstr "ę’°å†™å›žå¤" msgid "Configure content filtering setting for category: {0}" msgstr "é…ē½®ē±»åˆ«ēš„å†…å®¹čæ‡ę»¤č®¾ē½®ļ¼š{0}" -#: src/components/Prompt.tsx:114 +#: src/components/Prompt.tsx:113 #: src/view/com/modals/AppealLabel.tsx:98 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "甮认" @@ -785,7 +802,7 @@ msgstr "甮认内容语言设置" msgid "Confirm delete account" msgstr "ē”®č®¤åˆ é™¤č“¦ęˆ·" -#: src/view/com/modals/ContentFilteringSettings.tsx:151 +#: src/view/com/modals/ContentFilteringSettings.tsx:156 msgid "Confirm your age to enable adult content." msgstr "ē”®č®¤ä½ ēš„å¹“é¾„ä»„åÆē”Øęˆäŗŗå†…å®¹ć€‚" @@ -799,12 +816,12 @@ msgstr "验证码" msgid "Confirms signing up {email} to the waitlist" msgstr "甮认将 {email} ę³Øå†Œåˆ°å€™č”„åˆ—č”Ø" -#: src/view/com/auth/create/CreateAccount.tsx:182 -#: src/view/com/auth/login/LoginForm.tsx:275 +#: src/view/com/auth/create/CreateAccount.tsx:193 +#: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "čæžęŽ„äø­..." -#: src/view/com/auth/create/CreateAccount.tsx:202 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "č”ē³»ę”ÆęŒ" @@ -834,11 +851,11 @@ msgstr "å†…å®¹č­¦å‘Š" msgid "Content warnings" msgstr "å†…å®¹č­¦å‘Š" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:155 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:170 #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -847,15 +864,15 @@ msgstr "ē»§ē»­" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "继续下一歄" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:152 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:167 msgid "Continue to the next step" msgstr "继续下一歄" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 msgid "Continue to the next step without following any accounts" msgstr "äøå…³ę³Øä»»ä½•č“¦ęˆ·ļ¼Œē»§ē»­äø‹äø€ę­„" @@ -868,13 +885,13 @@ msgstr "烹鄪" msgid "Copied" msgstr "已复制" -#: src/view/screens/Settings.tsx:243 +#: src/view/screens/Settings/index.tsx:241 msgid "Copied build version to clipboard" msgstr "å·²å¤åˆ¶ęž„å»ŗē‰ˆęœ¬å·č‡³å‰Ŗč““ęæ" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "å·²å¤åˆ¶č‡³å‰Ŗč““ęæ" @@ -886,28 +903,28 @@ msgstr "已复制 App 专用密码" msgid "Copy" msgstr "复制" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "å¤åˆ¶åˆ—č”Øé“¾ęŽ„" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "å¤åˆ¶åø–å­é“¾ęŽ„" -#: src/view/com/profile/ProfileHeader.tsx:342 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "å¤åˆ¶äøŖäŗŗčµ„ę–™é“¾ęŽ„" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "å¤åˆ¶åø–å­ę–‡å­—" -#: src/Navigation.tsx:233 +#: src/Navigation.tsx:232 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "ē‰ˆęƒč®øåÆ" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ę— ę³•åŠ č½½äæ”ęÆęµ" @@ -916,20 +933,20 @@ msgid "Could not load list" msgstr "ę— ę³•åŠ č½½åˆ—č”Ø" #: src/view/com/auth/create/Step2.tsx:91 -msgid "Country" -msgstr "国家" +#~ msgid "Country" +#~ msgstr "国家" #: src/view/com/auth/HomeLoggedOutCTA.tsx:62 -#: src/view/com/auth/SplashScreen.tsx:46 -#: src/view/com/auth/SplashScreen.web.tsx:77 +#: src/view/com/auth/SplashScreen.tsx:71 +#: src/view/com/auth/SplashScreen.web.tsx:81 msgid "Create a new account" msgstr "åˆ›å»ŗę–°ēš„č“¦ęˆ·" -#: src/view/screens/Settings.tsx:384 +#: src/view/screens/Settings/index.tsx:384 msgid "Create a new Bluesky account" msgstr "åˆ›å»ŗę–°ēš„ Bluesky 蓦ꈷ" -#: src/view/com/auth/create/CreateAccount.tsx:122 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "åˆ›å»ŗč“¦ęˆ·" @@ -938,7 +955,7 @@ msgid "Create App Password" msgstr "åˆ›å»ŗ App 专用密码" #: src/view/com/auth/HomeLoggedOutCTA.tsx:54 -#: src/view/com/auth/SplashScreen.tsx:43 +#: src/view/com/auth/SplashScreen.tsx:68 msgid "Create new account" msgstr "åˆ›å»ŗę–°ēš„č“¦ęˆ·" @@ -962,12 +979,17 @@ msgstr "åˆ›å»ŗåø¦ęœ‰ē¼©ē•„å›¾ēš„å”ē‰‡ć€‚čÆ„å”ē‰‡é“¾ęŽ„åˆ° {url}" msgid "Culture" msgstr "ę–‡åŒ–" +#: src/view/com/auth/server-input/index.tsx:95 +#: src/view/com/auth/server-input/index.tsx:96 +msgid "Custom" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:389 -#: src/view/com/modals/ServerInput.tsx:102 msgid "Custom domain" msgstr "č‡Ŗå®šä¹‰åŸŸå" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:106 +#: src/view/screens/Feeds.tsx:692 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "ē”±ē¤¾åŒŗęž„å»ŗēš„č‡Ŗå®šä¹‰äæ”ęÆęµčƒ½äøŗä½ åø¦ę„ę–°ēš„ä½“éŖŒļ¼Œå¹¶åø®åŠ©ä½ ę‰¾åˆ°ä½ å–œę¬¢ēš„å†…å®¹ć€‚" @@ -979,8 +1001,8 @@ msgstr "č‡Ŗå®šä¹‰å¤–éƒØē«™ē‚¹ēš„åŖ’ä½“ć€‚" #~ msgid "Danger Zone" #~ msgstr "å®žéŖŒå®¤" -#: src/view/screens/Settings.tsx:479 -#: src/view/screens/Settings.tsx:505 +#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:511 msgid "Dark" msgstr "귱黑" @@ -988,7 +1010,7 @@ msgstr "귱黑" msgid "Dark mode" msgstr "ę·±č‰²ęØ”å¼" -#: src/view/screens/Settings.tsx:492 +#: src/view/screens/Settings/index.tsx:498 msgid "Dark Theme" msgstr "ę·±č‰²ęØ”å¼" @@ -996,7 +1018,7 @@ msgstr "ę·±č‰²ęØ”å¼" msgid "Debug panel" msgstr "č°ƒčÆ•é¢ęæ" -#: src/view/screens/Settings.tsx:743 +#: src/view/screens/Settings/index.tsx:772 msgid "Delete account" msgstr "åˆ é™¤č“¦å·" @@ -1009,8 +1031,8 @@ msgstr "åˆ é™¤č“¦å·" msgid "Delete app password" msgstr "删除 App 专用密码" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "åˆ é™¤åˆ—č”Ø" @@ -1022,23 +1044,23 @@ msgstr "åˆ é™¤ęˆ‘ēš„č“¦ęˆ·" #~ msgid "Delete my account…" #~ msgstr "åˆ é™¤ęˆ‘ēš„č“¦ęˆ·ā€¦" -#: src/view/screens/Settings.tsx:755 +#: src/view/screens/Settings/index.tsx:784 msgid "Delete My Account…" msgstr "åˆ é™¤ęˆ‘ēš„č“¦ęˆ·ā€¦" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "åˆ é™¤åø–å­" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "åˆ é™¤čæ™ę”åø–å­ļ¼Ÿ" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "已删除" -#: src/view/com/post-thread/PostThread.tsx:264 +#: src/view/com/post-thread/PostThread.tsx:316 msgid "Deleted post." msgstr "å·²åˆ é™¤åø–å­ć€‚" @@ -1050,14 +1072,14 @@ msgid "Description" msgstr "ęčæ°" #: src/view/screens/Settings.tsx:760 -msgid "Developer Tools" -msgstr "å¼€å‘č€…å·„å…·" +#~ msgid "Developer Tools" +#~ msgstr "å¼€å‘č€…å·„å…·" #: src/view/com/composer/Composer.tsx:211 msgid "Did you want to say anything?" msgstr "ęœ‰ä»€ä¹ˆęƒ³čÆ“ēš„å—ļ¼Ÿ" -#: src/view/screens/Settings.tsx:498 +#: src/view/screens/Settings/index.tsx:504 msgid "Dim" msgstr "ęš—ę·”" @@ -1078,9 +1100,13 @@ msgstr "é˜»ę­¢åŗ”ē”Øå‘ęœŖē™»å½•ē”Øęˆ·ę˜¾ē¤ŗęˆ‘ēš„č“¦ęˆ·" msgid "Discover new custom feeds" msgstr "ęŽ¢ē“¢ę–°ēš„č‡Ŗå®šä¹‰äæ”ęÆęµ" -#: src/view/screens/Feeds.tsx:441 -msgid "Discover new feeds" -msgstr "ęŽ¢ē“¢ę–°ēš„äæ”ęÆęµ" +#: src/view/screens/Feeds.tsx:473 +#~ msgid "Discover new feeds" +#~ msgstr "ęŽ¢ē“¢ę–°ēš„äæ”ęÆęµ" + +#: src/view/screens/Feeds.tsx:689 +msgid "Discover New Feeds" +msgstr "" #: src/view/com/modals/EditProfile.tsx:192 msgid "Display name" @@ -1094,7 +1120,7 @@ msgstr "ę˜¾ē¤ŗåē§°" msgid "Domain verified!" msgstr "åŸŸåå·²č®¤čÆļ¼" -#: src/view/com/auth/create/Step1.tsx:114 +#: src/view/com/auth/create/Step1.tsx:170 msgid "Don't have an invite code?" msgstr "ę²”ęœ‰é‚€čÆ·ē ļ¼Ÿ" @@ -1111,6 +1137,8 @@ msgctxt "action" msgid "Done" msgstr "完成" +#: src/view/com/auth/server-input/index.tsx:165 +#: src/view/com/auth/server-input/index.tsx:166 #: src/view/com/modals/AddAppPasswords.tsx:226 #: src/view/com/modals/AltImage.tsx:139 #: src/view/com/modals/ContentFilteringSettings.tsx:88 @@ -1119,7 +1147,9 @@ msgstr "完成" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 +#: src/view/screens/Settings/ExportCarDialog.tsx:93 +#: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" msgstr "完成" @@ -1131,7 +1161,16 @@ msgstr "完成{extraText}" msgid "Double tap to sign in" msgstr "åŒå‡»ä»„ē™»å½•" -#: src/view/com/composer/text-input/TextInput.web.tsx:244 +#: src/view/screens/Settings/index.tsx:755 +msgid "Download Bluesky account data (repository)" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:59 +#: src/view/screens/Settings/ExportCarDialog.tsx:63 +msgid "Download CAR file" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:247 msgid "Drop to add images" msgstr "ę‹–ę”¾å³åÆę·»åŠ å›¾ē‰‡" @@ -1177,7 +1216,7 @@ msgstr "编辑" msgid "Edit image" msgstr "编辑图片" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "ē¼–č¾‘åˆ—č”ØčÆ¦ęƒ…" @@ -1185,8 +1224,8 @@ msgstr "ē¼–č¾‘åˆ—č”ØčÆ¦ęƒ…" msgid "Edit Moderation List" msgstr "ē¼–č¾‘é™åˆ¶åˆ—č”Ø" -#: src/Navigation.tsx:243 -#: src/view/screens/Feeds.tsx:403 +#: src/Navigation.tsx:242 +#: src/view/screens/Feeds.tsx:434 #: src/view/screens/SavedFeeds.tsx:84 msgid "Edit My Feeds" msgstr "ē¼–č¾‘č‡Ŗå®šä¹‰äæ”ęÆęµ" @@ -1195,15 +1234,15 @@ msgstr "ē¼–č¾‘č‡Ŗå®šä¹‰äæ”ęÆęµ" msgid "Edit my profile" msgstr "编辑个人资料" -#: src/view/com/profile/ProfileHeader.tsx:457 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "编辑资料" -#: src/view/com/profile/ProfileHeader.tsx:462 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "编辑资料" -#: src/view/screens/Feeds.tsx:337 +#: src/view/screens/Feeds.tsx:355 msgid "Edit Saved Feeds" msgstr "ē¼–č¾‘äæå­˜ēš„äæ”ęÆęµ" @@ -1223,17 +1262,15 @@ msgstr "ē¼–č¾‘ä½ ēš„č“¦ęˆ·ęčæ°" msgid "Education" msgstr "教育" -#: src/view/com/auth/create/Step1.tsx:143 -#: src/view/com/auth/create/Step2.tsx:194 -#: src/view/com/auth/create/Step2.tsx:269 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:152 +#: src/view/com/auth/create/Step1.tsx:199 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:156 #: src/view/com/modals/ChangeEmail.tsx:141 #: src/view/com/modals/Waitlist.tsx:88 msgid "Email" msgstr "电子邮箱" -#: src/view/com/auth/create/Step1.tsx:134 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:143 +#: src/view/com/auth/create/Step1.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:147 msgid "Email address" msgstr "é‚®ē®±åœ°å€" @@ -1250,7 +1287,7 @@ msgstr "电子邮箱已曓新" msgid "Email verified" msgstr "ē”µå­é‚®ē®±å·²éŖŒčÆ" -#: src/view/screens/Settings.tsx:312 +#: src/view/screens/Settings/index.tsx:312 msgid "Email:" msgstr "ē”µå­é‚®ē®±ļ¼š" @@ -1258,7 +1295,7 @@ msgstr "ē”µå­é‚®ē®±ļ¼š" msgid "Enable {0} only" msgstr "仅启用 {0}" -#: src/view/com/modals/ContentFilteringSettings.tsx:162 +#: src/view/com/modals/ContentFilteringSettings.tsx:167 msgid "Enable Adult Content" msgstr "åÆē”Øęˆäŗŗå†…å®¹" @@ -1275,11 +1312,11 @@ msgstr "åÆē”Øå¤–éƒØåŖ’ä½“" msgid "Enable media players for" msgstr "启用媒体播放器" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "åÆē”Øę­¤č®¾ē½®ä»„ä»…ęŸ„ēœ‹ä½ å…³ę³Øēš„äŗŗä¹‹é—“ēš„å›žå¤ć€‚" -#: src/view/screens/Profile.tsx:437 +#: src/view/screens/Profile.tsx:455 msgid "End of feed" msgstr "ē»“ęŸäæ”ęÆęµ" @@ -1299,11 +1336,11 @@ msgstr "č¾“å…„ä½ ę”¶åˆ°ēš„ē”®č®¤ē ä»„ę›“ę”¹åÆ†ē ć€‚" msgid "Enter the domain you want to use" msgstr "č¾“å…„ä½ ęƒ³ä½æē”Øēš„åŸŸå" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:103 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:107 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/view/com/auth/create/Step1.tsx:195 +#: src/view/com/auth/create/Step1.tsx:251 #: src/view/com/modals/BirthDateSettings.tsx:74 msgid "Enter your birth date" msgstr "č¾“å…„ä½ ēš„å‡ŗē”Ÿę—„ęœŸ" @@ -1312,7 +1349,7 @@ msgstr "č¾“å…„ä½ ēš„å‡ŗē”Ÿę—„ęœŸ" msgid "Enter your email" msgstr "č¾“å…„ä½ ēš„ē”µå­é‚®ē®±" -#: src/view/com/auth/create/Step1.tsx:139 +#: src/view/com/auth/create/Step1.tsx:195 msgid "Enter your email address" msgstr "č¾“å…„ä½ ēš„ē”µå­é‚®ē®±" @@ -1325,13 +1362,17 @@ msgid "Enter your new email address below." msgstr "čÆ·åœØäø‹ę–¹č¾“å…„ä½ ę–°ēš„ē”µå­é‚®ē®±ć€‚" #: src/view/com/auth/create/Step2.tsx:188 -msgid "Enter your phone number" -msgstr "č¾“å…„ä½ ēš„ę‰‹ęœŗå·ē " +#~ msgid "Enter your phone number" +#~ msgstr "č¾“å…„ä½ ēš„ę‰‹ęœŗå·ē " #: src/view/com/auth/login/Login.tsx:99 msgid "Enter your username and password" msgstr "č¾“å…„ä½ ēš„ē”Øęˆ·åå’ŒåÆ†ē " +#: src/view/com/auth/create/Step3.tsx:67 +msgid "Error receiving captcha response." +msgstr "" + #: src/view/screens/Search/Search.tsx:109 msgid "Error:" msgstr "é”™čÆÆļ¼š" @@ -1366,6 +1407,15 @@ msgstr "å±•å¼€ę›æä»£ę–‡ęœ¬" msgid "Expand or collapse the full post you are replying to" msgstr "å±•å¼€ęˆ–ęŠ˜å ä½ č¦å›žå¤ēš„å®Œę•“åø–å­" +#: src/view/screens/Settings/index.tsx:753 +msgid "Export my data" +msgstr "" + +#: src/view/screens/Settings/ExportCarDialog.tsx:44 +#: src/view/screens/Settings/index.tsx:764 +msgid "Export My Data" +msgstr "" + #: src/view/com/modals/EmbedConsent.tsx:64 msgid "External Media" msgstr "å¤–éƒØåŖ’ä½“" @@ -1375,13 +1425,13 @@ 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:259 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 -#: src/view/screens/Settings.tsx:651 +#: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" msgstr "å¤–éƒØåŖ’ä½“é¦–é€‰é”¹" -#: src/view/screens/Settings.tsx:642 +#: src/view/screens/Settings/index.tsx:648 msgid "External media settings" msgstr "å¤–éƒØåŖ’ä½“č®¾ē½®" @@ -1394,7 +1444,7 @@ msgstr "åˆ›å»ŗ App 专用密码失蓄。" msgid "Failed to create the list. Check your internet connection and try again." msgstr "ę— ę³•åˆ›å»ŗåˆ—č”Øć€‚čÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡čÆ•ć€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "ę— ę³•åˆ é™¤åø–å­ļ¼ŒčÆ·é‡čÆ•" @@ -1403,15 +1453,15 @@ msgstr "ę— ę³•åˆ é™¤åø–å­ļ¼ŒčÆ·é‡čÆ•" msgid "Failed to load recommended feeds" msgstr "ę— ę³•åŠ č½½ęŽØčäæ”ęÆęµ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:192 msgid "Feed" msgstr "俔息流" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "俔息流由 {0} åˆ›å»ŗ" -#: src/view/screens/Feeds.tsx:597 +#: src/view/screens/Feeds.tsx:605 msgid "Feed offline" msgstr "俔息流已离线" @@ -1419,18 +1469,19 @@ msgstr "俔息流已离线" msgid "Feed Preferences" msgstr "俔息流首选锹" -#: src/view/shell/desktop/RightNav.tsx:73 -#: src/view/shell/Drawer.tsx:314 +#: src/view/shell/desktop/RightNav.tsx:61 +#: src/view/shell/Drawer.tsx:311 msgid "Feedback" msgstr "反馈" -#: src/Navigation.tsx:443 -#: src/view/screens/Feeds.tsx:514 -#: src/view/screens/Profile.tsx:175 +#: src/Navigation.tsx:445 +#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:524 +#: src/view/screens/Profile.tsx:184 #: src/view/shell/bottom-bar/BottomBar.tsx:181 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:479 -#: src/view/shell/Drawer.tsx:480 +#: src/view/shell/Drawer.tsx:476 +#: src/view/shell/Drawer.tsx:477 msgid "Feeds" msgstr "俔息流" @@ -1446,7 +1497,7 @@ msgstr "äæ”ęÆęµē”±ē”Øęˆ·åˆ›å»ŗå¹¶ē®”ē†ć€‚é€‰ę‹©äø€äŗ›ä½ ę„Ÿå…“č¶£ēš„äæ”ęÆęµ msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "åˆ›å»ŗäæ”ęÆęµč¦ę±‚äø€äŗ›ē¼–ēØ‹åŸŗē”€ć€‚ęŸ„ēœ‹ <0/> ä»„čŽ·å–čÆ¦ęƒ…ć€‚" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "äæ”ęÆęµä¹ŸåÆä»„ę˜ÆčÆé¢˜ę€§ēš„ļ¼" @@ -1472,9 +1523,13 @@ msgstr "ä½æē”Øå³ä¾§ēš„å·„å…·ę„ęœē“¢ē”Øęˆ·" msgid "Finding similar accounts..." msgstr "åÆ»ę‰¾ē±»ä¼¼ēš„č“¦ęˆ·..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "å¾®č°ƒä½ åœØäø»é”µäøŠę‰€ēœ‹åˆ°ēš„å†…å®¹ć€‚" +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "å¾®č°ƒä½ åœØäø»é”µäøŠę‰€ēœ‹åˆ°ēš„å†…å®¹ć€‚" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1497,21 +1552,24 @@ msgstr "氓平翻转" msgid "Flip vertically" msgstr "åž‚ē›“ēæ»č½¬" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:513 +msgid "Follow" +msgstr "关注" + #: src/view/com/profile/FollowButton.tsx:64 msgctxt "action" msgid "Follow" msgstr "关注" -#: src/view/com/profile/ProfileHeader.tsx:552 -msgid "Follow" -msgstr "关注" - #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 -#: src/view/com/profile/ProfileHeader.tsx:543 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "关注 {0}" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:178 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:179 msgid "Follow All" msgstr "å…³ę³Øę‰€ęœ‰" @@ -1531,7 +1589,7 @@ msgstr "ē”± {0} 关注" msgid "Followed users" msgstr "å·²å…³ę³Øēš„ē”Øęˆ·" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "ä»…é™å·²å…³ę³Øēš„ē”Øęˆ·" @@ -1543,16 +1601,24 @@ msgstr "已关注" msgid "Followers" msgstr "关注者" -#: src/view/com/profile/ProfileHeader.tsx:534 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ę­£åœØå…³ę³Ø" -#: src/view/com/profile/ProfileHeader.tsx:196 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "ę­£åœØå…³ę³Ø {0}" -#: src/view/com/profile/ProfileHeader.tsx:585 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "已关注" @@ -1572,11 +1638,11 @@ msgstr "å‡ŗäŗŽå®‰å…ØåŽŸå› ļ¼Œęˆ‘ä»¬éœ€č¦å‘ä½ ēš„ē”µå­é‚®ē®±å‘é€éŖŒčÆē ć€‚ msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "å‡ŗäŗŽå®‰å…ØåŽŸå› ļ¼Œä½ å°†ę— ę³•å†ę¬”ęŸ„ēœ‹ę­¤å†…å®¹ć€‚å¦‚ęžœä½ äø¢å¤±äŗ†čÆ„åÆ†ē ļ¼Œåˆ™éœ€č¦ē”Ÿęˆäø€äøŖę–°ēš„åÆ†ē ć€‚" -#: src/view/com/auth/login/LoginForm.tsx:238 +#: src/view/com/auth/login/LoginForm.tsx:241 msgid "Forgot" msgstr "忘记" -#: src/view/com/auth/login/LoginForm.tsx:235 +#: src/view/com/auth/login/LoginForm.tsx:238 msgid "Forgot password" msgstr "åæ˜č®°åÆ†ē " @@ -1585,7 +1651,7 @@ msgstr "åæ˜č®°åÆ†ē " msgid "Forgot Password" msgstr "åæ˜č®°åÆ†ē " -#: src/view/com/posts/FeedItem.tsx:189 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "ę„č‡Ŗ <0/>" @@ -1606,8 +1672,8 @@ msgstr "开始" msgid "Go back" msgstr "čæ”å›ž" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1623,9 +1689,9 @@ msgstr "čæ”å›žäøŠäø€ę­„" msgid "Go to @{queryMaybeHandle}" msgstr "转到 @{queryMaybeHandle}" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:185 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:214 -#: src/view/com/auth/login/LoginForm.tsx:285 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:189 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:218 +#: src/view/com/auth/login/LoginForm.tsx:288 #: src/view/com/auth/login/SetNewPasswordForm.tsx:195 #: src/view/com/modals/ChangePassword.tsx:165 msgid "Go to next" @@ -1635,12 +1701,12 @@ msgstr "č½¬åˆ°äø‹äø€äøŖ" msgid "Handle" msgstr "ē”Øęˆ·čÆ†åˆ«ē¬¦" -#: src/view/com/auth/create/CreateAccount.tsx:197 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "ä»»ä½•ē–‘é—®ļ¼Ÿ" -#: src/view/shell/desktop/RightNav.tsx:102 -#: src/view/shell/Drawer.tsx:324 +#: src/view/shell/desktop/RightNav.tsx:90 +#: src/view/shell/Drawer.tsx:321 msgid "Help" msgstr "帮助" @@ -1648,11 +1714,11 @@ msgstr "帮助" msgid "Here are some accounts for you to follow" msgstr "čæ™é‡Œę˜Æäø€äŗ›ęŽØčå…³ę³Øēš„ē”Øęˆ·" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "čæ™é‡Œę˜Æäø€äŗ›ęµč”Œēš„äæ”ęÆęµä¾›ä½ ęŒ‘é€‰ć€‚" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "čæ™é‡Œę˜Æäø€äŗ›åŸŗäŗŽä½ å…“č¶£ę‰€ęŽØčēš„äæ”ęÆęµä¾›ä½ ęŒ‘é€‰ļ¼š{interestsText}怂" @@ -1661,19 +1727,19 @@ msgid "Here is your app password." msgstr "čæ™é‡Œę˜Æä½ ēš„ App 专用密码。" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:41 -#: src/view/com/modals/ContentFilteringSettings.tsx:246 +#: src/view/com/modals/ContentFilteringSettings.tsx:251 #: src/view/com/util/moderation/ContentHider.tsx:105 #: src/view/com/util/moderation/PostHider.tsx:108 msgid "Hide" msgstr "隐藏" -#: src/view/com/modals/ContentFilteringSettings.tsx:219 +#: src/view/com/modals/ContentFilteringSettings.tsx:224 #: src/view/com/notifications/FeedItem.tsx:325 msgctxt "action" msgid "Hide" msgstr "隐藏" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "éšč—åø–å­" @@ -1682,7 +1748,7 @@ msgstr "éšč—åø–å­" msgid "Hide the content" msgstr "éšč—å†…å®¹" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "éšč—čæ™ę”åø–å­ļ¼Ÿ" @@ -1690,7 +1756,7 @@ msgstr "éšč—čæ™ę”åø–å­ļ¼Ÿ" msgid "Hide user list" msgstr "éšč—ē”Øęˆ·åˆ—č”Ø" -#: src/view/com/profile/ProfileHeader.tsx:526 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "åœØä½ ēš„äæ”ęÆęµäø­éšč—ę„č‡Ŗ {0} ēš„åø–å­" @@ -1714,22 +1780,23 @@ msgstr "äæ”ęÆęµęœåŠ”å™Øčæ”å›žé”™čÆÆēš„å“åŗ”ļ¼ŒčÆ·č”ē³»äæ”ęÆęµēš„ē»“ęŠ¤č€… msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ęˆ‘ä»¬ę— ę³•ę‰¾åˆ°čÆ„äæ”ęÆęµļ¼Œä¼¼ä¹Žå·²č¢«åˆ é™¤ć€‚" -#: src/Navigation.tsx:433 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 -#: src/view/shell/Drawer.tsx:401 -#: src/view/shell/Drawer.tsx:402 +#: src/view/shell/Drawer.tsx:398 +#: src/view/shell/Drawer.tsx:399 msgid "Home" msgstr "主锵" -#: src/Navigation.tsx:248 +#: src/Navigation.tsx:247 #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 -#: src/view/screens/Settings.tsx:537 -msgid "Home Feed Preferences" -msgstr "主锵俔息流首选锹" +#: src/view/screens/Settings/index.tsx:543 +#~ msgid "Home Feed Preferences" +#~ msgstr "主锵俔息流首选锹" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:116 +#: src/view/com/auth/create/Step1.tsx:82 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:120 msgid "Hosting provider" msgstr "ę‰˜ē®”ęœåŠ”ęä¾›å•†" @@ -1769,8 +1836,8 @@ msgstr "图片" msgid "Image alt text" msgstr "å›¾ē‰‡ę›æä»£ę–‡ęœ¬" -#: src/view/com/util/UserAvatar.tsx:308 -#: src/view/com/util/UserBanner.tsx:116 +#: src/view/com/util/UserAvatar.tsx:311 +#: src/view/com/util/UserBanner.tsx:118 msgid "Image options" msgstr "图片选锹" @@ -1782,11 +1849,11 @@ msgstr "č¾“å…„å‘é€åˆ°ä½ ē”µå­é‚®ē®±ēš„éŖŒčÆē ä»„é‡ē½®åÆ†ē " msgid "Input confirmation code for account deletion" msgstr "č¾“å…„åˆ é™¤ē”Øęˆ·ēš„éŖŒčÆē " -#: src/view/com/auth/create/Step1.tsx:144 +#: src/view/com/auth/create/Step1.tsx:200 msgid "Input email for Bluesky account" msgstr "输兄 Bluesky č“¦ęˆ·ēš„ē”µå­é‚®ē®±" -#: src/view/com/auth/create/Step1.tsx:102 +#: src/view/com/auth/create/Step1.tsx:158 msgid "Input invite code to proceed" msgstr "输兄邀请码仄继续" @@ -1803,56 +1870,55 @@ msgid "Input password for account deletion" msgstr "č¾“å…„åÆ†ē ä»„åˆ é™¤č“¦ęˆ·" #: src/view/com/auth/create/Step2.tsx:196 -msgid "Input phone number for SMS verification" -msgstr "č¾“å…„ę‰‹ęœŗå·ē čæ›č”ŒēŸ­äæ”éŖŒčÆ" +#~ msgid "Input phone number for SMS verification" +#~ msgstr "č¾“å…„ę‰‹ęœŗå·ē čæ›č”ŒēŸ­äæ”éŖŒčÆ" -#: src/view/com/auth/login/LoginForm.tsx:227 +#: src/view/com/auth/login/LoginForm.tsx:230 msgid "Input the password tied to {identifier}" msgstr "č¾“å…„äøŽ {identifier} å…³č”ēš„åÆ†ē " -#: src/view/com/auth/login/LoginForm.tsx:194 +#: src/view/com/auth/login/LoginForm.tsx:197 msgid "Input the username or email address you used at signup" msgstr "č¾“å…„ę³Øå†Œę—¶ä½æē”Øēš„ē”Øęˆ·åęˆ–ē”µå­é‚®ē®±" #: src/view/com/auth/create/Step2.tsx:271 -msgid "Input the verification code we have texted to you" -msgstr "č¾“å…„ę”¶åˆ°ēš„ēŸ­äæ”éŖŒčÆē " +#~ msgid "Input the verification code we have texted to you" +#~ msgstr "č¾“å…„ę”¶åˆ°ēš„ēŸ­äæ”éŖŒčÆē " #: src/view/com/modals/Waitlist.tsx:90 msgid "Input your email to get on the Bluesky waitlist" msgstr "č¾“å…„ä½ ēš„ē”µå­é‚®ē®±ä»„åŠ å…„ Bluesky å€™č”„åˆ—č”Ø" -#: src/view/com/auth/login/LoginForm.tsx:226 +#: src/view/com/auth/login/LoginForm.tsx:229 msgid "Input your password" msgstr "č¾“å…„ä½ ēš„åÆ†ē " -#: src/view/com/auth/create/Step3.tsx:42 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "č¾“å…„ä½ ēš„ē”Øęˆ·čÆ†åˆ«ē¬¦" -#: src/view/com/post-thread/PostThreadItem.tsx:231 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "åø–å­č®°å½•ę— ę•ˆęˆ–äøå—ę”ÆęŒ" -#: src/view/com/auth/login/LoginForm.tsx:115 +#: src/view/com/auth/login/LoginForm.tsx:113 msgid "Invalid username or password" msgstr "ē”Øęˆ·åęˆ–åÆ†ē ę— ę•ˆ" #: src/view/screens/Settings.tsx:411 -msgid "Invite" -msgstr "邀请" +#~ msgid "Invite" +#~ msgstr "邀请" #: src/view/com/modals/InviteCodes.tsx:93 -#: src/view/screens/Settings.tsx:399 msgid "Invite a Friend" msgstr "é‚€čÆ·ęœ‹å‹" -#: src/view/com/auth/create/Step1.tsx:92 -#: src/view/com/auth/create/Step1.tsx:101 +#: src/view/com/auth/create/Step1.tsx:148 +#: src/view/com/auth/create/Step1.tsx:157 msgid "Invite code" msgstr "邀请码" -#: src/view/com/auth/create/state.ts:199 +#: src/view/com/auth/create/state.ts:158 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "é‚€čÆ·ē ę— ę•ˆļ¼ŒčÆ·ę£€ęŸ„ä½ č¾“å…„ēš„é‚€čÆ·ē å¹¶é‡čÆ•ć€‚" @@ -1861,8 +1927,8 @@ msgid "Invite codes: {0} available" msgstr "é‚€čÆ·ē ļ¼š{0} åÆē”Ø" #: src/view/shell/Drawer.tsx:645 -msgid "Invite codes: {invitesAvailable} available" -msgstr "é‚€čÆ·ē ļ¼š{invitesAvailable} åÆē”Ø" +#~ msgid "Invite codes: {invitesAvailable} available" +#~ msgstr "é‚€čÆ·ē ļ¼š{invitesAvailable} åÆē”Ø" #: src/view/com/modals/InviteCodes.tsx:169 msgid "Invite codes: 1 available" @@ -1873,6 +1939,7 @@ msgid "It shows posts from the people you follow as they happen." msgstr "ä»–ä¼šę˜¾ē¤ŗä½ ę‰€å…³ę³Øēš„äŗŗå‘åøƒēš„åø–å­ć€‚" #: src/view/com/auth/HomeLoggedOutCTA.tsx:99 +#: src/view/com/auth/SplashScreen.web.tsx:138 msgid "Jobs" msgstr "巄作" @@ -1880,8 +1947,8 @@ msgstr "巄作" msgid "Join the waitlist" msgstr "åŠ å…„å€™č”„åˆ—č”Ø" -#: src/view/com/auth/create/Step1.tsx:118 -#: src/view/com/auth/create/Step1.tsx:122 +#: src/view/com/auth/create/Step1.tsx:174 +#: src/view/com/auth/create/Step1.tsx:178 msgid "Join the waitlist." msgstr "åŠ å…„å€™č”„åˆ—č”Øć€‚" @@ -1897,7 +1964,7 @@ msgstr "新闻学" msgid "Language selection" msgstr "选择语言" -#: src/view/screens/Settings.tsx:588 +#: src/view/screens/Settings/index.tsx:594 msgid "Language settings" msgstr "语言设置" @@ -1906,7 +1973,7 @@ msgstr "语言设置" msgid "Language Settings" msgstr "语言设置" -#: src/view/screens/Settings.tsx:597 +#: src/view/screens/Settings/index.tsx:603 msgid "Languages" msgstr "语言" @@ -1944,11 +2011,11 @@ msgstr "å…ØéƒØäøé€‰äø­ä»„ęŸ„ēœ‹ä»»ä½•čÆ­čØ€ć€‚" msgid "Leaving Bluesky" msgstr "离开 Bluesky" -#: src/screens/Deactivated.tsx:129 +#: src/screens/Deactivated.tsx:128 msgid "left to go." msgstr "å°šęœŖå®Œęˆć€‚" -#: src/view/screens/Settings.tsx:280 +#: src/view/screens/Settings/index.tsx:278 msgid "Legacy storage cleared, you need to restart the app now." msgstr "ę—§å­˜å‚Øę•°ę®å·²ęø…é™¤ļ¼Œä½ éœ€č¦ē«‹å³é‡ę–°åÆåŠØåŗ”ē”Øć€‚" @@ -1961,16 +2028,17 @@ msgstr "č®©ęˆ‘ä»¬ę„é‡ē½®ä½ ēš„åÆ†ē ļ¼" msgid "Let's go!" msgstr "č®©ęˆ‘ä»¬å¼€å§‹ļ¼" -#: src/view/com/util/UserAvatar.tsx:245 -#: src/view/com/util/UserBanner.tsx:60 +#: src/view/com/util/UserAvatar.tsx:248 +#: src/view/com/util/UserBanner.tsx:62 msgid "Library" msgstr "图书馆" -#: src/view/screens/Settings.tsx:473 +#: src/view/screens/Settings/index.tsx:479 msgid "Light" msgstr "亮色" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Like" msgstr "ē‚¹čµž" @@ -1978,7 +2046,7 @@ msgstr "ē‚¹čµž" msgid "Like this feed" msgstr "ē‚¹čµžčæ™äøŖäæ”ęÆęµ" -#: src/Navigation.tsx:198 +#: src/Navigation.tsx:197 msgid "Liked by" msgstr "ē‚¹čµž" @@ -1987,7 +2055,7 @@ msgstr "ē‚¹čµž" msgid "Liked By" msgstr "ē‚¹čµž" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "{0} {1} ē‚¹čµž" @@ -2003,15 +2071,15 @@ msgstr "ē‚¹čµžä½ ēš„č‡Ŗå®šä¹‰äæ”ęÆęµ" msgid "liked your post" msgstr "ē‚¹čµžä½ ēš„åø–å­" -#: src/view/screens/Profile.tsx:174 +#: src/view/screens/Profile.tsx:183 msgid "Likes" msgstr "ē‚¹čµž" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "ē‚¹čµžčæ™ę”åø–å­" -#: src/Navigation.tsx:167 +#: src/Navigation.tsx:166 msgid "List" msgstr "åˆ—č”Ø" @@ -2019,19 +2087,19 @@ msgstr "åˆ—č”Ø" msgid "List Avatar" msgstr "åˆ—č”Øå¤“åƒ" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "åˆ—č”Øå·²å±č”½" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "åˆ—č”Øē”± {0} åˆ›å»ŗ" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "åˆ—č”Øå·²åˆ é™¤" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "åˆ—č”Øå·²éšč—" @@ -2039,35 +2107,35 @@ msgstr "åˆ—č”Øå·²éšč—" msgid "List Name" msgstr "åˆ—č”Øåē§°" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "å–ę¶ˆå±č”½åˆ—č”Ø" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "å–ę¶ˆéšč—åˆ—č”Ø" #: src/Navigation.tsx:110 -#: src/view/screens/Profile.tsx:176 +#: src/view/screens/Profile.tsx:185 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:495 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/Drawer.tsx:492 +#: src/view/shell/Drawer.tsx:493 msgid "Lists" msgstr "åˆ—č”Ø" -#: src/view/com/post-thread/PostThread.tsx:281 -#: src/view/com/post-thread/PostThread.tsx:289 +#: src/view/com/post-thread/PostThread.tsx:333 +#: src/view/com/post-thread/PostThread.tsx:341 msgid "Load more posts" msgstr "åŠ č½½ę›“å¤šåø–å­" -#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:159 msgid "Load new notifications" msgstr "åŠ č½½ę–°ēš„é€šēŸ„" -#: src/view/com/feeds/FeedPage.tsx:190 -#: src/view/screens/Profile.tsx:422 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/com/feeds/FeedPage.tsx:181 +#: src/view/screens/Profile.tsx:440 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "åŠ č½½ę–°ēš„åø–å­" @@ -2076,17 +2144,17 @@ msgid "Loading..." msgstr "加载中..." #: src/view/com/modals/ServerInput.tsx:50 -msgid "Local dev server" -msgstr "ęœ¬åœ°å¼€å‘ęœåŠ”å™Ø" +#~ msgid "Local dev server" +#~ msgstr "ęœ¬åœ°å¼€å‘ęœåŠ”å™Ø" -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:207 msgid "Log" msgstr "ę—„åæ—" -#: src/screens/Deactivated.tsx:150 -#: src/screens/Deactivated.tsx:153 -#: src/screens/Deactivated.tsx:179 -#: src/screens/Deactivated.tsx:182 +#: src/screens/Deactivated.tsx:149 +#: src/screens/Deactivated.tsx:152 +#: src/screens/Deactivated.tsx:178 +#: src/screens/Deactivated.tsx:181 msgid "Log out" msgstr "登出" @@ -2102,7 +2170,15 @@ msgstr "ē™»å½•ęœŖåˆ—å‡ŗēš„č“¦ęˆ·" msgid "Make sure this is where you intend to go!" msgstr "请甮认!" -#: src/view/screens/Profile.tsx:173 +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + +#: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "媒体" @@ -2125,14 +2201,14 @@ msgstr "ę„č‡ŖęœåŠ”å™Øēš„äæ”ęÆļ¼š{0}" #: src/Navigation.tsx:115 #: src/view/screens/Moderation.tsx:64 -#: src/view/screens/Settings.tsx:619 +#: src/view/screens/Settings/index.tsx:625 #: src/view/shell/desktop/LeftNav.tsx:397 -#: src/view/shell/Drawer.tsx:514 -#: src/view/shell/Drawer.tsx:515 +#: src/view/shell/Drawer.tsx:511 +#: src/view/shell/Drawer.tsx:512 msgid "Moderation" msgstr "限制" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "é™åˆ¶åˆ—č”Øē”± {0} åˆ›å»ŗ" @@ -2141,7 +2217,7 @@ msgstr "é™åˆ¶åˆ—č”Øē”± {0} åˆ›å»ŗ" msgid "Moderation list by <0/>" msgstr "é™åˆ¶åˆ—č”Øē”± åˆ›å»ŗ" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2164,7 +2240,7 @@ msgstr "é™åˆ¶åˆ—č”Ø" msgid "Moderation Lists" msgstr "é™åˆ¶åˆ—č”Ø" -#: src/view/screens/Settings.tsx:613 +#: src/view/screens/Settings/index.tsx:619 msgid "Moderation settings" msgstr "é™åˆ¶č®¾ē½®" @@ -2172,17 +2248,17 @@ msgstr "é™åˆ¶č®¾ē½®" msgid "Moderator has chosen to set a general warning on the content." msgstr "é™åˆ¶é€‰ę‹©åÆ¹å†…å®¹č®¾ē½®äø€čˆ¬č­¦å‘Šć€‚" -#: src/view/shell/desktop/Feeds.tsx:53 +#: src/view/shell/desktop/Feeds.tsx:63 msgid "More feeds" msgstr "ę›“å¤šäæ”ęÆęµ" -#: src/view/com/profile/ProfileHeader.tsx:562 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ę›“å¤šé€‰é”¹" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ę›“å¤šåø–å­é€‰é”¹" @@ -2190,31 +2266,35 @@ msgstr "ę›“å¤šåø–å­é€‰é”¹" msgid "Most-liked replies first" msgstr "ęœ€å¤šē‚¹čµžä¼˜å…ˆ" -#: src/view/com/profile/ProfileHeader.tsx:374 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "éšč—č“¦ęˆ·" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "éšč—č“¦ęˆ·" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "éšč—åˆ—č”Ø" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "éšč—čæ™äŗ›č“¦ęˆ·ļ¼Ÿ" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "éšč—čæ™äøŖåˆ—č”Ø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "éšč—č®Øč®ŗäø²" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "å·²éšč—" @@ -2231,7 +2311,7 @@ msgstr "å·²éšč—č“¦ęˆ·" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "å·²éšč—ēš„č“¦ęˆ·å°†äøä¼šåœØä½ ēš„é€šēŸ„ęˆ–ę—¶é—“ēŗæäø­ę˜¾ē¤ŗļ¼Œč¢«éšč—č“¦ęˆ·å°†äøä¼šę”¶åˆ°é€šēŸ„ć€‚" -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "č¢«éšč—ēš„č“¦ęˆ·å°†äøä¼šå¾—ēŸ„ä½ å·²å°†ä»–éšč—ļ¼Œå·²éšč—ēš„č“¦ęˆ·å°†äøä¼šåœØä½ ēš„é€šēŸ„ęˆ–ę—¶é—“ēŗæäø­ę˜¾ē¤ŗć€‚" @@ -2239,7 +2319,7 @@ msgstr "č¢«éšč—ēš„č“¦ęˆ·å°†äøä¼šå¾—ēŸ„ä½ å·²å°†ä»–éšč—ļ¼Œå·²éšč—ēš„č“¦ęˆ· msgid "My Birthday" msgstr "ęˆ‘ēš„ē”Ÿę—„" -#: src/view/screens/Feeds.tsx:399 +#: src/view/screens/Feeds.tsx:663 msgid "My Feeds" msgstr "č‡Ŗå®šä¹‰äæ”ęÆęµ" @@ -2247,10 +2327,14 @@ msgstr "č‡Ŗå®šä¹‰äæ”ęÆęµ" msgid "My Profile" msgstr "个人资料" -#: src/view/screens/Settings.tsx:576 +#: src/view/screens/Settings/index.tsx:582 msgid "My Saved Feeds" msgstr "ęˆ‘äæå­˜ēš„äæ”ęÆęµ" +#: src/view/com/auth/server-input/index.tsx:118 +msgid "my-server.com" +msgstr "" + #: src/view/com/modals/AddAppPasswords.tsx:179 #: src/view/com/modals/CreateOrEditList.tsx:290 msgid "Name" @@ -2264,15 +2348,15 @@ msgstr "åē§°ę˜Æåæ…å”«é”¹" msgid "Nature" msgstr "自然" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:186 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:215 -#: src/view/com/auth/login/LoginForm.tsx:286 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:190 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:219 +#: src/view/com/auth/login/LoginForm.tsx:289 #: src/view/com/auth/login/SetNewPasswordForm.tsx:196 #: src/view/com/modals/ChangePassword.tsx:166 msgid "Navigates to the next screen" msgstr "č½¬åˆ°äø‹äø€é”µ" -#: src/view/shell/Drawer.tsx:73 +#: src/view/shell/Drawer.tsx:71 msgid "Navigates to your profile" msgstr "č½¬åˆ°äøŖäŗŗčµ„ę–™" @@ -2311,16 +2395,17 @@ msgstr "新密码" msgid "New Password" msgstr "新密码" -#: src/view/com/feeds/FeedPage.tsx:201 +#: src/view/com/feeds/FeedPage.tsx:192 msgctxt "action" msgid "New post" msgstr "新帖子" -#: src/view/screens/Feeds.tsx:547 -#: src/view/screens/Profile.tsx:364 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/Feeds.tsx:555 +#: src/view/screens/Notifications.tsx:168 +#: src/view/screens/Profile.tsx:382 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "新帖子" @@ -2342,10 +2427,10 @@ msgstr "ęœ€ę–°å›žå¤ä¼˜å…ˆ" msgid "News" msgstr "ę–°é—»" -#: src/view/com/auth/create/CreateAccount.tsx:161 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:178 -#: src/view/com/auth/login/ForgotPasswordForm.tsx:188 -#: src/view/com/auth/login/LoginForm.tsx:288 +#: src/view/com/auth/create/CreateAccount.tsx:172 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:182 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:291 #: src/view/com/auth/login/SetNewPasswordForm.tsx:187 #: src/view/com/auth/login/SetNewPasswordForm.tsx:198 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:79 @@ -2363,10 +2448,10 @@ msgstr "下一个" msgid "Next image" msgstr "下一张图片" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2377,7 +2462,7 @@ msgstr "åœē”Ø" msgid "No description" msgstr "ę²”ęœ‰ęčæ°" -#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "äøå†å…³ę³Ø {0}" @@ -2390,7 +2475,7 @@ msgstr "ę²”ęœ‰é€šēŸ„ļ¼" msgid "No result" msgstr "ę²”ęœ‰ē»“ęžœ" -#: src/view/screens/Feeds.tsx:490 +#: src/view/screens/Feeds.tsx:495 msgid "No results found for \"{query}\"" msgstr "ęœŖę‰¾åˆ°\"{query}\"ēš„ē»“ęžœ" @@ -2413,6 +2498,7 @@ msgid "Not Applicable." msgstr "äøé€‚ē”Øć€‚" #: src/Navigation.tsx:105 +#: src/view/screens/Profile.tsx:106 msgid "Not Found" msgstr "ęœŖę‰¾åˆ°" @@ -2425,13 +2511,13 @@ msgstr "äøę˜ÆēŽ°åœØ" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ę³Øę„ļ¼šBluesky ę˜Æäø€äøŖå¼€ę”¾ēš„å…¬å…±ē½‘ē»œć€‚ę­¤č®¾ē½®é”¹ä»…é™åˆ¶ä½ ēš„å†…å®¹åœØ Bluesky åŗ”ē”Øå’Œē½‘ē«™äøŠēš„åÆč§ę€§ļ¼Œå…¶ä»–åŗ”ē”ØåÆčƒ½äøå°Šä»Žę­¤č®¾ē½®é”¹ļ¼Œä»åÆčƒ½ä¼šå‘ęœŖē™»å½•ēš„ē”Øęˆ·ę˜¾ē¤ŗä½ ēš„åŠØę€ć€‚" -#: src/Navigation.tsx:448 -#: src/view/screens/Notifications.tsx:120 -#: src/view/screens/Notifications.tsx:144 +#: src/Navigation.tsx:450 +#: src/view/screens/Notifications.tsx:124 +#: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 #: src/view/shell/desktop/LeftNav.tsx:361 -#: src/view/shell/Drawer.tsx:438 -#: src/view/shell/Drawer.tsx:439 +#: src/view/shell/Drawer.tsx:435 +#: src/view/shell/Drawer.tsx:436 msgid "Notifications" msgstr "é€šēŸ„" @@ -2455,7 +2541,7 @@ msgstr "å„½ēš„" msgid "Oldest replies first" msgstr "ęœ€ę—§ēš„å›žå¤ä¼˜å…ˆ" -#: src/view/screens/Settings.tsx:236 +#: src/view/screens/Settings/index.tsx:234 msgid "Onboarding reset" msgstr "é‡ę–°å¼€å§‹å¼•åÆ¼ęµēØ‹" @@ -2467,9 +2553,8 @@ msgstr "č‡³å°‘ęœ‰äø€å¼ å›¾ē‰‡ē¼ŗå¤±äŗ†ę›æä»£ę–‡å­—ć€‚" msgid "Only {0} can reply." msgstr "åŖęœ‰ {0} åÆä»„å›žå¤ć€‚" -#: src/view/com/modals/ProfilePreview.tsx:49 -#: src/view/com/modals/ProfilePreview.tsx:61 #: src/view/screens/AppPasswords.tsx:65 +#: src/view/screens/Profile.tsx:106 msgid "Oops!" msgstr "Oops!" @@ -2482,15 +2567,15 @@ msgstr "打开" msgid "Open emoji picker" msgstr "打开 emoji 选择器" -#: src/view/screens/Settings.tsx:706 +#: src/view/screens/Settings/index.tsx:712 msgid "Open links with in-app browser" msgstr "åœØå†…ē½®ęµč§ˆå™Øäø­ę‰“å¼€é“¾ęŽ„" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ę‰“å¼€åÆ¼čˆŖ" -#: src/view/screens/Settings.tsx:786 +#: src/view/screens/Settings/index.tsx:804 msgid "Open storybook page" msgstr "ę‰“å¼€ę•…äŗ‹ä¹¦ē•Œé¢" @@ -2514,7 +2599,7 @@ msgstr "ę‰“å¼€č®¾å¤‡ē›øęœŗ" msgid "Opens composer" msgstr "打开编辑器" -#: src/view/screens/Settings.tsx:589 +#: src/view/screens/Settings/index.tsx:595 msgid "Opens configurable language settings" msgstr "ę‰“å¼€åÆé…ē½®ēš„čÆ­čØ€č®¾ē½®" @@ -2522,33 +2607,31 @@ msgstr "ę‰“å¼€åÆé…ē½®ēš„čÆ­čØ€č®¾ē½®" msgid "Opens device photo gallery" msgstr "ę‰“å¼€č®¾å¤‡ē›øå†Œ" -#: src/view/com/profile/ProfileHeader.tsx:459 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "ę‰“å¼€äøŖäŗŗčµ„ę–™ļ¼ˆå¦‚åē§°ć€å¤“åƒć€čƒŒę™Æå›¾ē‰‡ć€ęčæ°ē­‰ļ¼‰ē¼–č¾‘å™Ø" -#: src/view/screens/Settings.tsx:643 +#: src/view/screens/Settings/index.tsx:649 msgid "Opens external embeds settings" msgstr "ę‰“å¼€å¤–éƒØåµŒå…„č®¾ē½®" -#: src/view/com/profile/ProfileHeader.tsx:614 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "ę‰“å¼€å…³ę³Øč€…åˆ—č”Ø" -#: src/view/com/profile/ProfileHeader.tsx:633 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "ę‰“å¼€ę­£åœØå…³ę³Øåˆ—č”Ø" #: src/view/screens/Settings.tsx:412 -msgid "Opens invite code list" -msgstr "ę‰“å¼€é‚€čÆ·ē åˆ—č”Ø" +#~ msgid "Opens invite code list" +#~ msgstr "ę‰“å¼€é‚€čÆ·ē åˆ—č”Ø" #: src/view/com/modals/InviteCodes.tsx:172 -#: src/view/shell/desktop/RightNav.tsx:156 -#: src/view/shell/Drawer.tsx:646 msgid "Opens list of invite codes" msgstr "ę‰“å¼€é‚€čÆ·ē åˆ—č”Ø" -#: src/view/screens/Settings.tsx:745 +#: src/view/screens/Settings/index.tsx:774 msgid "Opens modal for account deletion confirmation. Requires email code." msgstr "ę‰“å¼€ē”Øęˆ·åˆ é™¤ē”®č®¤ē•Œé¢ļ¼Œéœ€č¦ē”µå­é‚®ē®±ęŽ„ę”¶éŖŒčÆē ć€‚" @@ -2556,39 +2639,39 @@ msgstr "ę‰“å¼€ē”Øęˆ·åˆ é™¤ē”®č®¤ē•Œé¢ļ¼Œéœ€č¦ē”µå­é‚®ē®±ęŽ„ę”¶éŖŒčÆē ć€‚" msgid "Opens modal for using custom domain" msgstr "ę‰“å¼€ä½æē”Øč‡Ŗå®šä¹‰åŸŸåēš„ęØ”å¼" -#: src/view/screens/Settings.tsx:614 +#: src/view/screens/Settings/index.tsx:620 msgid "Opens moderation settings" msgstr "ę‰“å¼€é™åˆ¶č®¾ē½®" -#: src/view/com/auth/login/LoginForm.tsx:236 +#: src/view/com/auth/login/LoginForm.tsx:239 msgid "Opens password reset form" msgstr "ę‰“å¼€åÆ†ē é‡ē½®ē”³čÆ·" -#: src/view/screens/Feeds.tsx:338 +#: src/view/screens/Feeds.tsx:356 msgid "Opens screen to edit Saved Feeds" msgstr "ę‰“å¼€ē”ØäŗŽē¼–č¾‘å·²äæå­˜äæ”ęÆęµēš„ē•Œé¢" -#: src/view/screens/Settings.tsx:570 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens screen with all saved feeds" msgstr "ę‰“å¼€åŒ…å«ę‰€ęœ‰å·²äæå­˜äæ”ęÆęµēš„ē•Œé¢" -#: src/view/screens/Settings.tsx:670 +#: src/view/screens/Settings/index.tsx:676 msgid "Opens the app password settings page" msgstr "打开 App 专用密码设置锵" -#: src/view/screens/Settings.tsx:529 +#: src/view/screens/Settings/index.tsx:535 msgid "Opens the home feed preferences" msgstr "打开主锵俔息流首选锹" -#: src/view/screens/Settings.tsx:787 +#: src/view/screens/Settings/index.tsx:805 msgid "Opens the storybook page" msgstr "ę‰“å¼€ę•…äŗ‹ä¹¦ē•Œé¢" -#: src/view/screens/Settings.tsx:767 +#: src/view/screens/Settings/index.tsx:793 msgid "Opens the system log page" msgstr "ę‰“å¼€ē³»ē»Ÿę—„åæ—ē•Œé¢" -#: src/view/screens/Settings.tsx:550 +#: src/view/screens/Settings/index.tsx:556 msgid "Opens the threads preferences" msgstr "打开讨论串首选锹" @@ -2605,8 +2688,8 @@ msgid "Other account" msgstr "å…¶ä»–č“¦ęˆ·" #: src/view/com/modals/ServerInput.tsx:88 -msgid "Other service" -msgstr "å…¶ä»–ęœåŠ”" +#~ msgid "Other service" +#~ msgstr "å…¶ä»–ęœåŠ”" #: src/view/com/composer/select-language/SelectLangBtn.tsx:91 msgid "Other..." @@ -2620,9 +2703,9 @@ msgstr "ę— ę³•ę‰¾åˆ°ę­¤é”µé¢" msgid "Page Not Found" msgstr "ę— ę³•ę‰¾åˆ°ę­¤é”µé¢" -#: src/view/com/auth/create/Step1.tsx:158 -#: src/view/com/auth/create/Step1.tsx:168 -#: src/view/com/auth/login/LoginForm.tsx:223 +#: src/view/com/auth/create/Step1.tsx:214 +#: src/view/com/auth/create/Step1.tsx:224 +#: src/view/com/auth/login/LoginForm.tsx:226 #: src/view/com/auth/login/SetNewPasswordForm.tsx:161 #: src/view/com/modals/DeleteAccount.tsx:202 msgid "Password" @@ -2636,11 +2719,11 @@ msgstr "密码已曓新" msgid "Password updated!" msgstr "密码已曓新!" -#: src/Navigation.tsx:161 +#: src/Navigation.tsx:160 msgid "People followed by @{0}" msgstr "被这些人所关注 @{0}" -#: src/Navigation.tsx:154 +#: src/Navigation.tsx:153 msgid "People following @{0}" msgstr "ę­£åœØå…³ę³Ø @{0}" @@ -2657,15 +2740,15 @@ msgid "Pets" msgstr "宠物" #: src/view/com/auth/create/Step2.tsx:183 -msgid "Phone number" -msgstr "ę‰‹ęœŗå·ē " +#~ msgid "Phone number" +#~ msgstr "ę‰‹ęœŗå·ē " #: src/view/com/modals/SelfLabel.tsx:121 msgid "Pictures meant for adults." msgstr "é€‚åˆęˆå¹“äŗŗēš„å›¾åƒć€‚" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "å›ŗå®šåˆ°äø»é”µ" @@ -2686,14 +2769,18 @@ msgstr "播放视频" msgid "Plays the GIF" msgstr "播放 GIF" -#: src/view/com/auth/create/state.ts:177 +#: src/view/com/auth/create/state.ts:124 msgid "Please choose your handle." msgstr "čÆ·č®¾ē½®ä½ ēš„ē”Øęˆ·čÆ†åˆ«ē¬¦ć€‚" -#: src/view/com/auth/create/state.ts:160 +#: src/view/com/auth/create/state.ts:117 msgid "Please choose your password." msgstr "čÆ·č®¾ē½®ä½ ēš„åÆ†ē ć€‚" +#: src/view/com/auth/create/state.ts:131 +msgid "Please complete the verification captcha." +msgstr "" + #: src/view/com/modals/ChangeEmail.tsx:67 msgid "Please confirm your email before changing it. This is a temporary requirement while email-updating tools are added, and it will soon be removed." msgstr "ę›“ę”¹å‰čÆ·å…ˆē”®č®¤ä½ ēš„ē”µå­é‚®ē®±ć€‚čæ™ę˜Æę·»åŠ ē”µå­é‚®ē®±ę›“ę–°å·„å…·ēš„äø“ę—¶č¦ę±‚ļ¼Œę­¤é™åˆ¶å°†å¾ˆåæ«č¢«ē§»é™¤ć€‚" @@ -2703,22 +2790,22 @@ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "请输兄 App äø“ē”ØåÆ†ē ēš„åē§°ļ¼Œäøå…č®øä½æē”Øē©ŗę ¼ć€‚" #: src/view/com/auth/create/Step2.tsx:206 -msgid "Please enter a phone number that can receive SMS text messages." -msgstr "čÆ·č¾“å…„åÆä»„ęŽ„ę”¶ēŸ­äæ”ēš„ę‰‹ęœŗå·ē ć€‚" +#~ msgid "Please enter a phone number that can receive SMS text messages." +#~ msgstr "čÆ·č¾“å…„åÆä»„ęŽ„ę”¶ēŸ­äæ”ēš„ę‰‹ęœŗå·ē ć€‚" #: src/view/com/modals/AddAppPasswords.tsx:145 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "请输兄此 App äø“ē”ØåÆ†ē ēš„å”Æäø€åē§°ļ¼Œęˆ–ä½æē”Øęˆ‘ä»¬ęä¾›ēš„éšęœŗē”Ÿęˆåē§°ć€‚" #: src/view/com/auth/create/state.ts:170 -msgid "Please enter the code you received by SMS." -msgstr "čÆ·č¾“å…„ä½ ę”¶åˆ°ēš„ēŸ­äæ”éŖŒčÆē ć€‚" +#~ msgid "Please enter the code you received by SMS." +#~ msgstr "čÆ·č¾“å…„ä½ ę”¶åˆ°ēš„ēŸ­äæ”éŖŒčÆē ć€‚" #: src/view/com/auth/create/Step2.tsx:282 -msgid "Please enter the verification code sent to {phoneNumberFormatted}." -msgstr "čÆ·č¾“å…„å‘é€åˆ° {phoneNumberFormatted} ēš„éŖŒčÆē ć€‚" +#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." +#~ msgstr "čÆ·č¾“å…„å‘é€åˆ° {phoneNumberFormatted} ēš„éŖŒčÆē ć€‚" -#: src/view/com/auth/create/state.ts:146 +#: src/view/com/auth/create/state.ts:103 msgid "Please enter your email." msgstr "čÆ·č¾“å…„ä½ ēš„ē”µå­é‚®ē®±ć€‚" @@ -2753,26 +2840,26 @@ msgctxt "action" msgid "Post" msgstr "å‘åøƒ" -#: src/view/com/post-thread/PostThread.tsx:251 +#: src/view/com/post-thread/PostThread.tsx:303 msgctxt "description" msgid "Post" msgstr "å‘åøƒ" -#: src/view/com/post-thread/PostThreadItem.tsx:177 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "å‘åøƒč€… {0}" -#: src/Navigation.tsx:173 -#: src/Navigation.tsx:180 -#: src/Navigation.tsx:187 +#: src/Navigation.tsx:172 +#: src/Navigation.tsx:179 +#: src/Navigation.tsx:186 msgid "Post by @{0}" msgstr "å‘åøƒč€… @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "å·²åˆ é™¤åø–å­" -#: src/view/com/post-thread/PostThread.tsx:403 +#: src/view/com/post-thread/PostThread.tsx:461 msgid "Post hidden" msgstr "å·²éšč—åø–å­" @@ -2784,11 +2871,11 @@ msgstr "帖子语言" msgid "Post Languages" msgstr "帖子语言" -#: src/view/com/post-thread/PostThread.tsx:455 +#: src/view/com/post-thread/PostThread.tsx:513 msgid "Post not found" msgstr "ę— ę³•ę‰¾åˆ°åø–å­" -#: src/view/screens/Profile.tsx:171 +#: src/view/screens/Profile.tsx:180 msgid "Posts" msgstr "帖子" @@ -2812,27 +2899,27 @@ msgstr "首选语言" msgid "Prioritize Your Follows" msgstr "å…³ę³Øč€…ä¼˜å…ˆ" -#: src/view/screens/Settings.tsx:626 -#: src/view/shell/desktop/RightNav.tsx:84 +#: src/view/screens/Settings/index.tsx:632 +#: src/view/shell/desktop/RightNav.tsx:72 msgid "Privacy" msgstr "隐私" -#: src/Navigation.tsx:218 +#: src/Navigation.tsx:217 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings.tsx:873 -#: src/view/shell/Drawer.tsx:265 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/shell/Drawer.tsx:262 msgid "Privacy Policy" msgstr "éšē§ę”æē­–" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:194 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:198 msgid "Processing..." msgstr "处理中..." #: src/view/shell/bottom-bar/BottomBar.tsx:247 #: src/view/shell/desktop/LeftNav.tsx:415 -#: src/view/shell/Drawer.tsx:72 -#: src/view/shell/Drawer.tsx:549 -#: src/view/shell/Drawer.tsx:550 +#: src/view/shell/Drawer.tsx:70 +#: src/view/shell/Drawer.tsx:546 +#: src/view/shell/Drawer.tsx:547 msgid "Profile" msgstr "资ꖙ" @@ -2840,7 +2927,7 @@ msgstr "资ꖙ" msgid "Profile updated" msgstr "资料已曓新" -#: src/view/screens/Settings.tsx:931 +#: src/view/screens/Settings/index.tsx:949 msgid "Protect your account by verifying your email." msgstr "é€ščæ‡éŖŒčÆē”µå­é‚®ē®±ę„äæęŠ¤ä½ ēš„č“¦ęˆ·ć€‚" @@ -2897,12 +2984,12 @@ msgstr "ęŽØčēš„ē”Øęˆ·" #: src/view/com/modals/ListAddRemoveUsers.tsx:264 #: src/view/com/modals/SelfLabel.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:219 -#: src/view/com/util/UserAvatar.tsx:282 -#: src/view/com/util/UserBanner.tsx:89 +#: src/view/com/util/UserAvatar.tsx:285 +#: src/view/com/util/UserBanner.tsx:91 msgid "Remove" msgstr "删除" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "将 {0} ä»Žč‡Ŗå®šä¹‰äæ”ęÆęµäø­ē§»é™¤ļ¼Ÿ" @@ -2915,11 +3002,11 @@ msgstr "åˆ é™¤č“¦å·" msgid "Remove feed" msgstr "åˆ é™¤äæ”ęÆęµ" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ä»Žč‡Ŗå®šä¹‰äæ”ęÆęµäø­åˆ é™¤" @@ -2935,7 +3022,7 @@ msgstr "åˆ é™¤å›¾ē‰‡é¢„č§ˆ" msgid "Remove repost" msgstr "åˆ é™¤č½¬å‘" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "å°†čæ™äøŖäæ”ęÆęµä»Žč‡Ŗå®šä¹‰äæ”ęÆęµåˆ—č”Øäø­åˆ é™¤ļ¼Ÿ" @@ -2948,8 +3035,8 @@ msgstr "å°†čæ™äøŖäæ”ęÆęµä»Žäæå­˜ēš„äæ”ęÆęµåˆ—č”Øäø­åˆ é™¤ļ¼Ÿ" msgid "Removed from list" msgstr "ä»Žåˆ—č”Øäø­åˆ é™¤" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "ä»Žč‡Ŗå®šä¹‰äæ”ęÆęµäø­åˆ é™¤" @@ -2957,7 +3044,7 @@ msgstr "ä»Žč‡Ŗå®šä¹‰äæ”ęÆęµäø­åˆ é™¤" msgid "Removes default thumbnail from {0}" msgstr "从 {0} äø­åˆ é™¤é»˜č®¤ē¼©ē•„å›¾" -#: src/view/screens/Profile.tsx:172 +#: src/view/screens/Profile.tsx:181 msgid "Replies" msgstr "回复" @@ -2970,12 +3057,12 @@ msgctxt "action" msgid "Reply" msgstr "回复" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "å›žå¤čæ‡ę»¤å™Ø" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:287 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "回复 <0/>" @@ -2984,20 +3071,20 @@ msgstr "回复 <0/>" msgid "Report {collectionName}" msgstr "举抄 {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:408 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "举抄蓦户" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "举抄俔息流" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "äø¾ęŠ„åˆ—č”Ø" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "äø¾ęŠ„åø–å­" @@ -3022,11 +3109,11 @@ msgstr "č½¬å‘ęˆ–å¼•ē”Øåø–å­" msgid "Reposted By" msgstr "č½¬å‘" -#: src/view/com/posts/FeedItem.tsx:207 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "ē”± {0} č½¬å‘" -#: src/view/com/posts/FeedItem.tsx:224 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "ē”± <0/> č½¬å‘" @@ -3034,7 +3121,7 @@ msgstr "ē”± <0/> č½¬å‘" msgid "reposted your post" msgstr "č½¬å‘ä½ ēš„åø–å­" -#: src/view/com/post-thread/PostThreadItem.tsx:190 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "č½¬å‘čæ™ę”åø–å­" @@ -3044,19 +3131,19 @@ msgid "Request Change" msgstr "čÆ·ę±‚å˜ę›“" #: src/view/com/auth/create/Step2.tsx:219 -msgid "Request code" -msgstr "请求码" +#~ msgid "Request code" +#~ msgstr "请求码" #: src/view/com/modals/ChangePassword.tsx:239 #: src/view/com/modals/ChangePassword.tsx:241 msgid "Request Code" msgstr "甮认码" -#: src/view/screens/Settings.tsx:450 +#: src/view/screens/Settings/index.tsx:456 msgid "Require alt text before posting" msgstr "č¦ę±‚å‘åøƒå‰ęä¾›ę›æä»£ę–‡ęœ¬" -#: src/view/com/auth/create/Step1.tsx:97 +#: src/view/com/auth/create/Step1.tsx:153 msgid "Required for this provider" msgstr "åŗ”ęä¾›å•†č¦ę±‚" @@ -3069,66 +3156,65 @@ msgstr "é‡ē½®ē " msgid "Reset Code" msgstr "é‡ē½®ä»£ē " -#: src/view/screens/Settings.tsx:806 +#: src/view/screens/Settings/index.tsx:824 msgid "Reset onboarding" msgstr "é‡ē½®å¼•åÆ¼ęµēØ‹" -#: src/view/screens/Settings.tsx:809 +#: src/view/screens/Settings/index.tsx:827 msgid "Reset onboarding state" msgstr "é‡ē½®å¼•åÆ¼ęµēØ‹ēŠ¶ę€" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:100 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:104 msgid "Reset password" msgstr "é‡ē½®åÆ†ē " -#: src/view/screens/Settings.tsx:796 +#: src/view/screens/Settings/index.tsx:814 msgid "Reset preferences" msgstr "é‡ē½®é¦–é€‰é”¹" -#: src/view/screens/Settings.tsx:799 +#: src/view/screens/Settings/index.tsx:817 msgid "Reset preferences state" msgstr "é‡ē½®é¦–é€‰é”¹ēŠ¶ę€" -#: src/view/screens/Settings.tsx:807 +#: src/view/screens/Settings/index.tsx:825 msgid "Resets the onboarding state" msgstr "é‡ē½®å¼•åÆ¼ęµēØ‹ēŠ¶ę€" -#: src/view/screens/Settings.tsx:797 +#: src/view/screens/Settings/index.tsx:815 msgid "Resets the preferences state" msgstr "é‡ē½®é¦–é€‰é”¹ēŠ¶ę€" -#: src/view/com/auth/login/LoginForm.tsx:266 +#: src/view/com/auth/login/LoginForm.tsx:269 msgid "Retries login" msgstr "é‡čÆ•ē™»å½•" #: src/view/com/util/error/ErrorMessage.tsx:57 -#: src/view/com/util/error/ErrorScreen.tsx:67 +#: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" msgstr "é‡čÆ•äøŠę¬”å‡ŗé”™ēš„ę“ä½œ" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:170 -#: src/view/com/auth/create/CreateAccount.tsx:175 -#: src/view/com/auth/create/Step2.tsx:255 -#: src/view/com/auth/login/LoginForm.tsx:265 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 +#: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 -#: src/view/com/util/error/ErrorScreen.tsx:65 +#: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "é‡čÆ•" #: src/view/com/auth/create/Step2.tsx:247 -msgid "Retry." -msgstr "é‡čÆ•ć€‚" +#~ msgid "Retry." +#~ msgstr "é‡čÆ•ć€‚" #: src/view/screens/ProfileList.tsx:898 msgid "Return to previous page" msgstr "å›žåˆ°äøŠäø€é”µ" -#: src/view/shell/desktop/RightNav.tsx:59 -msgid "SANDBOX. Posts and accounts are not permanent." -msgstr "ę²™ē›’ęØ”å¼ć€‚åø–å­å’Œč“¦ęˆ·äøä¼šę°øä¹…äæå­˜ć€‚" +#: src/view/shell/desktop/RightNav.tsx:55 +#~ msgid "SANDBOX. Posts and accounts are not permanent." +#~ msgstr "ę²™ē›’ęØ”å¼ć€‚åø–å­å’Œč“¦ęˆ·äøä¼šę°øä¹…äæå­˜ć€‚" #: src/view/com/lightbox/Lightbox.tsx:132 #: src/view/com/modals/CreateOrEditList.tsx:345 @@ -3141,7 +3227,7 @@ msgstr "äæå­˜" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "äæå­˜" @@ -3181,11 +3267,11 @@ msgstr "ē§‘å­¦" msgid "Scroll to top" msgstr "滚动到锶部" -#: src/Navigation.tsx:438 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 -#: src/view/com/util/forms/SearchInput.tsx:53 -#: src/view/com/util/forms/SearchInput.tsx:65 +#: src/view/com/util/forms/SearchInput.tsx:67 +#: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:418 #: src/view/screens/Search/Search.tsx:645 #: src/view/screens/Search/Search.tsx:663 @@ -3193,8 +3279,8 @@ msgstr "滚动到锶部" #: src/view/shell/desktop/LeftNav.tsx:324 #: src/view/shell/desktop/Search.tsx:214 #: src/view/shell/desktop/Search.tsx:223 -#: src/view/shell/Drawer.tsx:365 -#: src/view/shell/Drawer.tsx:366 +#: src/view/shell/Drawer.tsx:362 +#: src/view/shell/Drawer.tsx:363 msgid "Search" msgstr "搜瓢" @@ -3226,8 +3312,8 @@ msgid "Select {item}" msgstr "选ꋩ {item}" #: src/view/com/modals/ServerInput.tsx:75 -msgid "Select Bluesky Social" -msgstr "选ꋩ Bluesky Social" +#~ msgid "Select Bluesky Social" +#~ msgstr "选ꋩ Bluesky Social" #: src/view/com/auth/login/Login.tsx:117 msgid "Select from an existing account" @@ -3237,8 +3323,8 @@ msgstr "é€‰ę‹©å·²å­˜åœØēš„č“¦ęˆ·" msgid "Select option {i} of {numItems}" msgstr "从 {i} 锹中选择 {numItems} 锹" -#: src/view/com/auth/create/Step1.tsx:77 -#: src/view/com/auth/login/LoginForm.tsx:147 +#: src/view/com/auth/create/Step1.tsx:103 +#: src/view/com/auth/login/LoginForm.tsx:150 msgid "Select service" msgstr "é€‰ę‹©ęœåŠ”" @@ -3246,7 +3332,11 @@ msgstr "é€‰ę‹©ęœåŠ”" msgid "Select some accounts below to follow" msgstr "é€‰ę‹©ä»„äø‹äø€äŗ›č“¦ęˆ·čæ›č”Œå…³ę³Ø" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/view/com/auth/server-input/index.tsx:82 +msgid "Select the service that hosts your data." +msgstr "" + +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "ä»Žäø‹é¢ēš„åˆ—č”Øäø­é€‰ę‹©č¦å…³ę³Øēš„äø“é¢˜äæ”ęÆęµ" @@ -3267,8 +3357,8 @@ msgid "Select your interests from the options below" msgstr "äø‹é¢é€‰ę‹©ä½ ę„Ÿå…“č¶£ēš„é€‰é”¹" #: src/view/com/auth/create/Step2.tsx:155 -msgid "Select your phone's country" -msgstr "é€‰ę‹©ä½ ēš„ē”µčÆåŒŗå·" +#~ msgid "Select your phone's country" +#~ msgstr "é€‰ę‹©ä½ ēš„ē”µčÆåŒŗå·" #: src/view/screens/LanguageSettings.tsx:190 msgid "Select your preferred language for translations in your feed." @@ -3278,7 +3368,7 @@ msgstr "é€‰ę‹©ä½ åœØč®¢é˜…äæ”ęÆęµäø­åøŒęœ›čæ›č”Œēæ»čÆ‘ēš„ē›®ę ‡é¦–é€‰čÆ­čØ€ć€‚ msgid "Select your primary algorithmic feeds" msgstr "é€‰ę‹©ä½ ēš„äæ”ęÆęµäø»č¦ē®—ę³•" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:132 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:142 msgid "Select your secondary algorithmic feeds" msgstr "é€‰ę‹©ä½ ēš„äæ”ęÆęµę¬”č¦ē®—ę³•" @@ -3296,8 +3386,8 @@ msgctxt "action" msgid "Send Email" msgstr "å‘é€ē”µå­é‚®ä»¶" -#: src/view/shell/Drawer.tsx:298 -#: src/view/shell/Drawer.tsx:319 +#: src/view/shell/Drawer.tsx:295 +#: src/view/shell/Drawer.tsx:316 msgid "Send feedback" msgstr "ęäŗ¤åé¦ˆ" @@ -3309,33 +3399,37 @@ msgstr "ęäŗ¤äø¾ęŠ„" msgid "Sends email with confirmation code for account deletion" msgstr "å‘é€åŒ…å«č“¦ęˆ·åˆ é™¤ē”®č®¤ē ēš„ē”µå­é‚®ä»¶" -#: src/view/com/modals/ContentFilteringSettings.tsx:306 +#: src/view/com/auth/server-input/index.tsx:110 +msgid "Server address" +msgstr "" + +#: src/view/com/modals/ContentFilteringSettings.tsx:311 msgid "Set {value} for {labelGroup} content moderation policy" msgstr "äøŗ {labelGroup} 内容宔核政策设置 {value}" -#: src/view/com/modals/ContentFilteringSettings.tsx:155 -#: src/view/com/modals/ContentFilteringSettings.tsx:174 +#: src/view/com/modals/ContentFilteringSettings.tsx:160 +#: src/view/com/modals/ContentFilteringSettings.tsx:179 msgctxt "action" msgid "Set Age" msgstr "设置幓龄" -#: src/view/screens/Settings.tsx:482 +#: src/view/screens/Settings/index.tsx:488 msgid "Set color theme to dark" msgstr "č®¾ē½®äø»é¢˜äøŗę·±č‰²ęØ”å¼" -#: src/view/screens/Settings.tsx:475 +#: src/view/screens/Settings/index.tsx:481 msgid "Set color theme to light" msgstr "č®¾ē½®äø»é¢˜äøŗäŗ®č‰²ęØ”å¼" -#: src/view/screens/Settings.tsx:469 +#: src/view/screens/Settings/index.tsx:475 msgid "Set color theme to system setting" msgstr "č®¾ē½®äø»é¢˜č·Ÿéšē³»ē»Ÿč®¾ē½®" -#: src/view/screens/Settings.tsx:508 +#: src/view/screens/Settings/index.tsx:514 msgid "Set dark theme to the dark theme" msgstr "č®¾ē½®ę·±č‰²ęØ”å¼č‡³ę·±é»‘" -#: src/view/screens/Settings.tsx:501 +#: src/view/screens/Settings/index.tsx:507 msgid "Set dark theme to the dim theme" msgstr "č®¾ē½®ę·±č‰²ęØ”å¼č‡³ęš—ę·”" @@ -3343,19 +3437,19 @@ msgstr "č®¾ē½®ę·±č‰²ęØ”å¼č‡³ęš—ę·”" msgid "Set new password" msgstr "设置新密码" -#: src/view/com/auth/create/Step1.tsx:169 +#: src/view/com/auth/create/Step1.tsx:225 msgid "Set password" msgstr "设置密码" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "åœē”Øę­¤č®¾ē½®é”¹ä»„éšč—ę„č‡Ŗč®¢é˜…äæ”ęÆęµēš„ę‰€ęœ‰å¼•ē”Øåø–å­ļ¼Œč½¬å‘ä»å°†åÆč§ć€‚" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "åœē”Øę­¤č®¾ē½®é”¹ä»„éšč—ę„č‡Ŗč®¢é˜…äæ”ęÆęµēš„ę‰€ęœ‰å›žå¤ć€‚" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "åœē”Øę­¤č®¾ē½®é”¹ä»„éšč—ę„č‡Ŗč®¢é˜…äæ”ęÆęµēš„ę‰€ęœ‰č½¬å‘ć€‚" @@ -3364,8 +3458,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "åÆē”Øę­¤č®¾ē½®é”¹ä»„åœØåˆ†å±‚č§†å›¾äø­ę˜¾ē¤ŗå›žå¤ć€‚čæ™ę˜Æäø€äøŖå®žéŖŒę€§åŠŸčƒ½ć€‚" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "åÆē”Øę­¤č®¾ē½®é”¹ä»„åœØå…³ę³Øäæ”ęÆęµäø­ę˜¾ē¤ŗå·²äæå­˜äæ”ęÆęµēš„ę ·ä¾‹ć€‚čæ™ę˜Æäø€äøŖå®žéŖŒę€§åŠŸčƒ½ć€‚" +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "åÆē”Øę­¤č®¾ē½®é”¹ä»„åœØå…³ę³Øäæ”ęÆęµäø­ę˜¾ē¤ŗå·²äæå­˜äæ”ęÆęµēš„ę ·ä¾‹ć€‚čæ™ę˜Æäø€äøŖå®žéŖŒę€§åŠŸčƒ½ć€‚" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3375,24 +3473,24 @@ msgstr "č®¾ē½®ä½ ēš„č“¦ęˆ·" msgid "Sets Bluesky username" msgstr "设置 Bluesky ē”Øęˆ·å" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:153 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:157 msgid "Sets email for password reset" msgstr "č®¾ē½®ē”ØäŗŽé‡ē½®åÆ†ē ēš„ē”µå­é‚®ē®±" -#: src/view/com/auth/login/ForgotPasswordForm.tsx:118 +#: src/view/com/auth/login/ForgotPasswordForm.tsx:122 msgid "Sets hosting provider for password reset" msgstr "č®¾ē½®ē”ØäŗŽåÆ†ē é‡ē½®ēš„ę‰˜ē®”ęä¾›å•†äæ”ęÆ" -#: src/view/com/auth/create/Step1.tsx:78 -#: src/view/com/auth/login/LoginForm.tsx:148 +#: src/view/com/auth/create/Step1.tsx:104 +#: src/view/com/auth/login/LoginForm.tsx:151 msgid "Sets server for the Bluesky client" msgstr "设置 Bluesky å®¢ęˆ·ē«Æēš„ęœåŠ”å™Ø" #: src/Navigation.tsx:135 -#: src/view/screens/Settings.tsx:294 +#: src/view/screens/Settings/index.tsx:294 #: src/view/shell/desktop/LeftNav.tsx:433 -#: src/view/shell/Drawer.tsx:570 -#: src/view/shell/Drawer.tsx:571 +#: src/view/shell/Drawer.tsx:567 +#: src/view/shell/Drawer.tsx:568 msgid "Settings" msgstr "设置" @@ -3405,25 +3503,25 @@ msgctxt "action" msgid "Share" msgstr "åˆ†äŗ«" -#: src/view/com/profile/ProfileHeader.tsx:342 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "åˆ†äŗ«" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "åˆ†äŗ«äæ”ęÆęµ" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:43 -#: src/view/com/modals/ContentFilteringSettings.tsx:261 +#: src/view/com/modals/ContentFilteringSettings.tsx:266 #: src/view/com/util/moderation/ContentHider.tsx:107 #: src/view/com/util/moderation/PostHider.tsx:108 -#: src/view/screens/Settings.tsx:344 +#: src/view/screens/Settings/index.tsx:344 msgid "Show" msgstr "显示" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "ę˜¾ē¤ŗę‰€ęœ‰å›žå¤" @@ -3435,21 +3533,21 @@ msgstr "ä»ē„¶ę˜¾ē¤ŗ" msgid "Show embeds from {0}" msgstr "ę˜¾ē¤ŗę„č‡Ŗ {0} ēš„åµŒå…„å†…å®¹" -#: src/view/com/profile/ProfileHeader.tsx:498 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "ę˜¾ē¤ŗē±»ä¼¼äŗŽ {0} ēš„å…³ę³Øč€…" -#: src/view/com/post-thread/PostThreadItem.tsx:571 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:363 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "ę˜¾ē¤ŗę›“å¤š" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "åœØč‡Ŗå®šä¹‰äæ”ęÆęµäø­ę˜¾ē¤ŗåø–å­" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ę˜¾ē¤ŗå¼•ē”Øåø–å­" @@ -3465,7 +3563,7 @@ msgstr "åœØå…³ę³Øäø­ę˜¾ē¤ŗå¼•ē”Ø" msgid "Show re-posts in Following feed" msgstr "åœØå…³ę³Øäæ”ęÆęµäø­ę˜¾ē¤ŗč½¬å‘" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ę˜¾ē¤ŗå›žå¤" @@ -3481,11 +3579,11 @@ msgstr "åœØå…³ę³Øäø­ę˜¾ē¤ŗå›žå¤" msgid "Show replies in Following feed" msgstr "åœØå…³ę³Øäæ”ęÆęµäø­ę˜¾ē¤ŗå›žå¤" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "ę˜¾ē¤ŗč‡³å°‘åŒ…å« {value} {0} ēš„å›žå¤" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ę˜¾ē¤ŗč½¬å‘" @@ -3502,17 +3600,18 @@ msgstr "ę˜¾ē¤ŗå†…å®¹" msgid "Show users" msgstr "ę˜¾ē¤ŗē”Øęˆ·" -#: src/view/com/profile/ProfileHeader.tsx:501 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "ę˜¾ē¤ŗäøŽčÆ„ē”Øęˆ·ē›øä¼¼ēš„ē”Øęˆ·åˆ—č”Øć€‚" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "åœØä½ ēš„äæ”ęÆęµäø­ę˜¾ē¤ŗę„č‡Ŗ {0} ēš„åø–å­" #: src/view/com/auth/HomeLoggedOutCTA.tsx:70 #: src/view/com/auth/login/Login.tsx:98 -#: src/view/com/auth/SplashScreen.tsx:54 +#: src/view/com/auth/SplashScreen.tsx:79 #: src/view/shell/bottom-bar/BottomBar.tsx:285 #: src/view/shell/bottom-bar/BottomBar.tsx:286 #: src/view/shell/bottom-bar/BottomBar.tsx:288 @@ -3525,8 +3624,8 @@ msgid "Sign in" msgstr "登录" #: src/view/com/auth/HomeLoggedOutCTA.tsx:78 -#: src/view/com/auth/SplashScreen.tsx:57 -#: src/view/com/auth/SplashScreen.web.tsx:87 +#: src/view/com/auth/SplashScreen.tsx:82 +#: src/view/com/auth/SplashScreen.web.tsx:91 msgid "Sign In" msgstr "登录" @@ -3539,14 +3638,14 @@ msgstr "仄 {0} 登录" msgid "Sign in as..." msgstr "登录为..." -#: src/view/com/auth/login/LoginForm.tsx:134 +#: src/view/com/auth/login/LoginForm.tsx:137 msgid "Sign into" msgstr "ē™»å½•åˆ°" #: src/view/com/modals/SwitchAccount.tsx:64 #: src/view/com/modals/SwitchAccount.tsx:69 -#: src/view/screens/Settings.tsx:107 -#: src/view/screens/Settings.tsx:110 +#: src/view/screens/Settings/index.tsx:100 +#: src/view/screens/Settings/index.tsx:103 msgid "Sign out" msgstr "登出" @@ -3570,7 +3669,7 @@ msgstr "ę³Øå†Œęˆ–ē™»å½•ä»„åŠ å…„åÆ¹čÆ" msgid "Sign-in Required" msgstr "éœ€č¦ē™»å½•" -#: src/view/screens/Settings.tsx:355 +#: src/view/screens/Settings/index.tsx:355 msgid "Signed in as" msgstr "登录身份" @@ -3583,7 +3682,7 @@ msgid "Signs {0} out of Bluesky" msgstr "从 {0} 登出 Bluesky" #: src/screens/Onboarding/StepInterests/index.tsx:235 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:191 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:195 #: src/view/com/auth/onboarding/WelcomeMobile.tsx:33 msgid "Skip" msgstr "跳过" @@ -3593,22 +3692,22 @@ msgid "Skip this flow" msgstr "跳过此流程" #: src/view/com/auth/create/Step2.tsx:82 -msgid "SMS verification" -msgstr "短俔验证" +#~ msgid "SMS verification" +#~ msgstr "短俔验证" #: src/screens/Onboarding/index.tsx:40 msgid "Software Dev" msgstr "ēØ‹åŗå¼€å‘" #: src/view/com/modals/ProfilePreview.tsx:62 -msgid "Something went wrong and we're not sure what." -msgstr "å‡ŗäŗ†ē‚¹é—®é¢˜ļ¼ŒåŽŸå› äøę˜Žć€‚" +#~ msgid "Something went wrong and we're not sure what." +#~ msgstr "å‡ŗäŗ†ē‚¹é—®é¢˜ļ¼ŒåŽŸå› äøę˜Žć€‚" #: src/view/com/modals/Waitlist.tsx:51 msgid "Something went wrong. Check your email and try again." msgstr "å‡ŗäŗ†ē‚¹é—®é¢˜ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„ē”µå­é‚®ē®±å¹¶é‡čÆ•ć€‚" -#: src/App.native.tsx:60 +#: src/App.native.tsx:61 msgid "Sorry! Your session expired. Please log in again." msgstr "å¾ˆęŠ±ę­‰ļ¼Œä½ ēš„ä¼ščÆå·²čæ‡ęœŸļ¼ŒčÆ·é‡ę–°ē™»å½•ć€‚" @@ -3629,10 +3728,10 @@ msgid "Square" msgstr "ę–¹å—" #: src/view/com/modals/ServerInput.tsx:62 -msgid "Staging" -msgstr "ęš‚å­˜" +#~ msgid "Staging" +#~ msgstr "ęš‚å­˜" -#: src/view/screens/Settings.tsx:853 +#: src/view/screens/Settings/index.tsx:871 msgid "Status page" msgstr "ēŠ¶ę€é”µ" @@ -3640,12 +3739,12 @@ msgstr "ēŠ¶ę€é”µ" msgid "Step {0} of {numSteps}" msgstr "第 {0} ę­„ļ¼Œå…± {numSteps} ę­„" -#: src/view/screens/Settings.tsx:276 +#: src/view/screens/Settings/index.tsx:274 msgid "Storage cleared, you need to restart the app now." msgstr "å·²ęø…é™¤å­˜å‚Øļ¼ŒčÆ·ē«‹å³é‡åÆ App怂" -#: src/Navigation.tsx:203 -#: src/view/screens/Settings.tsx:789 +#: src/Navigation.tsx:202 +#: src/view/screens/Settings/index.tsx:807 msgid "Storybook" msgstr "故事书" @@ -3653,7 +3752,7 @@ msgstr "故事书" msgid "Submit" msgstr "ęäŗ¤" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "č®¢é˜…" @@ -3662,7 +3761,7 @@ msgstr "č®¢é˜…" msgid "Subscribe to the {0} feed" msgstr "č®¢é˜… {0} 俔息流" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "č®¢é˜…čæ™äøŖåˆ—č”Ø" @@ -3678,35 +3777,35 @@ msgstr "äøŗä½ ęŽØč" msgid "Suggestive" msgstr "建议" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:212 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" msgstr "ę”ÆęŒ" #: src/view/com/modals/ProfilePreview.tsx:110 -msgid "Swipe up to see more" -msgstr "å‘äøŠę»‘åŠØęŸ„ēœ‹ę›“å¤š" +#~ msgid "Swipe up to see more" +#~ msgstr "å‘äøŠę»‘åŠØęŸ„ēœ‹ę›“å¤š" #: src/view/com/modals/SwitchAccount.tsx:117 msgid "Switch Account" msgstr "åˆ‡ę¢č“¦ęˆ·" #: src/view/com/modals/SwitchAccount.tsx:97 -#: src/view/screens/Settings.tsx:137 +#: src/view/screens/Settings/index.tsx:130 msgid "Switch to {0}" msgstr "åˆ‡ę¢åˆ° {0}" #: src/view/com/modals/SwitchAccount.tsx:98 -#: src/view/screens/Settings.tsx:138 +#: src/view/screens/Settings/index.tsx:131 msgid "Switches the account you are logged in to" msgstr "åˆ‡ę¢ä½ ē™»å½•ēš„č“¦ęˆ·" -#: src/view/screens/Settings.tsx:466 +#: src/view/screens/Settings/index.tsx:472 msgid "System" msgstr "系统" -#: src/view/screens/Settings.tsx:769 +#: src/view/screens/Settings/index.tsx:795 msgid "System log" msgstr "ē³»ē»Ÿę—„åæ—" @@ -3722,14 +3821,14 @@ msgstr "ē‚¹å‡»ęŸ„ēœ‹å®Œę•“å†…å®¹" msgid "Tech" msgstr "ē§‘ęŠ€" -#: src/view/shell/desktop/RightNav.tsx:93 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Terms" msgstr "ę”ę¬¾" -#: src/Navigation.tsx:223 -#: src/view/screens/Settings.tsx:867 +#: src/Navigation.tsx:222 +#: src/view/screens/Settings/index.tsx:885 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:259 +#: src/view/shell/Drawer.tsx:256 msgid "Terms of Service" msgstr "ęœåŠ”ę”ę¬¾" @@ -3738,7 +3837,11 @@ msgstr "ęœåŠ”ę”ę¬¾" msgid "Text input field" msgstr "ę–‡ęœ¬č¾“å…„å­—ę®µ" -#: src/view/com/profile/ProfileHeader.tsx:310 +#: src/view/com/auth/create/CreateAccount.tsx:94 +msgid "That handle is already taken." +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "č§£é™¤å±č”½åŽļ¼ŒčÆ„č“¦ęˆ·å°†čƒ½å¤ŸäøŽä½ äŗ’åŠØć€‚" @@ -3754,7 +3857,7 @@ msgstr "ē‰ˆęƒč®øåÆå·²čæē§»č‡³ <0/>" msgid "The following steps will help customize your Bluesky experience." msgstr "ä»„äø‹ę­„éŖ¤å°†åø®åŠ©å®šåˆ¶ä½ ēš„ Bluesky ä½“éŖŒć€‚" -#: src/view/com/post-thread/PostThread.tsx:458 +#: src/view/com/post-thread/PostThread.tsx:516 msgid "The post may have been deleted." msgstr "ę­¤åø–å­ä¼¼ä¹Žå·²č¢«åˆ é™¤ć€‚" @@ -3770,11 +3873,11 @@ msgstr "ę”ÆęŒč”Øå•å·²ē§»åŠØä½ē½®ć€‚å¦‚ęžœä½ éœ€č¦åø®åŠ©ļ¼ŒčÆ·ē‚¹å‡»<0/>ꈖ msgid "The Terms of Service have been moved to" msgstr "ęœåŠ”ę”ę¬¾å·²čæē§»č‡³" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:135 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:150 msgid "There are many feeds to try:" msgstr "čæ™é‡Œęœ‰äŗ›äæ”ęÆęµä½ åÆä»„å°čÆ•ļ¼š" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "čæžęŽ„č‡³ęœåŠ”å™Øę—¶å‡ŗēŽ°é—®é¢˜ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡čÆ•ć€‚" @@ -3782,12 +3885,12 @@ msgstr "čæžęŽ„č‡³ęœåŠ”å™Øę—¶å‡ŗēŽ°é—®é¢˜ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡ msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "åˆ é™¤äæ”ęÆęµę—¶å‡ŗēŽ°é—®é¢˜ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡čÆ•ć€‚" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "ę›“ę–°äæ”ęÆęµę—¶å‡ŗēŽ°é—®é¢˜ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡čÆ•ć€‚" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3796,9 +3899,9 @@ msgstr "čæžęŽ„ęœåŠ”å™Øę—¶å‡ŗēŽ°é—®é¢˜" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "čæžęŽ„ęœåŠ”å™Øę—¶å‡ŗēŽ°é—®é¢˜" @@ -3828,19 +3931,21 @@ msgstr "äøŽęœåŠ”å™ØåŒę­„é¦–é€‰é”¹ę—¶å‡ŗēŽ°é—®é¢˜" msgid "There was an issue with fetching your app passwords" msgstr "čŽ·å– App äø“ē”ØåÆ†ē ę—¶å‡ŗēŽ°é—®é¢˜" -#: src/view/com/profile/ProfileHeader.tsx:204 -#: src/view/com/profile/ProfileHeader.tsx:225 -#: src/view/com/profile/ProfileHeader.tsx:264 -#: src/view/com/profile/ProfileHeader.tsx:277 -#: src/view/com/profile/ProfileHeader.tsx:297 -#: src/view/com/profile/ProfileHeader.tsx:319 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 +#: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "å‡ŗēŽ°é—®é¢˜äŗ†ļ¼{0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "å‡ŗēŽ°é—®é¢˜äŗ†ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡čÆ•ć€‚" @@ -3848,13 +3953,13 @@ msgstr "å‡ŗēŽ°é—®é¢˜äŗ†ļ¼ŒčÆ·ę£€ęŸ„ä½ ēš„äŗ’č”ē½‘čæžęŽ„å¹¶é‡čÆ•ć€‚" msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" msgstr "åŗ”ē”Øå‘ē”Ÿę„å¤–é”™čÆÆļ¼ŒčÆ·č”ē³»ęˆ‘ä»¬čæ›č”Œé”™čÆÆåé¦ˆļ¼" -#: src/screens/Deactivated.tsx:107 +#: src/screens/Deactivated.tsx:106 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." msgstr "Bluesky čæŽę„äŗ†å¤§é‡ę–°ē”Øęˆ·ļ¼ęˆ‘ä»¬å°†å°½åæ«ęæ€ę“»ä½ ēš„č“¦ęˆ·ć€‚" #: src/view/com/auth/create/Step2.tsx:55 -msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" -msgstr "ē”µčÆå·ē ęœ‰čÆÆļ¼ŒčÆ·é€‰ę‹©ē”µčÆåŒŗå·å¹¶č¾“å…„å®Œę•“ēš„ē”µčÆå·ē ļ¼" +#~ msgid "There's something wrong with this number. Please choose your country and enter your full phone number!" +#~ msgstr "ē”µčÆå·ē ęœ‰čÆÆļ¼ŒčÆ·é€‰ę‹©ē”µčÆåŒŗå·å¹¶č¾“å…„å®Œę•“ēš„ē”µčÆå·ē ļ¼" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:138 msgid "These are popular accounts you might like:" @@ -3880,13 +3985,17 @@ msgstr "ē”±äŗŽå…¶äø­äø€äøŖē”Øęˆ·å±č”½äŗ†å¦äø€äøŖē”Øęˆ·ļ¼Œę­¤å†…å®¹äøåÆē”Øć€‚ msgid "This content is not viewable without a Bluesky account." msgstr "ę²”ęœ‰ Bluesky č“¦ęˆ·ļ¼Œę— ę³•ęŸ„ēœ‹ę­¤å†…å®¹ć€‚" +#: src/view/screens/Settings/ExportCarDialog.tsx:75 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." msgstr "čÆ„äæ”ęÆęµå½“å‰ä½æē”Øäŗŗę•°č¾ƒå¤šļ¼ŒęœåŠ”ęš‚ę—¶äøåÆē”Øć€‚čÆ·ēØåŽå†čÆ•ć€‚" -#: src/view/screens/Profile.tsx:402 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/Profile.tsx:420 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "评俔息流为空!" @@ -3914,7 +4023,7 @@ msgstr "ę­¤åˆ—č”Øäøŗē©ŗļ¼" msgid "This name is already in use" msgstr "čÆ„åē§°å·²č¢«ä½æē”Ø" -#: src/view/com/post-thread/PostThreadItem.tsx:124 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ę­¤åø–å·²č¢«åˆ é™¤ć€‚" @@ -3938,12 +4047,12 @@ msgstr "ę­¤ē”Øęˆ·åŒ…å«åœØä½ å·²éšč—ēš„ <0/> åˆ—č”Øäø­ć€‚" msgid "This warning is only available for posts with media attached." msgstr "ę­¤č­¦å‘Šä»…é€‚ē”ØäŗŽé™„åø¦åŖ’ä½“ēš„åø–å­ć€‚" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "čæ™å°†åœØä½ ēš„äæ”ęÆęµäø­éšč—ę­¤åø–å­ć€‚" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings.tsx:559 +#: src/view/screens/Settings/index.tsx:565 msgid "Thread Preferences" msgstr "讨论串首选锹" @@ -3951,7 +4060,7 @@ msgstr "讨论串首选锹" msgid "Threaded Mode" msgstr "åˆ†å±‚ęØ”å¼" -#: src/Navigation.tsx:253 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "讨论串首选锹" @@ -3963,45 +4072,45 @@ msgstr "åˆ‡ę¢äø‹ę‹‰čœå•" msgid "Transformations" msgstr "č½¬ę¢" -#: src/view/com/post-thread/PostThreadItem.tsx:719 -#: src/view/com/post-thread/PostThreadItem.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "翻译" -#: src/view/com/util/error/ErrorScreen.tsx:75 +#: src/view/com/util/error/ErrorScreen.tsx:82 msgctxt "action" msgid "Try again" msgstr "é‡čÆ•" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "å–ę¶ˆå±č”½åˆ—č”Ø" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "å–ę¶ˆéšč—åˆ—č”Ø" -#: src/view/com/auth/create/CreateAccount.tsx:66 +#: src/view/com/auth/create/CreateAccount.tsx:58 #: src/view/com/auth/login/ForgotPasswordForm.tsx:87 #: src/view/com/auth/login/Login.tsx:76 -#: src/view/com/auth/login/LoginForm.tsx:120 +#: src/view/com/auth/login/LoginForm.tsx:118 #: src/view/com/modals/ChangePassword.tsx:70 msgid "Unable to contact your service. Please check your Internet connection." msgstr "ę— ę³•čæžęŽ„åˆ°ęœåŠ”ļ¼ŒčÆ·ę£€ęŸ„äŗ’č”ē½‘čæžęŽ„ć€‚" -#: src/view/com/profile/ProfileHeader.tsx:472 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "å–ę¶ˆå±č”½" -#: src/view/com/profile/ProfileHeader.tsx:475 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "å–ę¶ˆå±č”½" -#: src/view/com/profile/ProfileHeader.tsx:308 -#: src/view/com/profile/ProfileHeader.tsx:392 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "å–ę¶ˆå±č”½" @@ -4017,40 +4126,41 @@ msgctxt "action" msgid "Unfollow" msgstr "取关" -#: src/view/com/profile/ProfileHeader.tsx:524 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "取关 {0}" -#: src/view/com/auth/create/state.ts:300 +#: src/view/com/auth/create/state.ts:262 msgid "Unfortunately, you do not meet the requirements to create an account." msgstr "å¾ˆé—ę†¾ļ¼Œä½ äøē¬¦åˆåˆ›å»ŗč“¦ęˆ·ēš„č¦ę±‚ć€‚" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:170 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:182 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:216 msgid "Unlike" msgstr "å–ę¶ˆå–œę¬¢" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "å–ę¶ˆéšč—" -#: src/view/com/profile/ProfileHeader.tsx:373 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "å–ę¶ˆéšč—č“¦ęˆ·" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "å–ę¶ˆéšč—č®Øč®ŗäø²" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "å–ę¶ˆå›ŗå®š" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "å–ę¶ˆå›ŗå®šé™åˆ¶åˆ—č”Ø" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "å–ę¶ˆäæå­˜" @@ -4093,8 +4203,8 @@ msgid "Use this to sign into the other app along with your handle." msgstr "ä½æē”Øčæ™äøŖå’Œä½ ēš„ē”Øęˆ·čÆ†åˆ«ē¬¦äø€čµ·ē™»å½•å…¶ä»–åŗ”ē”Øć€‚" #: src/view/com/modals/ServerInput.tsx:105 -msgid "Use your domain as your Bluesky client service provider" -msgstr "ä½æē”Øä½ ēš„åŸŸåä½œäøŗ Bluesky å®¢ęˆ·ē«Æēš„ęœåŠ”ęä¾›ę–¹" +#~ msgid "Use your domain as your Bluesky client service provider" +#~ msgstr "ä½æē”Øä½ ēš„åŸŸåä½œäøŗ Bluesky å®¢ęˆ·ē«Æēš„ęœåŠ”ęä¾›ę–¹" #: src/view/com/modals/InviteCodes.tsx:200 msgid "Used by:" @@ -4112,11 +4222,11 @@ msgstr "ē”Øęˆ·č¢«åˆ—č”Øå±č”½" msgid "User Blocks You" msgstr "ē”Øęˆ·å±č”½äŗ†ä½ " -#: src/view/com/auth/create/Step3.tsx:41 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ē”Øęˆ·čÆ†åˆ«ē¬¦" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "{0} ēš„ē”Øęˆ·åˆ—č”Ø" @@ -4125,7 +4235,7 @@ msgstr "{0} ēš„ē”Øęˆ·åˆ—č”Ø" msgid "User list by <0/>" msgstr "<0/> ēš„ē”Øęˆ·åˆ—č”Ø" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4143,8 +4253,8 @@ msgstr "ē”Øęˆ·åˆ—č”Øå·²ę›“ę–°" msgid "User Lists" msgstr "ē”Øęˆ·åˆ—č”Ø" -#: src/view/com/auth/login/LoginForm.tsx:174 -#: src/view/com/auth/login/LoginForm.tsx:192 +#: src/view/com/auth/login/LoginForm.tsx:177 +#: src/view/com/auth/login/LoginForm.tsx:195 msgid "Username or email address" msgstr "ē”Øęˆ·åęˆ–ē”µå­é‚®ē®±" @@ -4161,18 +4271,18 @@ msgid "Users in \"{0}\"" msgstr "\"{0}\"äø­ēš„ē”Øęˆ·" #: src/view/com/auth/create/Step2.tsx:243 -msgid "Verification code" -msgstr "验证码" +#~ msgid "Verification code" +#~ msgstr "验证码" -#: src/view/screens/Settings.tsx:892 +#: src/view/screens/Settings/index.tsx:910 msgid "Verify email" msgstr "éŖŒčÆé‚®ē®±" -#: src/view/screens/Settings.tsx:917 +#: src/view/screens/Settings/index.tsx:935 msgid "Verify my email" msgstr "éŖŒčÆęˆ‘ēš„é‚®ē®±" -#: src/view/screens/Settings.tsx:926 +#: src/view/screens/Settings/index.tsx:944 msgid "Verify My Email" msgstr "éŖŒčÆęˆ‘ēš„é‚®ē®±" @@ -4189,7 +4299,7 @@ msgstr "éŖŒčÆä½ ēš„é‚®ē®±" msgid "Video Games" msgstr "č§†é¢‘ęøøęˆ" -#: src/view/com/profile/ProfileHeader.tsx:701 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "ęŸ„ēœ‹{0}ēš„å¤“åƒ" @@ -4214,15 +4324,15 @@ msgid "Visit Site" msgstr "访问网站" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:42 -#: src/view/com/modals/ContentFilteringSettings.tsx:254 +#: src/view/com/modals/ContentFilteringSettings.tsx:259 msgid "Warn" msgstr "č­¦å‘Š" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:134 msgid "We also think you'll like \"For You\" by Skygaze:" msgstr "ęˆ‘ä»¬č®¤äøŗčæ˜ä½ ä¼šå–œę¬¢ Skygaze ę‰€ē»“ęŠ¤ēš„ \"For You\":" -#: src/screens/Deactivated.tsx:134 +#: src/screens/Deactivated.tsx:133 msgid "We estimate {estimatedTime} until your account is ready." msgstr "ęˆ‘ä»¬ä¼°č®”čæ˜éœ€č¦ {estimatedTime} ę‰čƒ½å®Œęˆä½ ēš„č“¦ęˆ·å‡†å¤‡ć€‚" @@ -4234,7 +4344,7 @@ msgstr "ęˆ‘ä»¬åøŒęœ›ä½ åœØę­¤åŗ¦čæ‡ę„‰åæ«ēš„ę—¶å…‰ć€‚čÆ·č®°ä½ļ¼ŒBluesky 是:" msgid "We ran out of posts from your follows. Here's the latest from <0/>." msgstr "ęˆ‘ä»¬å·²ē»ēœ‹å®Œäŗ†ä½ å…³ę³Øēš„åø–å­ć€‚čæ™ę˜Æę„č‡Ŗ <0/> ēš„ęœ€ę–°ę¶ˆęÆć€‚" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:119 +#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:124 msgid "We recommend our \"Discover\" feed:" msgstr "ęˆ‘ä»¬ęŽØčęˆ‘ä»¬ēš„ \"Discover\" 俔息流:" @@ -4242,7 +4352,7 @@ msgstr "ęˆ‘ä»¬ęŽØčęˆ‘ä»¬ēš„ \"Discover\" 俔息流:" msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "ęˆ‘ä»¬ę— ę³•čæžęŽ„åˆ°äŗ’č”ē½‘ļ¼ŒčÆ·é‡čÆ•ä»„ē»§ē»­č®¾ē½®ä½ ēš„č“¦ęˆ·ć€‚å¦‚ęžœä»ē»§ē»­å¤±č“„ļ¼Œä½ åÆä»„é€‰ę‹©č·³čæ‡ę­¤ęµēØ‹ć€‚" -#: src/screens/Deactivated.tsx:138 +#: src/screens/Deactivated.tsx:137 msgid "We will let you know when your account is ready." msgstr "ęˆ‘ä»¬ä¼šåœØä½ ēš„č“¦ęˆ·å‡†å¤‡å„½ę—¶é€šēŸ„ä½ ć€‚" @@ -4254,11 +4364,11 @@ msgstr "ęˆ‘ä»¬å°†čæ…é€Ÿå®”ęŸ„ä½ ēš„ē”³čÆ‰ć€‚" msgid "We'll use this to help customize your experience." msgstr "ęˆ‘ä»¬å°†ä½æē”Øčæ™äŗ›äæ”ęÆę„åø®åŠ©å®šåˆ¶ä½ ēš„ä½“éŖŒć€‚" -#: src/view/com/auth/create/CreateAccount.tsx:123 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "ęˆ‘ä»¬éžåøøé«˜å…“ä½ åŠ å…„ęˆ‘ä»¬ļ¼" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "å¾ˆęŠ±ę­‰ļ¼Œęˆ‘ä»¬ę— ę³•č§£ęžę­¤åˆ—č”Øć€‚å¦‚ęžœé—®é¢˜ęŒē»­å‘ē”Ÿļ¼ŒčÆ·č”ē³»åˆ—č”Øåˆ›å»ŗč€…ļ¼Œ@{handleOrDid}怂" @@ -4282,7 +4392,7 @@ msgstr "ä½ ę„Ÿå…“č¶£ēš„ę˜Æä»€ä¹ˆļ¼Ÿ" msgid "What is the issue with this {collectionName}?" msgstr "这个 {collectionName} ęœ‰ä»€ä¹ˆé—®é¢˜ļ¼Ÿ" -#: src/view/com/auth/SplashScreen.tsx:34 +#: src/view/com/auth/SplashScreen.tsx:59 #: src/view/com/composer/Composer.tsx:279 msgid "What's up?" msgstr "å‘ē”Ÿäŗ†ä»€ä¹ˆę–°é²œäŗ‹ļ¼Ÿ" @@ -4318,20 +4428,20 @@ msgid "Writers" msgstr "作家" #: src/view/com/auth/create/Step2.tsx:263 -msgid "XXXXXX" -msgstr "XXXXXX" +#~ msgid "XXXXXX" +#~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" msgstr "启用" -#: src/screens/Deactivated.tsx:131 +#: src/screens/Deactivated.tsx:130 msgid "You are in line." msgstr "č½®åˆ°ä½ äŗ†ć€‚" @@ -4357,7 +4467,7 @@ msgstr "ä½ ē›®å‰čæ˜ę²”ęœ‰é‚€čÆ·ē ļ¼å½“ä½ ęŒē»­ä½æē”Ø Bluesky äø€ę®µę—¶é—“åŽ msgid "You don't have any pinned feeds." msgstr "ä½ ē›®å‰čæ˜ę²”ęœ‰ä»»ä½•å›ŗå®šēš„äæ”ęÆęµć€‚" -#: src/view/screens/Feeds.tsx:419 +#: src/view/screens/Feeds.tsx:452 msgid "You don't have any saved feeds!" msgstr "ä½ ē›®å‰čæ˜ę²”ęœ‰ä»»ä½•äæå­˜ēš„äæ”ęÆęµļ¼" @@ -4365,7 +4475,7 @@ msgstr "ä½ ē›®å‰čæ˜ę²”ęœ‰ä»»ä½•äæå­˜ēš„äæ”ęÆęµļ¼" msgid "You don't have any saved feeds." msgstr "ä½ ē›®å‰čæ˜ę²”ęœ‰ä»»ä½•äæå­˜ēš„äæ”ęÆęµć€‚" -#: src/view/com/post-thread/PostThread.tsx:406 +#: src/view/com/post-thread/PostThread.tsx:464 msgid "You have blocked the author or you have been blocked by the author." msgstr "ä½ å·²å±č”½čÆ„ä½œč€…ļ¼Œęˆ–ä½ å·²č¢«čÆ„ä½œč€…å±č”½ć€‚" @@ -4405,7 +4515,7 @@ msgstr "ä½ å°šęœŖåˆ›å»ŗä»»ä½• App äø“ē”ØåÆ†ē ļ¼ŒåÆä»„é€ščæ‡ē‚¹å‡»äø‹é¢ēš„ęŒ‰ msgid "You have not muted any accounts yet. To mute an account, go to their profile and selected \"Mute account\" from the menu on their account." msgstr "ä½ čæ˜ę²”ęœ‰éšč—ä»»ä½•č“¦å·ć€‚č¦éšč—č“¦å·ļ¼ŒčÆ·č½¬åˆ°å…¶äøŖäŗŗčµ„ę–™å¹¶åœØå…¶č“¦å·äøŠēš„čœå•äø­é€‰ę‹© \"éšč—č“¦å·\"怂" -#: src/view/com/modals/ContentFilteringSettings.tsx:170 +#: src/view/com/modals/ContentFilteringSettings.tsx:175 msgid "You must be 18 or older to enable adult content." msgstr "你必锻幓滔18å²åŠä»„äøŠę‰čƒ½åÆē”Øęˆäŗŗå†…å®¹ć€‚" @@ -4413,11 +4523,11 @@ msgstr "你必锻幓滔18å²åŠä»„äøŠę‰čƒ½åÆē”Øęˆäŗŗå†…å®¹ć€‚" msgid "You must be 18 years or older to enable adult content" msgstr "你必锻幓滔18å²åŠä»„äøŠę‰čƒ½åÆē”Øęˆäŗŗå†…å®¹" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "ä½ å°†äøå†ę”¶åˆ°čæ™ę”č®Øč®ŗäø²ēš„é€šēŸ„" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "ä½ å°†ę”¶åˆ°čæ™ę”č®Øč®ŗäø²ēš„é€šēŸ„" @@ -4429,9 +4539,9 @@ msgstr "ä½ å°†ę”¶åˆ°äø€å°åø¦ęœ‰é‡ē½®ä»£ē ēš„ē”µå­é‚®ä»¶ć€‚čÆ·åœØę­¤č¾“å…„čÆ„ msgid "You're in control" msgstr "ä½ å°½åœØęŽŒęŽ§" +#: src/screens/Deactivated.tsx:87 #: src/screens/Deactivated.tsx:88 -#: src/screens/Deactivated.tsx:89 -#: src/screens/Deactivated.tsx:104 +#: src/screens/Deactivated.tsx:103 msgid "You're in line" msgstr "č½®åˆ°ä½ äŗ†" @@ -4443,7 +4553,7 @@ msgstr "你已设置完成!" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ä½ å·²ē»ęµč§ˆå®Œä½ ēš„č®¢é˜…äæ”ęÆęµå•¦ļ¼åÆ»ę‰¾äø€äŗ›ę›“å¤šēš„č“¦å·å…³ę³Øå§ć€‚" -#: src/view/com/auth/create/Step1.tsx:67 +#: src/view/com/auth/create/Step1.tsx:74 msgid "Your account" msgstr "ä½ ēš„č“¦ęˆ·" @@ -4451,7 +4561,11 @@ msgstr "ä½ ēš„č“¦ęˆ·" msgid "Your account has been deleted" msgstr "ä½ ēš„č“¦ęˆ·å·²åˆ é™¤" -#: src/view/com/auth/create/Step1.tsx:182 +#: src/view/screens/Settings/ExportCarDialog.tsx:47 +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/view/com/auth/create/Step1.tsx:238 msgid "Your birth date" msgstr "ä½ ēš„ē”Ÿę—„" @@ -4463,7 +4577,7 @@ msgstr "ä½ ēš„é€‰ę‹©å°†č¢«äæå­˜ļ¼Œä½†åÆä»„ēØåŽåœØč®¾ē½®äø­ę›“ę”¹ć€‚" msgid "Your default feed is \"Following\"" msgstr "ä½ ēš„é»˜č®¤äæ”ęÆęµäøŗ\"关注\"" -#: src/view/com/auth/create/state.ts:153 +#: src/view/com/auth/create/state.ts:110 #: src/view/com/auth/login/ForgotPasswordForm.tsx:70 #: src/view/com/modals/ChangePassword.tsx:54 msgid "Your email appears to be invalid." @@ -4485,7 +4599,7 @@ msgstr "ä½ ēš„ē”µå­é‚®ē®±å°šęœŖéŖŒčÆć€‚čæ™ę˜Æäø€äøŖé‡č¦ēš„å®‰å…Øę­„éŖ¤ļ¼Œęˆ‘ msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ä½ ēš„å…³ę³Øäæ”ęÆęµäøŗē©ŗļ¼å…³ę³Øę›“å¤šē”Øęˆ·åŽ»ēœ‹ēœ‹ä»–ä»¬å‘äŗ†ä»€ä¹ˆä»€ä¹ˆć€‚" -#: src/view/com/auth/create/Step3.tsx:45 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ä½ ēš„å®Œę•“ē”Øęˆ·čÆ†åˆ«ē¬¦å°†äæ®ę”¹äøŗ" @@ -4496,8 +4610,8 @@ msgstr "ä½ ēš„å®Œę•“ē”Øęˆ·čÆ†åˆ«ē¬¦å°†äæ®ę”¹äøŗ <0>@{0}" #: src/view/screens/Settings.tsx:430 #: src/view/shell/desktop/RightNav.tsx:137 #: src/view/shell/Drawer.tsx:660 -msgid "Your invite codes are hidden when logged in using an App Password" -msgstr "åœØä½æē”Ø App äø“ē”ØåÆ†ē ē™»å½•ę—¶ļ¼Œä½ ēš„é‚€čÆ·ē å°†č¢«éšč—" +#~ msgid "Your invite codes are hidden when logged in using an App Password" +#~ msgstr "åœØä½æē”Ø App äø“ē”ØåÆ†ē ē™»å½•ę—¶ļ¼Œä½ ēš„é‚€čÆ·ē å°†č¢«éšč—" #: src/view/com/modals/ChangePassword.tsx:155 msgid "Your password has been changed successfully!" @@ -4514,7 +4628,7 @@ msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "ä½ ēš„åø–å­ć€ē‚¹čµžå’Œå±č”½ę˜Æå…¬å¼€åÆč§ēš„ļ¼Œč€Œéšč—äøåÆč§ć€‚" #: src/view/com/modals/SwitchAccount.tsx:84 -#: src/view/screens/Settings.tsx:125 +#: src/view/screens/Settings/index.tsx:118 msgid "Your profile" msgstr "ä½ ēš„äøŖäŗŗčµ„ę–™" @@ -4522,6 +4636,6 @@ msgstr "ä½ ēš„äøŖäŗŗčµ„ę–™" msgid "Your reply has been published" msgstr "ä½ ēš„å›žå¤å·²å‘é€" -#: src/view/com/auth/create/Step3.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ä½ ēš„ē”Øęˆ·čÆ†åˆ«ē¬¦" diff --git a/src/routes.ts b/src/routes.ts index 8731f486c6..62732985ce 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -25,7 +25,7 @@ export const router = new Router({ DebugMod: '/sys/debug-mod', Log: '/sys/log', AppPasswords: '/settings/app-passwords', - PreferencesHomeFeed: '/settings/home-feed', + PreferencesFollowingFeed: '/settings/following-feed', PreferencesThreads: '/settings/threads', PreferencesExternalEmbeds: '/settings/external-embeds', SavedFeeds: '/settings/saved-feeds', diff --git a/src/screens/Onboarding/Layout.tsx b/src/screens/Onboarding/Layout.tsx index d887c08209..6337cee09d 100644 --- a/src/screens/Onboarding/Layout.tsx +++ b/src/screens/Onboarding/Layout.tsx @@ -17,7 +17,7 @@ import { flatten, TextStyleProp, } from '#/alf' -import {H2, P, leading} from '#/components/Typography' +import {P, leading, Text} from '#/components/Typography' import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron' import {Button, ButtonIcon} from '#/components/Button' import {ScrollView} from '#/view/com/util/Views' @@ -209,16 +209,18 @@ export function Title({ style, }: React.PropsWithChildren) { return ( -

{children} -

+
) } diff --git a/src/screens/Onboarding/StepAlgoFeeds/index.tsx b/src/screens/Onboarding/StepAlgoFeeds/index.tsx index 33e519207b..1a4e4c493b 100644 --- a/src/screens/Onboarding/StepAlgoFeeds/index.tsx +++ b/src/screens/Onboarding/StepAlgoFeeds/index.tsx @@ -20,7 +20,7 @@ import { OnboardingControls, } from '#/screens/Onboarding/Layout' import {FeedCard} from '#/screens/Onboarding/StepAlgoFeeds/FeedCard' -import {IconCircle} from '#/screens/Onboarding/IconCircle' +import {IconCircle} from '#/components/IconCircle' export type FeedConfig = { default: boolean diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index 72d53658b7..944dcb96d2 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -23,7 +23,7 @@ import { Description, OnboardingControls, } from '#/screens/Onboarding/Layout' -import {IconCircle} from '#/screens/Onboarding/IconCircle' +import {IconCircle} from '#/components/IconCircle' import { bulkWriteFollows, sortPrimaryAlgorithmFeeds, diff --git a/src/screens/Onboarding/StepFollowingFeed.tsx b/src/screens/Onboarding/StepFollowingFeed.tsx index 114e274b68..898afad134 100644 --- a/src/screens/Onboarding/StepFollowingFeed.tsx +++ b/src/screens/Onboarding/StepFollowingFeed.tsx @@ -22,7 +22,7 @@ import { usePreferencesQuery, useSetFeedViewPreferencesMutation, } from 'state/queries/preferences' -import {IconCircle} from '#/screens/Onboarding/IconCircle' +import {IconCircle} from '#/components/IconCircle' export function StepFollowingFeed() { const {_} = useLingui() diff --git a/src/screens/Onboarding/StepInterests/index.tsx b/src/screens/Onboarding/StepInterests/index.tsx index 5440dcd2b3..ea23b74f09 100644 --- a/src/screens/Onboarding/StepInterests/index.tsx +++ b/src/screens/Onboarding/StepInterests/index.tsx @@ -26,7 +26,7 @@ import { OnboardingControls, } from '#/screens/Onboarding/Layout' import {InterestButton} from '#/screens/Onboarding/StepInterests/InterestButton' -import {IconCircle} from '#/screens/Onboarding/IconCircle' +import {IconCircle} from '#/components/IconCircle' export function StepInterests() { const {_} = useLingui() @@ -139,7 +139,7 @@ export function StepInterests() { ) return ( - + ([]) const [saving, setSaving] = React.useState(false) const suggestedFeedUris = React.useMemo(() => { - if (!IS_PROD) return [] + if (!IS_PROD_SERVICE(currentAccount?.service)) return [] return aggregateInterestItems( state.interestsStepResults.selectedInterests, state.interestsStepResults.apiResponse.suggestedFeedUris, state.interestsStepResults.apiResponse.suggestedFeedUris.default, ).slice(0, 10) - }, [state.interestsStepResults]) + }, [ + currentAccount?.service, + state.interestsStepResults.apiResponse.suggestedFeedUris, + state.interestsStepResults.selectedInterests, + ]) const interestsText = React.useMemo(() => { const i = state.interestsStepResults.selectedInterests.map( diff --git a/src/state/models/media/image.e2e.ts b/src/state/models/media/image.e2e.ts new file mode 100644 index 0000000000..ccabd50475 --- /dev/null +++ b/src/state/models/media/image.e2e.ts @@ -0,0 +1,146 @@ +import {Image as RNImage} from 'react-native-image-crop-picker' +import {makeAutoObservable} from 'mobx' +import {POST_IMG_MAX} from 'lib/constants' +import {ActionCrop} from 'expo-image-manipulator' +import {Position} from 'react-avatar-editor' +import {Dimensions} from 'lib/media/types' + +export interface ImageManipulationAttributes { + aspectRatio?: '4:3' | '1:1' | '3:4' | 'None' + rotate?: number + scale?: number + position?: Position + flipHorizontal?: boolean + flipVertical?: boolean +} + +export class ImageModel implements Omit { + path: string + mime = 'image/jpeg' + width: number + height: number + altText = '' + cropped?: RNImage = undefined + compressed?: RNImage = undefined + + // Web manipulation + prev?: RNImage + attributes: ImageManipulationAttributes = { + aspectRatio: 'None', + scale: 1, + flipHorizontal: false, + flipVertical: false, + rotate: 0, + } + prevAttributes: ImageManipulationAttributes = {} + + constructor(image: Omit) { + makeAutoObservable(this) + + this.path = image.path + this.width = image.width + this.height = image.height + } + + setRatio(aspectRatio: ImageManipulationAttributes['aspectRatio']) { + this.attributes.aspectRatio = aspectRatio + } + + setRotate(degrees: number) { + this.attributes.rotate = degrees + this.manipulate({}) + } + + flipVertical() { + this.attributes.flipVertical = !this.attributes.flipVertical + this.manipulate({}) + } + + flipHorizontal() { + this.attributes.flipHorizontal = !this.attributes.flipHorizontal + this.manipulate({}) + } + + get ratioMultipliers() { + return { + '4:3': 4 / 3, + '1:1': 1, + '3:4': 3 / 4, + None: this.width / this.height, + } + } + + getUploadDimensions( + dimensions: Dimensions, + maxDimensions: Dimensions = POST_IMG_MAX, + as: ImageManipulationAttributes['aspectRatio'] = 'None', + ) { + const {width, height} = dimensions + const {width: maxWidth, height: maxHeight} = maxDimensions + + return width < maxWidth && height < maxHeight + ? { + width, + height, + } + : this.getResizedDimensions(as, POST_IMG_MAX.width) + } + + getResizedDimensions( + as: ImageManipulationAttributes['aspectRatio'] = 'None', + maxSide: number, + ) { + const ratioMultiplier = this.ratioMultipliers[as] + + if (ratioMultiplier === 1) { + return { + height: maxSide, + width: maxSide, + } + } + + if (ratioMultiplier < 1) { + return { + width: maxSide * ratioMultiplier, + height: maxSide, + } + } + + return { + width: maxSide, + height: maxSide / ratioMultiplier, + } + } + + setAltText(altText: string) { + this.altText = altText.trim() + } + + // Only compress prior to upload + async compress() { + // do nothing + } + + // Mobile + async crop() { + // do nothing + } + + // Web manipulation + async manipulate( + _attributes: { + crop?: ActionCrop['crop'] + } & ImageManipulationAttributes, + ) { + // do nothing + } + + resetCropped() { + this.manipulate({}) + } + + previous() { + this.cropped = this.prev + this.attributes = this.prevAttributes + } +} diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index b91db92373..405d054d44 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -133,23 +133,6 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { return query } -/** - * This helper is used by the post-thread placeholder function to - * find a post in the query-data cache - */ -export function findPostInQueryData( - queryClient: QueryClient, - uri: string, -): AppBskyFeedDefs.PostView | undefined { - const generator = findAllPostsInQueryData(queryClient, uri) - const result = generator.next() - if (result.done) { - return undefined - } else { - return result.value - } -} - export function* findAllPostsInQueryData( queryClient: QueryClient, uri: string, diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index dd9de21523..51aa941a57 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -376,23 +376,6 @@ function createApi( } } -/** - * This helper is used by the post-thread placeholder function to - * find a post in the query-data cache - */ -export function findPostInQueryData( - queryClient: QueryClient, - uri: string, -): AppBskyFeedDefs.PostView | undefined { - const generator = findAllPostsInQueryData(queryClient, uri) - const result = generator.next() - if (result.done) { - return undefined - } else { - return result.value - } -} - export function* findAllPostsInQueryData( queryClient: QueryClient, uri: string, diff --git a/src/state/queries/post-thread.ts b/src/state/queries/post-thread.ts index ba42431639..26d40599c6 100644 --- a/src/state/queries/post-thread.ts +++ b/src/state/queries/post-thread.ts @@ -8,8 +8,8 @@ import {useQuery, useQueryClient, QueryClient} from '@tanstack/react-query' import {getAgent} from '#/state/session' import {UsePreferencesQueryResponse} from '#/state/queries/preferences/types' -import {findPostInQueryData as findPostInFeedQueryData} from './post-feed' -import {findPostInQueryData as findPostInNotifsQueryData} from './notifications/feed' +import {findAllPostsInQueryData as findAllPostsInFeedQueryData} from './post-feed' +import {findAllPostsInQueryData as findAllPostsInNotifsQueryData} from './notifications/feed' import {precacheThreadPostProfiles} from './profile' import {getEmbeddedPost} from './util' @@ -82,21 +82,9 @@ export function usePostThreadQuery(uri: string | undefined) { return undefined } { - const item = findPostInQueryData(queryClient, uri) - if (item) { - return threadNodeToPlaceholderThread(item) - } - } - { - const item = findPostInFeedQueryData(queryClient, uri) - if (item) { - return postViewToPlaceholderThread(item) - } - } - { - const item = findPostInNotifsQueryData(queryClient, uri) - if (item) { - return postViewToPlaceholderThread(item) + const post = findPostInQueryData(queryClient, uri) + if (post) { + return post } } return undefined @@ -171,11 +159,18 @@ function responseToThreadNodes( AppBskyFeedPost.isRecord(node.post.record) && AppBskyFeedPost.validateRecord(node.post.record).success ) { + const post = node.post + // These should normally be present. They're missing only for + // posts that were *just* created. Ideally, the backend would + // know to return zeros. Fill them in manually to compensate. + post.replyCount ??= 0 + post.likeCount ??= 0 + post.repostCount ??= 0 return { type: 'post', _reactKey: node.post.uri, uri: node.post.uri, - post: node.post, + post: post, record: node.post.record, parent: node.parent && direction !== 'down' @@ -213,14 +208,24 @@ function responseToThreadNodes( function findPostInQueryData( queryClient: QueryClient, uri: string, -): ThreadNode | undefined { - const generator = findAllPostsInQueryData(queryClient, uri) - const result = generator.next() - if (result.done) { - return undefined - } else { - return result.value +): ThreadNode | void { + let partial + for (let item of findAllPostsInQueryData(queryClient, uri)) { + if (item.type === 'post') { + // Currently, the backend doesn't send full post info in some cases + // (for example, for quoted posts). We use missing `likeCount` + // as a way to detect that. In the future, we should fix this on + // the backend, which will let us always stop on the first result. + const hasAllInfo = item.post.likeCount != null + if (hasAllInfo) { + return item + } else { + partial = item + // Keep searching, we might still find a full post in the cache. + } + } } + return partial } export function* findAllPostsInQueryData( @@ -236,7 +241,10 @@ export function* findAllPostsInQueryData( } for (const item of traverseThread(queryData)) { if (item.uri === uri) { - yield item + const placeholder = threadNodeToPlaceholderThread(item) + if (placeholder) { + yield placeholder + } } const quotedPost = item.type === 'post' ? getEmbeddedPost(item.post.embed) : undefined @@ -245,6 +253,12 @@ export function* findAllPostsInQueryData( } } } + for (let post of findAllPostsInFeedQueryData(queryClient, uri)) { + yield postViewToPlaceholderThread(post) + } + for (let post of findAllPostsInNotifsQueryData(queryClient, uri)) { + yield postViewToPlaceholderThread(post) + } } function* traverseThread(node: ThreadNode): Generator { diff --git a/src/state/queries/util.ts b/src/state/queries/util.ts index f3a87ae5db..54752b332a 100644 --- a/src/state/queries/util.ts +++ b/src/state/queries/util.ts @@ -53,5 +53,6 @@ export function embedViewRecordToPostView( record: v.value, indexedAt: v.indexedAt, labels: v.labels, + embed: v.embeds?.[0], } } diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index b6da8d3eaa..b13f69f086 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -7,7 +7,6 @@ import {networkRetry} from '#/lib/async/retry' import {logger} from '#/logger' import * as persisted from '#/state/persisted' import {PUBLIC_BSKY_AGENT} from '#/state/queries' -import {IS_PROD} from '#/lib/constants' import {emitSessionDropped} from '../events' import {useLoggedOutViewControls} from '#/state/shell/logged-out' import {useCloseAllActiveElements} from '#/state/util' @@ -36,7 +35,6 @@ export type SessionState = { } export type StateContext = SessionState & { hasSession: boolean - isSandbox: boolean } export type ApiContext = { createAccount: (props: { @@ -84,7 +82,6 @@ const StateContext = React.createContext({ accounts: [], currentAccount: undefined, hasSession: false, - isSandbox: false, }) const ApiContext = React.createContext({ @@ -612,9 +609,6 @@ export function Provider({children}: React.PropsWithChildren<{}>) { () => ({ ...state, hasSession: !!state.currentAccount, - isSandbox: state.currentAccount - ? !IS_PROD(state.currentAccount?.service) - : false, }), [state], ) diff --git a/src/view/com/auth/SplashScreen.tsx b/src/view/com/auth/SplashScreen.tsx index ffd07d945b..134ae11f10 100644 --- a/src/view/com/auth/SplashScreen.tsx +++ b/src/view/com/auth/SplashScreen.tsx @@ -1,5 +1,6 @@ import React from 'react' import {StyleSheet, TouchableOpacity, View} from 'react-native' +import {useSafeAreaInsets} from 'react-native-safe-area-context' import {Text} from 'view/com/util/text/Text' import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {s, colors} from 'lib/styles' @@ -9,6 +10,14 @@ import {Trans, msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {Logo} from '#/view/icons/Logo' import {Logotype} from '#/view/icons/Logotype' +import { + FontAwesomeIcon, + FontAwesomeIconStyle, +} from '@fortawesome/react-native-fontawesome' +import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select' +import {sanitizeAppLanguageSetting} from '#/locale/helpers' +import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' +import {APP_LANGUAGES} from '#/locale/languages' export const SplashScreen = ({ onPressSignin, @@ -20,6 +29,22 @@ export const SplashScreen = ({ const pal = usePalette('default') const {_} = useLingui() + const langPrefs = useLanguagePrefs() + const setLangPrefs = useLanguagePrefsApi() + const insets = useSafeAreaInsets() + + const sanitizedLang = sanitizeAppLanguageSetting(langPrefs.appLanguage) + + const onChangeAppLanguage = React.useCallback( + (value: Parameters[0]) => { + if (!value) return + if (sanitizedLang !== value) { + setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value)) + } + }, + [sanitizedLang, setLangPrefs], + ) + return ( @@ -58,6 +83,51 @@ export const SplashScreen = ({
+ + + Boolean(l.code2)).map(l => ({ + label: l.name, + value: l.code2, + key: l.code2, + }))} + useNativeAndroidPickerStyle={false} + style={{ + inputAndroid: { + color: pal.textLight.color, + fontSize: 16, + paddingRight: 10 + 4, + }, + inputIOS: { + color: pal.text.color, + fontSize: 16, + paddingRight: 10 + 4, + }, + }} + /> + + + + + + + ) @@ -73,7 +143,7 @@ const styles = StyleSheet.create({ alignItems: 'center', }, btns: { - paddingBottom: 40, + paddingBottom: 0, }, title: { textAlign: 'center', @@ -95,4 +165,11 @@ const styles = StyleSheet.create({ textAlign: 'center', fontSize: 21, }, + footer: { + paddingHorizontal: 16, + paddingTop: 12, + paddingBottom: 24, + justifyContent: 'center', + alignItems: 'center', + }, }) diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index 8ef64099f0..f1921c7ffb 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -9,9 +9,13 @@ import {usePalette} from 'lib/hooks/usePalette' import {CenteredView} from '../util/Views' import {isWeb} from 'platform/detection' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {Trans} from '@lingui/macro' +import {Trans, msg} from '@lingui/macro' import {Logo} from '#/view/icons/Logo' import {Logotype} from '#/view/icons/Logotype' +import {useLingui} from '@lingui/react' +import {sanitizeAppLanguageSetting} from '#/locale/helpers' +import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' +import {APP_LANGUAGES} from '#/locale/languages' export const SplashScreen = ({ onDismiss, @@ -98,24 +102,84 @@ export const SplashScreen = ({ function Footer({styles}: {styles: ReturnType}) { const pal = usePalette('default') + const {_} = useLingui() + + const langPrefs = useLanguagePrefs() + const setLangPrefs = useLanguagePrefsApi() + + const sanitizedLang = sanitizeAppLanguageSetting(langPrefs.appLanguage) + + const onChangeAppLanguage = React.useCallback( + (ev: React.ChangeEvent) => { + const value = ev.target.value + + if (!value) return + if (sanitizedLang !== value) { + setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value)) + } + }, + [sanitizedLang, setLangPrefs], + ) return ( + + + + + + {APP_LANGUAGES.find(l => l.code2 === sanitizedLang)?.name} + + + + + ) } @@ -188,9 +252,10 @@ const useStyles = () => { padding: 20, borderTopWidth: 1, flexDirection: 'row', + flexWrap: 'wrap', + gap: 20, }, - footerLink: { - marginRight: 20, - }, + footerDivider: {flexGrow: 1}, + footerLink: {}, }) } diff --git a/src/view/com/auth/create/CaptchaWebView.tsx b/src/view/com/auth/create/CaptchaWebView.tsx new file mode 100644 index 0000000000..b0de8b4a4b --- /dev/null +++ b/src/view/com/auth/create/CaptchaWebView.tsx @@ -0,0 +1,86 @@ +import React from 'react' +import {WebView, WebViewNavigation} from 'react-native-webview' +import {ShouldStartLoadRequest} from 'react-native-webview/lib/WebViewTypes' +import {StyleSheet} from 'react-native' +import {CreateAccountState} from 'view/com/auth/create/state' + +const ALLOWED_HOSTS = [ + 'bsky.social', + 'bsky.app', + 'staging.bsky.app', + 'staging.bsky.dev', + 'js.hcaptcha.com', + 'newassets.hcaptcha.com', + 'api2.hcaptcha.com', +] + +export function CaptchaWebView({ + url, + stateParam, + uiState, + onSuccess, + onError, +}: { + url: string + stateParam: string + uiState?: CreateAccountState + onSuccess: (code: string) => void + onError: () => void +}) { + const redirectHost = React.useMemo(() => { + if (!uiState?.serviceUrl) return 'bsky.app' + + return uiState?.serviceUrl && + new URL(uiState?.serviceUrl).host === 'staging.bsky.dev' + ? 'staging.bsky.app' + : 'bsky.app' + }, [uiState?.serviceUrl]) + + const wasSuccessful = React.useRef(false) + + const onShouldStartLoadWithRequest = React.useCallback( + (event: ShouldStartLoadRequest) => { + const urlp = new URL(event.url) + return ALLOWED_HOSTS.includes(urlp.host) + }, + [], + ) + + const onNavigationStateChange = React.useCallback( + (e: WebViewNavigation) => { + if (wasSuccessful.current) return + + const urlp = new URL(e.url) + if (urlp.host !== redirectHost) return + + const code = urlp.searchParams.get('code') + if (urlp.searchParams.get('state') !== stateParam || !code) { + onError() + return + } + + wasSuccessful.current = true + onSuccess(code) + }, + [redirectHost, stateParam, onSuccess, onError], + ) + + return ( + + ) +} + +const styles = StyleSheet.create({ + webview: { + flex: 1, + backgroundColor: 'transparent', + borderRadius: 10, + }, +}) diff --git a/src/view/com/auth/create/CaptchaWebView.web.tsx b/src/view/com/auth/create/CaptchaWebView.web.tsx new file mode 100644 index 0000000000..7791a58dd7 --- /dev/null +++ b/src/view/com/auth/create/CaptchaWebView.web.tsx @@ -0,0 +1,61 @@ +import React from 'react' +import {StyleSheet} from 'react-native' + +// @ts-ignore web only, we will always redirect to the app on web (CORS) +const REDIRECT_HOST = new URL(window.location.href).host + +export function CaptchaWebView({ + url, + stateParam, + onSuccess, + onError, +}: { + url: string + stateParam: string + onSuccess: (code: string) => void + onError: () => void +}) { + const onLoad = React.useCallback(() => { + // @ts-ignore web + const frame: HTMLIFrameElement = document.getElementById( + 'captcha-iframe', + ) as HTMLIFrameElement + + try { + // @ts-ignore web + const href = frame?.contentWindow?.location.href + if (!href) return + const urlp = new URL(href) + + // This shouldn't happen with CORS protections, but for good measure + if (urlp.host !== REDIRECT_HOST) return + + const code = urlp.searchParams.get('code') + if (urlp.searchParams.get('state') !== stateParam || !code) { + onError() + return + } + onSuccess(code) + } catch (e) { + // We don't need to handle this + } + }, [stateParam, onSuccess, onError]) + + return ( +