From 6ed30213c8459fbe9faf0d75b50c3f86faf32ff1 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 11:36:18 -0500 Subject: [PATCH 1/9] Add 'Upstream service unreachable' to network errors (#9255) --- src/lib/hooks/useCleanError.ts | 1 + src/lib/strings/errors.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/lib/hooks/useCleanError.ts b/src/lib/hooks/useCleanError.ts index 3b7b575bc..8dd256e0a 100644 --- a/src/lib/hooks/useCleanError.ts +++ b/src/lib/hooks/useCleanError.ts @@ -78,6 +78,7 @@ const NETWORK_ERRORS = [ 'Network request failed', 'Failed to fetch', 'Load failed', + 'Upstream service unreachable', ] export function isNetworkError(e: unknown) { diff --git a/src/lib/strings/errors.ts b/src/lib/strings/errors.ts index 6c8177e44..ee57bfc31 100644 --- a/src/lib/strings/errors.ts +++ b/src/lib/strings/errors.ts @@ -31,6 +31,7 @@ const NETWORK_ERRORS = [ 'Network request failed', 'Failed to fetch', 'Load failed', + 'Upstream service unreachable', ] export function isNetworkError(e: unknown) { -- 2.51.2 From 7cc897d096bb82050900744e685b4cbb9a07fc75 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 11:36:24 -0500 Subject: [PATCH 2/9] Remove error log for Bluesky feed service issues (#9256) --- src/state/queries/post-feed.ts | 58 ++++++++++++---------------------- 1 file changed, 20 insertions(+), 38 deletions(-) diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 7f95a34e7..3a1b4d24a 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -30,7 +30,6 @@ import {type FeedAPI, type ReasonFeedSource} from '#/lib/api/feed/types' import {aggregateUserInterests} from '#/lib/api/feed/utils' import {FeedTuner, type FeedTunerFn} from '#/lib/api/feed-manip' import {DISCOVER_FEED_URI} from '#/lib/constants' -import {BSKY_FEED_OWNER_DIDS} from '#/lib/constants' import {logger} from '#/logger' import {useAgeAssuranceContext} from '#/state/ageAssurance' import {STALE} from '#/state/queries' @@ -208,44 +207,27 @@ export function usePostFeedQuery( cursor: undefined, } - try { - const res = await api.fetch({cursor, limit: fetchLimit}) - - /* - * If this is a public view, we need to check if posts fail moderation. - * If all fail, we throw an error. If only some fail, we continue and let - * moderations happen later, which results in some posts being shown and - * some not. - */ - if (!agent.session) { - assertSomePostsPassModeration( - res.feed, - preferences?.moderationPrefs || - DEFAULT_LOGGED_OUT_PREFERENCES.moderationPrefs, - ) - } - - return { - api, - cursor: res.cursor, - feed: res.feed, - fetchedAt: Date.now(), - } - } catch (e) { - const feedDescParts = feedDesc.split('|') - const feedOwnerDid = new AtUri(feedDescParts[1]).hostname - - if ( - feedDescParts[0] === 'feedgen' && - BSKY_FEED_OWNER_DIDS.includes(feedOwnerDid) - ) { - logger.error(`Bluesky feed may be offline: ${feedOwnerDid}`, { - feedDesc, - jsError: e, - }) - } + const res = await api.fetch({cursor, limit: fetchLimit}) + + /* + * If this is a public view, we need to check if posts fail moderation. + * If all fail, we throw an error. If only some fail, we continue and let + * moderations happen later, which results in some posts being shown and + * some not. + */ + if (!agent.session) { + assertSomePostsPassModeration( + res.feed, + preferences?.moderationPrefs || + DEFAULT_LOGGED_OUT_PREFERENCES.moderationPrefs, + ) + } - throw e + return { + api, + cursor: res.cursor, + feed: res.feed, + fetchedAt: Date.now(), } }, initialPageParam: undefined, -- 2.51.2 From 1abc96314bb8301c9bd97b25d798aafb6116fe22 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 11:36:32 -0500 Subject: [PATCH 3/9] Don't log network errors (#9257) --- src/view/com/posts/PostFeed.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx index fe6351cd4..f3b3f1061 100644 --- a/src/view/com/posts/PostFeed.tsx +++ b/src/view/com/posts/PostFeed.tsx @@ -32,6 +32,7 @@ import {DISCOVER_FEED_URI, KNOWN_SHUTDOWN_FEEDS} from '#/lib/constants' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {logEvent} from '#/lib/statsig/statsig' +import {isNetworkError} from '#/lib/strings/errors' import {logger} from '#/logger' import {isIOS, isNative, isWeb} from '#/platform/detection' import {listenPostCreated} from '#/state/events' @@ -290,7 +291,9 @@ let PostFeed = ({ } } } catch (e) { - logger.error('Poll latest failed', {feed, message: String(e)}) + if (!isNetworkError(e)) { + logger.error('Poll latest failed', {feed, message: String(e)}) + } } }) -- 2.51.2 From 6f31121e5173ea2df08d2a92e888250947b021f1 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 11:36:40 -0500 Subject: [PATCH 4/9] Check for network error before reporting push token issue (#9258) --- src/lib/notifications/notifications.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/notifications/notifications.ts b/src/lib/notifications/notifications.ts index 03dc4726f..02eae3669 100644 --- a/src/lib/notifications/notifications.ts +++ b/src/lib/notifications/notifications.ts @@ -7,6 +7,7 @@ import debounce from 'lodash.debounce' import {PUBLIC_APPVIEW_DID, PUBLIC_STAGING_APPVIEW_DID} from '#/lib/constants' import {logger as notyLogger} from '#/lib/notifications/util' +import {isNetworkError} from '#/lib/strings/errors' import {isNative} from '#/platform/detection' import {useAgeAssuranceContext} from '#/state/ageAssurance' import {type SessionAccount, useAgent, useSession} from '#/state/session' @@ -47,7 +48,9 @@ async function _registerPushToken({ notyLogger.debug(`registerPushToken: success`) } catch (error) { - notyLogger.error(`registerPushToken: failed`, {safeMessage: error}) + if (!isNetworkError(error)) { + notyLogger.error(`registerPushToken: failed`, {safeMessage: error}) + } } } -- 2.51.2 From 24606dbcfcd362690e1dc3e6053753e23861c208 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 11:39:14 -0500 Subject: [PATCH 5/9] Don't need to be logging upstream errors (#9260) --- src/state/feed-feedback.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/state/feed-feedback.tsx b/src/state/feed-feedback.tsx index 67ac77ba3..623f87b12 100644 --- a/src/state/feed-feedback.tsx +++ b/src/state/feed-feedback.tsx @@ -11,7 +11,6 @@ import {type AppBskyFeedDefs} from '@atproto/api' import throttle from 'lodash.throttle' import {PROD_FEEDS, STAGING_FEEDS} from '#/lib/constants' -import {isNetworkError} from '#/lib/hooks/useCleanError' import {Logger} from '#/logger' import { type FeedSourceFeedInfo, @@ -129,11 +128,7 @@ export function useFeedFeedback( }, }, ) - .catch((e: any) => { - if (!isNetworkError(e)) { - logger.warn('Failed to send feed interactions', {error: e}) - } - }) + .catch(() => {}) // ignore upstream errors // Send to Statsig if (aggregatedStats.current === null) { -- 2.51.2 From 12e57378e84ced8b9674d0d7a0fcea5b36664207 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 22 Oct 2025 20:04:36 +0300 Subject: [PATCH 6/9] fix android testflight ci (#9237) --- .github/workflows/build-submit-android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index 27724060e..bd61dbeef 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -182,11 +182,11 @@ jobs: - name: ⬇️ Restore Cache id: get-base-commit uses: actions/cache@v4 - if: ${{ inputs.profile == 'testflight' }} + if: ${{ inputs.profile == 'testflight-android' }} with: path: most-recent-testflight-commit.txt key: most-recent-testflight-commit - name: ✏️ Write commit hash to cache - if: ${{ inputs.profile == 'testflight' }} + if: ${{ inputs.profile == 'testflight-android' }} run: echo ${{ github.sha }} > most-recent-testflight-commit.txt -- 2.51.2 From ea00663e7f4ad9f14b77e3942029165c0f297386 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 22 Oct 2025 20:05:00 +0300 Subject: [PATCH 7/9] Android CI - Clear cache on second build (#9223) * clear cache on second build * alternative cache cleaning method --- .github/workflows/build-submit-android.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index bd61dbeef..3c9c044e3 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -50,8 +50,8 @@ jobs: - uses: actions/setup-java@v4 with: - distribution: 'temurin' - java-version: '17' + distribution: "temurin" + java-version: "17" - name: ⚙️ Install dependencies run: yarn install @@ -96,7 +96,7 @@ jobs: id: timestamp uses: nanzm/get-time-action@master with: - format: 'MM-DD-HH-mm-ss' + format: "MM-DD-HH-mm-ss" - name: 🚀 Upload Production Artifact id: upload-artifact-production @@ -146,6 +146,11 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK + - name: 🧹 Clear Metro cache + if: ${{ inputs.profile == 'production' }} + # https://github.com/expo/eas-cli/issues/2959#issuecomment-2749791326 + run: rm -rf ${TMPDIR:-/tmp}/metro-cache + - name: 🏗️ Build Production APK if: ${{ inputs.profile == 'production' }} run: > -- 2.51.2 From de68915bc0184c62319217fb468661c55dc23354 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 14:08:25 -0500 Subject: [PATCH 8/9] Disable Sentry sampling for now (#9262) --- src/logger/sentry/setup/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logger/sentry/setup/index.ts b/src/logger/sentry/setup/index.ts index 4fe07e97e..4a0aa0f4f 100644 --- a/src/logger/sentry/setup/index.ts +++ b/src/logger/sentry/setup/index.ts @@ -29,5 +29,5 @@ init({ * @see https://docs.sentry.io/platforms/react-native/configuration/options/#attach-stacktrace */ attachStacktrace: false, - sampleRate: env.IS_INTERNAL ? 1.0 : 0.1, + // sampleRate: env.IS_INTERNAL ? 1.0 : 0.1, }) -- 2.51.2 From d4d5d6d8b9ad09e99a855d006c9bfbdf7cdc5561 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Oct 2025 15:51:19 -0500 Subject: [PATCH 9/9] intl:pull and intl:extract:all (#9263) --- src/locale/locales/an/messages.po | 36 +++++----- src/locale/locales/ar/messages.po | 98 ++++++++++++++-------------- src/locale/locales/ast/messages.po | 36 +++++----- src/locale/locales/az/messages.po | 98 ++++++++++++++-------------- src/locale/locales/bn/messages.po | 98 ++++++++++++++-------------- src/locale/locales/ca/messages.po | 38 +++++------ src/locale/locales/cy/messages.po | 42 ++++++------ src/locale/locales/da/messages.po | 58 ++++++++-------- src/locale/locales/de/messages.po | 48 +++++++------- src/locale/locales/el/messages.po | 36 +++++----- src/locale/locales/en-GB/messages.po | 42 ++++++------ src/locale/locales/en/messages.po | 18 ++--- src/locale/locales/eo/messages.po | 38 +++++------ src/locale/locales/es/messages.po | 36 +++++----- src/locale/locales/eu/messages.po | 38 +++++------ src/locale/locales/fi/messages.po | 36 +++++----- src/locale/locales/fr/messages.po | 38 +++++------ src/locale/locales/fy/messages.po | 36 +++++----- src/locale/locales/ga/messages.po | 36 +++++----- src/locale/locales/gd/messages.po | 36 +++++----- src/locale/locales/gl/messages.po | 36 +++++----- src/locale/locales/hi/messages.po | 36 +++++----- src/locale/locales/hu/messages.po | 40 ++++++------ src/locale/locales/ia/messages.po | 36 +++++----- src/locale/locales/id/messages.po | 36 +++++----- src/locale/locales/it/messages.po | 38 +++++------ src/locale/locales/ja/messages.po | 42 ++++++------ src/locale/locales/kab/messages.po | 98 ++++++++++++++-------------- src/locale/locales/km/messages.po | 36 +++++----- src/locale/locales/ko/messages.po | 38 +++++------ src/locale/locales/lt/messages.po | 98 ++++++++++++++-------------- src/locale/locales/ne/messages.po | 36 +++++----- src/locale/locales/nl/messages.po | 36 +++++----- src/locale/locales/pl/messages.po | 36 +++++----- src/locale/locales/pt-BR/messages.po | 36 +++++----- src/locale/locales/pt-PT/messages.po | 38 +++++------ src/locale/locales/ro/messages.po | 38 +++++------ src/locale/locales/ru/messages.po | 36 +++++----- src/locale/locales/sv/messages.po | 38 +++++------ src/locale/locales/th/messages.po | 36 +++++----- src/locale/locales/tr/messages.po | 64 +++++++++--------- src/locale/locales/uk/messages.po | 36 +++++----- src/locale/locales/vi/messages.po | 36 +++++----- src/locale/locales/zh-CN/messages.po | 36 +++++----- src/locale/locales/zh-HK/messages.po | 38 +++++------ src/locale/locales/zh-TW/messages.po | 36 +++++----- 46 files changed, 1026 insertions(+), 1026 deletions(-) diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po index 1c1b630be..1732d98ad 100644 --- a/src/locale/locales/an/messages.po +++ b/src/locale/locales/an/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: an\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Aragonese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Desenfocar imáchens y filtrar dende las canals" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Explorar mas cuentas" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Revisar mas canals" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Explorar mas sucherencias" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Explora mas sucherencias" @@ -3741,17 +3741,17 @@ msgstr "Rematar" msgid "Fitness" msgstr "Exercicio" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Mensaches" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "Veyer publicacions sobre #{tag} per usuario" msgid "See jobs at Bluesky" msgstr "Veyer emplegos en Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Programación" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Belatras canals que podrían fer-te goyo" @@ -8511,12 +8511,12 @@ msgstr "Sucheriu pa tu" msgid "Suggestive" msgstr "Suchestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "I ha habiu un problema en obtener las notificacions. Toca aquí pa intentar de nuevo." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "I ha habiu un problema en obtener las publicacions. Toca aquí pa intentar de nuevo." diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po index e5175cec1..7550790da 100644 --- a/src/locale/locales/ar/messages.po +++ b/src/locale/locales/ar/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar_SA\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Arabic, Saudi Arabia\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -877,7 +877,7 @@ msgid "alice@example.com" msgstr "" #. the default tab in the interests tab bar -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -990,8 +990,8 @@ msgstr "" msgid "An error occurred while compressing the video." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:168 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66 msgid "An error occurred while fetching suggested accounts." msgstr "" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Choose Post Languages" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:424 +#: src/screens/Onboarding/StepFinished/index.tsx:425 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -2051,8 +2051,8 @@ msgstr "" msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:339 -#: src/screens/Onboarding/StepFinished/index.tsx:437 +#: src/screens/Onboarding/StepFinished/index.tsx:340 +#: src/screens/Onboarding/StepFinished/index.tsx:438 msgid "Complete onboarding and start using your account" msgstr "" @@ -2207,8 +2207,8 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:94 #: src/screens/Onboarding/StepProfile/index.tsx:280 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 msgid "Continue" msgstr "" @@ -2226,8 +2226,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:91 #: src/screens/Onboarding/StepProfile/index.tsx:277 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:118 msgid "Failed to follow all suggested accounts, please try again" msgstr "" @@ -3700,8 +3700,8 @@ msgstr "" msgid "Filter who you receive notifications from" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:345 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:346 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Finalizing" msgstr "" @@ -3741,22 +3741,22 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:420 +#: src/screens/Onboarding/StepFinished/index.tsx:421 msgid "Flexible" msgstr "" @@ -3798,7 +3798,7 @@ msgstr "" msgid "Follow account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 #: src/screens/StarterPack/StarterPackScreen.tsx:438 @@ -3806,7 +3806,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 msgid "Follow all accounts" msgstr "" @@ -3822,7 +3822,7 @@ msgctxt "action" msgid "Follow back" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113 msgid "Followed all accounts!" msgstr "" @@ -3923,7 +3923,7 @@ msgstr "" msgid "For the best experience, we recommend using the theme font." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:293 #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91 msgid "For You" msgstr "" @@ -4817,8 +4817,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:347 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:348 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Let's go!" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -5464,7 +5464,7 @@ msgstr "" msgid "Need to report a copyright violation?" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:408 +#: src/screens/Onboarding/StepFinished/index.tsx:409 msgid "Never lose access to your followers or data." msgstr "" @@ -5591,8 +5591,8 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/SetNewPasswordForm.tsx:182 #: src/screens/Login/SetNewPasswordForm.tsx:188 -#: src/screens/Onboarding/StepFinished/index.tsx:340 -#: src/screens/Onboarding/StepFinished/index.tsx:349 +#: src/screens/Onboarding/StepFinished/index.tsx:341 +#: src/screens/Onboarding/StepFinished/index.tsx:350 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 @@ -5947,7 +5947,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:404 +#: src/screens/Onboarding/StepFinished/index.tsx:405 msgid "Open" msgstr "" @@ -6678,7 +6678,7 @@ msgctxt "toast" msgid "Profile updated" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:390 +#: src/screens/Onboarding/StepFinished/index.tsx:391 msgid "Public" msgstr "" @@ -7369,10 +7369,10 @@ msgstr "" #: src/screens/Messages/ChatList.tsx:292 #: src/screens/Messages/components/MessageListError.tsx:25 #: src/screens/Messages/Inbox.tsx:219 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:216 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:98 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:209 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 #: src/screens/PostThread/components/ThreadError.tsx:80 #: src/screens/PostThread/components/ThreadError.tsx:86 #: src/screens/Signup/BackNextButtons.tsx:53 @@ -8227,8 +8227,8 @@ msgstr "" #: src/screens/Onboarding/StepFinished/index.tsx:306 #: src/screens/Onboarding/StepFinished/index.tsx:328 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:222 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 #: src/screens/StarterPack/Wizard/index.tsx:218 msgid "Skip" msgstr "" @@ -8238,9 +8238,9 @@ msgstr "" msgid "Skip introduction and start using your account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108 -msgid "Skip this flow" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 +msgid "Skip to next step" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:165 @@ -8318,7 +8318,7 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." msgstr "" @@ -8501,8 +8501,8 @@ msgstr "" #. Accounts suggested to the user for them to follow #. Accounts suggested to the user for them to follow #: src/components/FeedInterstitials.tsx:385 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:129 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39 msgid "Suggested for you" msgstr "" @@ -8511,12 +8511,12 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -10066,7 +10066,7 @@ msgstr "" msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:382 +#: src/screens/Onboarding/StepFinished/index.tsx:383 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -10708,7 +10708,7 @@ msgstr "" msgid "You're in line" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:379 +#: src/screens/Onboarding/StepFinished/index.tsx:380 msgid "You're ready to go!" msgstr "" @@ -10880,7 +10880,7 @@ msgstr "" msgid "Your posts were sent" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:394 +#: src/screens/Onboarding/StepFinished/index.tsx:395 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po index 3174bd6b8..5ccae38a9 100644 --- a/src/locale/locales/ast/messages.po +++ b/src/locale/locales/ast/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ast\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Asturian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nun pue verificar l'autenticidá de la data indicada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "" msgid "Books" msgstr "Llibros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Restolar más cuentes na páxina «Esploración»" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Restolar más feeds na páxina «Esploración»" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Restolar más suxerencies" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Restolar más suxerencies na páxina «Esploración»" @@ -3741,17 +3741,17 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Mensaxes" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "" @@ -8511,12 +8511,12 @@ msgstr "Suxerencies pa ti" msgid "Suggestive" msgstr "Suxerente" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hebo un problema al catar los avisos. Toca equí pa volver tentalo." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hebo un problema al catar les publicaciones. Toca equí pa volver tentalo." diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po index cfa58c749..8fdfbb238 100644 --- a/src/locale/locales/az/messages.po +++ b/src/locale/locales/az/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: az\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:32\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Azerbaijani\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -877,7 +877,7 @@ msgid "alice@example.com" msgstr "" #. the default tab in the interests tab bar -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -990,8 +990,8 @@ msgstr "" msgid "An error occurred while compressing the video." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:168 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66 msgid "An error occurred while fetching suggested accounts." msgstr "" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Choose Post Languages" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:424 +#: src/screens/Onboarding/StepFinished/index.tsx:425 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -2051,8 +2051,8 @@ msgstr "" msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:339 -#: src/screens/Onboarding/StepFinished/index.tsx:437 +#: src/screens/Onboarding/StepFinished/index.tsx:340 +#: src/screens/Onboarding/StepFinished/index.tsx:438 msgid "Complete onboarding and start using your account" msgstr "" @@ -2207,8 +2207,8 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:94 #: src/screens/Onboarding/StepProfile/index.tsx:280 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 msgid "Continue" msgstr "" @@ -2226,8 +2226,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:91 #: src/screens/Onboarding/StepProfile/index.tsx:277 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:118 msgid "Failed to follow all suggested accounts, please try again" msgstr "" @@ -3700,8 +3700,8 @@ msgstr "" msgid "Filter who you receive notifications from" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:345 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:346 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Finalizing" msgstr "" @@ -3741,22 +3741,22 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:420 +#: src/screens/Onboarding/StepFinished/index.tsx:421 msgid "Flexible" msgstr "" @@ -3798,7 +3798,7 @@ msgstr "" msgid "Follow account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 #: src/screens/StarterPack/StarterPackScreen.tsx:438 @@ -3806,7 +3806,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 msgid "Follow all accounts" msgstr "" @@ -3822,7 +3822,7 @@ msgctxt "action" msgid "Follow back" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113 msgid "Followed all accounts!" msgstr "" @@ -3923,7 +3923,7 @@ msgstr "" msgid "For the best experience, we recommend using the theme font." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:293 #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91 msgid "For You" msgstr "" @@ -4817,8 +4817,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:347 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:348 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Let's go!" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -5464,7 +5464,7 @@ msgstr "" msgid "Need to report a copyright violation?" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:408 +#: src/screens/Onboarding/StepFinished/index.tsx:409 msgid "Never lose access to your followers or data." msgstr "" @@ -5591,8 +5591,8 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/SetNewPasswordForm.tsx:182 #: src/screens/Login/SetNewPasswordForm.tsx:188 -#: src/screens/Onboarding/StepFinished/index.tsx:340 -#: src/screens/Onboarding/StepFinished/index.tsx:349 +#: src/screens/Onboarding/StepFinished/index.tsx:341 +#: src/screens/Onboarding/StepFinished/index.tsx:350 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 @@ -5947,7 +5947,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:404 +#: src/screens/Onboarding/StepFinished/index.tsx:405 msgid "Open" msgstr "" @@ -6678,7 +6678,7 @@ msgctxt "toast" msgid "Profile updated" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:390 +#: src/screens/Onboarding/StepFinished/index.tsx:391 msgid "Public" msgstr "" @@ -7369,10 +7369,10 @@ msgstr "" #: src/screens/Messages/ChatList.tsx:292 #: src/screens/Messages/components/MessageListError.tsx:25 #: src/screens/Messages/Inbox.tsx:219 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:216 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:98 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:209 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 #: src/screens/PostThread/components/ThreadError.tsx:80 #: src/screens/PostThread/components/ThreadError.tsx:86 #: src/screens/Signup/BackNextButtons.tsx:53 @@ -8227,8 +8227,8 @@ msgstr "" #: src/screens/Onboarding/StepFinished/index.tsx:306 #: src/screens/Onboarding/StepFinished/index.tsx:328 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:222 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 #: src/screens/StarterPack/Wizard/index.tsx:218 msgid "Skip" msgstr "" @@ -8238,9 +8238,9 @@ msgstr "" msgid "Skip introduction and start using your account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108 -msgid "Skip this flow" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 +msgid "Skip to next step" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:165 @@ -8318,7 +8318,7 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." msgstr "" @@ -8501,8 +8501,8 @@ msgstr "" #. Accounts suggested to the user for them to follow #. Accounts suggested to the user for them to follow #: src/components/FeedInterstitials.tsx:385 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:129 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39 msgid "Suggested for you" msgstr "" @@ -8511,12 +8511,12 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -10066,7 +10066,7 @@ msgstr "" msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:382 +#: src/screens/Onboarding/StepFinished/index.tsx:383 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -10708,7 +10708,7 @@ msgstr "" msgid "You're in line" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:379 +#: src/screens/Onboarding/StepFinished/index.tsx:380 msgid "You're ready to go!" msgstr "" @@ -10880,7 +10880,7 @@ msgstr "" msgid "Your posts were sent" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:394 +#: src/screens/Onboarding/StepFinished/index.tsx:395 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po index c754b24fd..da40c4207 100644 --- a/src/locale/locales/bn/messages.po +++ b/src/locale/locales/bn/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bn\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Bengali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -877,7 +877,7 @@ msgid "alice@example.com" msgstr "" #. the default tab in the interests tab bar -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -990,8 +990,8 @@ msgstr "" msgid "An error occurred while compressing the video." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:168 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66 msgid "An error occurred while fetching suggested accounts." msgstr "" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Choose Post Languages" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:424 +#: src/screens/Onboarding/StepFinished/index.tsx:425 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -2051,8 +2051,8 @@ msgstr "" msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:339 -#: src/screens/Onboarding/StepFinished/index.tsx:437 +#: src/screens/Onboarding/StepFinished/index.tsx:340 +#: src/screens/Onboarding/StepFinished/index.tsx:438 msgid "Complete onboarding and start using your account" msgstr "" @@ -2207,8 +2207,8 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:94 #: src/screens/Onboarding/StepProfile/index.tsx:280 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 msgid "Continue" msgstr "" @@ -2226,8 +2226,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:91 #: src/screens/Onboarding/StepProfile/index.tsx:277 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:118 msgid "Failed to follow all suggested accounts, please try again" msgstr "" @@ -3700,8 +3700,8 @@ msgstr "" msgid "Filter who you receive notifications from" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:345 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:346 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Finalizing" msgstr "" @@ -3741,22 +3741,22 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:420 +#: src/screens/Onboarding/StepFinished/index.tsx:421 msgid "Flexible" msgstr "" @@ -3798,7 +3798,7 @@ msgstr "" msgid "Follow account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 #: src/screens/StarterPack/StarterPackScreen.tsx:438 @@ -3806,7 +3806,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 msgid "Follow all accounts" msgstr "" @@ -3822,7 +3822,7 @@ msgctxt "action" msgid "Follow back" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113 msgid "Followed all accounts!" msgstr "" @@ -3923,7 +3923,7 @@ msgstr "" msgid "For the best experience, we recommend using the theme font." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:293 #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91 msgid "For You" msgstr "" @@ -4817,8 +4817,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:347 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:348 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Let's go!" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -5464,7 +5464,7 @@ msgstr "" msgid "Need to report a copyright violation?" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:408 +#: src/screens/Onboarding/StepFinished/index.tsx:409 msgid "Never lose access to your followers or data." msgstr "" @@ -5591,8 +5591,8 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/SetNewPasswordForm.tsx:182 #: src/screens/Login/SetNewPasswordForm.tsx:188 -#: src/screens/Onboarding/StepFinished/index.tsx:340 -#: src/screens/Onboarding/StepFinished/index.tsx:349 +#: src/screens/Onboarding/StepFinished/index.tsx:341 +#: src/screens/Onboarding/StepFinished/index.tsx:350 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 @@ -5947,7 +5947,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:404 +#: src/screens/Onboarding/StepFinished/index.tsx:405 msgid "Open" msgstr "" @@ -6678,7 +6678,7 @@ msgctxt "toast" msgid "Profile updated" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:390 +#: src/screens/Onboarding/StepFinished/index.tsx:391 msgid "Public" msgstr "" @@ -7369,10 +7369,10 @@ msgstr "" #: src/screens/Messages/ChatList.tsx:292 #: src/screens/Messages/components/MessageListError.tsx:25 #: src/screens/Messages/Inbox.tsx:219 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:216 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:98 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:209 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 #: src/screens/PostThread/components/ThreadError.tsx:80 #: src/screens/PostThread/components/ThreadError.tsx:86 #: src/screens/Signup/BackNextButtons.tsx:53 @@ -8227,8 +8227,8 @@ msgstr "" #: src/screens/Onboarding/StepFinished/index.tsx:306 #: src/screens/Onboarding/StepFinished/index.tsx:328 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:222 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 #: src/screens/StarterPack/Wizard/index.tsx:218 msgid "Skip" msgstr "" @@ -8238,9 +8238,9 @@ msgstr "" msgid "Skip introduction and start using your account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108 -msgid "Skip this flow" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 +msgid "Skip to next step" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:165 @@ -8318,7 +8318,7 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." msgstr "" @@ -8501,8 +8501,8 @@ msgstr "" #. Accounts suggested to the user for them to follow #. Accounts suggested to the user for them to follow #: src/components/FeedInterstitials.tsx:385 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:129 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39 msgid "Suggested for you" msgstr "" @@ -8511,12 +8511,12 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -10066,7 +10066,7 @@ msgstr "" msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:382 +#: src/screens/Onboarding/StepFinished/index.tsx:383 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -10708,7 +10708,7 @@ msgstr "" msgid "You're in line" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:379 +#: src/screens/Onboarding/StepFinished/index.tsx:380 msgid "You're ready to go!" msgstr "" @@ -10880,7 +10880,7 @@ msgstr "" msgid "Your posts were sent" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:394 +#: src/screens/Onboarding/StepFinished/index.tsx:395 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 6d9176450..0e72b3493 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ca\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Assigna un tema per a l'algoritme" msgid "At least 8 characters" msgstr "Almenys 8 caràcters" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Difumina les imatges i filtra-ho dels canals" msgid "Books" msgstr "Llibres" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Explora més comptes a la pàgina Explora" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Explora més canals a la pàgina Explora" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Explora més recomanacions" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Explora més recomanacions a la pàgina Explora" @@ -3741,17 +3741,17 @@ msgstr "Finalitza" msgid "Fitness" msgstr "Exercici" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Negre pla" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Blau pla" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanc pla" @@ -5197,7 +5197,7 @@ msgstr "Opcions del missatge" msgid "Messages" msgstr "Missatges" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Mitjanit" @@ -7630,8 +7630,8 @@ msgstr "Mostra les publicacions amb #{tag} de l'usuari" msgid "See jobs at Bluesky" msgstr "Veure les feines a Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Veure més" @@ -8241,7 +8241,7 @@ msgstr "Omet la introducció i comença a utilitzar el teu compte" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Salta al pas següent" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Desenvolupament de programari" msgid "Some of your verifications are invalid." msgstr "Algunes de les teves verificacions no són vàlides." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Alguns altres canals que potser t'agradaran" @@ -8511,12 +8511,12 @@ msgstr "Suggeriments per tu" msgid "Suggestive" msgstr "Suggerent" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alba" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ocàs" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po index bf65149e9..cd1a55680 100644 --- a/src/locale/locales/cy/messages.po +++ b/src/locale/locales/cy/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cy\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:32\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Welsh\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" @@ -1269,7 +1269,7 @@ msgstr "Neilltuo pwnc ar gyfer algo" msgid "At least 8 characters" msgstr "O leiaf 8 nod" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Dyw Bluesky ddim yn gallu cadarnhau dilysrwydd y dyddiad honedig." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic ™" @@ -1513,20 +1513,20 @@ msgstr "Pylu delweddau a hidlo o ffrydiau" msgid "Books" msgstr "Llyfrau" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Porwch ragor o gyfrifon ar y dudalen Archwilio" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Porwch ragor o ffrydiau ar y dudalen Archwilio" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Pori ragor o awgrymiadau" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio" @@ -3711,7 +3711,7 @@ msgstr "O'r diwedd! Cadwch drefn ar bostiadau sy'n bwysig i chi. Cadwch nhw i'w #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "Cyllid" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 @@ -3741,17 +3741,17 @@ msgstr "Gorffen" msgid "Fitness" msgstr "Ffitrwydd" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Du Disglein" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Glas Disglein" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Gwyn Disglein" @@ -5197,7 +5197,7 @@ msgstr "Dewisiadau negeseuon" msgid "Messages" msgstr "Negeseuon" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Canol Nos" @@ -7630,8 +7630,8 @@ msgstr "Gweld #{tag} postiad yn ôl defnyddiwr" msgid "See jobs at Bluesky" msgstr "Gweld swyddi yn Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Gweld rhagor" @@ -8241,7 +8241,7 @@ msgstr "Hepgor y cyflwyniad a chychwyn defnyddio'ch cyfrif" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Mynd i'r cam nesaf" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Datblygwr Meddalwedd" msgid "Some of your verifications are invalid." msgstr "Mae rhai o'ch dilysiadau'n annilys." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Rhai ffrydiau eraill efallai y byddwch yn eu hoffi" @@ -8320,7 +8320,7 @@ msgstr "Rhywbeth o'i le? Rhowch wybod i ni." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "Ymddiheuriadau, does dim modd i ni lwytho awgrymiadau cyfrifon ar hyn o bryd." #: src/App.native.tsx:128 #: src/App.web.tsx:100 @@ -8511,12 +8511,12 @@ msgstr "Awgrymiadau i chi" msgid "Suggestive" msgstr "Awgrymiadol" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Codiad Haul" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Machlud Haul" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bu anhawster wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bu anhawster wrth nôl postiadau. Tapiwch yma i geisio eto." diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po index 14a4526e5..e92487160 100644 --- a/src/locale/locales/da/messages.po +++ b/src/locale/locales/da/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: da\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Vælg emne for algo" msgid "At least 8 characters" msgstr "Mindst 8 tegn" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Nordlys" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan ikke bekræfte den anførte datos gyldighed." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Slør billeder og filtrer fra feeds" msgid "Books" msgstr "Bøger" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Se flere konti under Udforsk" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Se flere feeds under Udforsk" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Se flere forslag" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Se flere forslag under Udforsk" @@ -2933,15 +2933,15 @@ msgstr "fx Fede profiler" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:354 msgid "e.g. Spammers" -msgstr "" +msgstr "fx Spammere" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357 msgid "e.g. The posters who never miss." -msgstr "" +msgstr "fx Profiler, der altid rammer plet." #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358 msgid "e.g. Users that repeatedly reply with ads." -msgstr "" +msgstr "fx Brugere, der laver for mange reklameopslag." #: src/screens/Settings/AccountSettings.tsx:145 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252 @@ -3711,7 +3711,7 @@ msgstr "Endelig! Hold styr på opslag, der er relevante for dig. Gem dem og find #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "Økonomi" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 @@ -3741,17 +3741,17 @@ msgstr "Afslut" msgid "Fitness" msgstr "Motion" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Flad sort" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Flad blå" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Flad hvid" @@ -4140,7 +4140,7 @@ msgstr "Gå til samtale med {0}" #: src/view/com/posts/PostFeedReason.tsx:38 msgid "Go to feed" -msgstr "" +msgstr "Gå til feed" #: src/screens/Login/ForgotPasswordForm.tsx:165 msgid "Go to next" @@ -4569,7 +4569,7 @@ msgstr "Ugyldigt handle. Prøv et andet." #: src/components/PostControls/PostMenu/PostMenuItems.tsx:365 msgctxt "toast" msgid "Invalid interaction settings." -msgstr "" +msgstr "Ugyldige interaktionsindstillinger." #: src/components/moderation/ReportDialog/index.tsx:73 msgid "Invalid report subject" @@ -5197,7 +5197,7 @@ msgstr "Beskedindstillinger" msgid "Messages" msgstr "Beskeder" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Midnat" @@ -7260,11 +7260,11 @@ msgstr "Videredelt af" #: src/view/com/posts/PostFeedReason.tsx:77 msgid "Reposted by {reposter}" -msgstr "" +msgstr "Videredelt af {reposter}" #: src/view/com/posts/PostFeedReason.tsx:91 msgid "Reposted by <0><1>{reposter}" -msgstr "" +msgstr "Videredelt af <0><1>{reposter}" #: src/view/com/posts/PostFeedReason.tsx:77 #: src/view/com/posts/PostFeedReason.tsx:89 @@ -7630,8 +7630,8 @@ msgstr "Se #{tag}-indlæg af bruger" msgid "See jobs at Bluesky" msgstr "Se jobs hos Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Se flere" @@ -8241,7 +8241,7 @@ msgstr "Spring introduktionen over og kom i gang med din konto" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Spring til næste trin" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Softwareudvikling" msgid "Some of your verifications are invalid." msgstr "Nogle af dine verifikationer er ugyldige." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Nogle andre feeds, du måske kan lide" @@ -8320,7 +8320,7 @@ msgstr "Noget galt? Fortæl os om det." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "Beklager, vi kan ikke indlæse forslag lige nu." #: src/App.native.tsx:128 #: src/App.web.tsx:100 @@ -8511,12 +8511,12 @@ msgstr "Foreslået til dig" msgid "Suggestive" msgstr "Seksuelle undertoner" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Solopgang" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgang" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Notifikationer kunne ikke indlæses. Tryk her for at prøve igen." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Opslag kunne ikke indlæses. Tryk her for at prøve igen." @@ -10417,7 +10417,7 @@ msgstr "Du kan fortsætte igangværende samtaler, uanset hvilken indstilling du #: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 msgctxt "toast" msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies." -msgstr "" +msgstr "Du kan skjule højst {MAX_HIDDEN_REPLIES} svar." #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index f287a6035..e6e0563c8 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Thema für den Algorithmus festlegen" msgid "At least 8 characters" msgstr "Mindestens 8 Zeichen" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestätigen." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern" msgid "Books" msgstr "Bücher" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Finde weitere Accounts auf der Entdecken-Seite" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Weitere Vorschläge anzeigen" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen" @@ -3711,7 +3711,7 @@ msgstr "Endlich! Behalte Posts, die dir wichtig sind, im Auge. Speichere sie, um #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "Finanzen" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 @@ -3741,17 +3741,17 @@ msgstr "Beenden" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Flaches Schwarz" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Flaches Blau" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Flaches Weiß" @@ -4140,7 +4140,7 @@ msgstr "Zur Konversation mit {0} gehen" #: src/view/com/posts/PostFeedReason.tsx:38 msgid "Go to feed" -msgstr "" +msgstr "Zum Feed gehen" #: src/screens/Login/ForgotPasswordForm.tsx:165 msgid "Go to next" @@ -5197,7 +5197,7 @@ msgstr "Nachrichtenoptionen" msgid "Messages" msgstr "Nachrichten" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Mitternacht" @@ -7260,11 +7260,11 @@ msgstr "Repostet von" #: src/view/com/posts/PostFeedReason.tsx:77 msgid "Reposted by {reposter}" -msgstr "" +msgstr "Repostet von {reposter}" #: src/view/com/posts/PostFeedReason.tsx:91 msgid "Reposted by <0><1>{reposter}" -msgstr "" +msgstr "Repostet von <0><1>{reposter}" #: src/view/com/posts/PostFeedReason.tsx:77 #: src/view/com/posts/PostFeedReason.tsx:89 @@ -7630,8 +7630,8 @@ msgstr "#{tag}-Posts des Nutzers ansehen" msgid "See jobs at Bluesky" msgstr "Sieh dir Jobs bei Bluesky an" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Mehr sehen" @@ -8241,7 +8241,7 @@ msgstr "Überspringe die Einführung und beginne mit der Nutzung deines Accounts #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Zum nächsten Schritt springen" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Software-Entwicklung" msgid "Some of your verifications are invalid." msgstr "Einige deiner Verifizierungen sind ungültig." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Einige andere Feeds, die dir gefallen könnten" @@ -8320,7 +8320,7 @@ msgstr "Etwas stimmt nicht? Lass es uns wissen." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "Leider können derzeit keine Account-Vorschläge geladen werden." #: src/App.native.tsx:128 #: src/App.web.tsx:100 @@ -8511,12 +8511,12 @@ msgstr "Vorgeschlagen für dich" msgid "Suggestive" msgstr "Suggestiv" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sonnenaufgang" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sonnenuntergang" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Beim Abrufen von Mitteilung ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Beim Abrufen von Posts ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po index 662e733ea..3e0751d07 100644 --- a/src/locale/locales/el/messages.po +++ b/src/locale/locales/el/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Το Bluesky δεν μπορεί να επιβεβαιώσει την αυθεντικότητα της ημερομηνίας που δηλώθηκε." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Θολώστε εικόνες και φιλτράρετε από τις msgid "Books" msgstr "Βιβλία" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Περιηγηθείτε σε περισσότερους λογαριασμούς στην σελίδα Εξερεύνησης" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Περιηγηθείτε σε περισσότερες ροές στην σελίδα Εξερεύνησης" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Περιηγηθείτε σε περισσότερες προτάσεις" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Περιηγηθείτε σε περισσότερες προτάσεις στην σελίδα Εξερεύνησης" @@ -3741,17 +3741,17 @@ msgstr "Τέλος" msgid "Fitness" msgstr "Φυσική κατάσταση" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Μηνύματα" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Δείτε θέσεις εργασίας στο Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Ανάπτυξη λογισμικού" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Κάποιες άλλες ροές που μπορεί να σας αρέσουν" @@ -8511,12 +8511,12 @@ msgstr "Προτεινόμενα για εσάς" msgid "Suggestive" msgstr "Προκλητικό" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης ειδοποιήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po index fca0dc119..b007ca44c 100644 --- a/src/locale/locales/en-GB/messages.po +++ b/src/locale/locales/en-GB/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: en_GB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: English, United Kingdom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Assign topic for algo" msgid "At least 8 characters" msgstr "At least 8 characters" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky cannot confirm the authenticity of the claimed date." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Blur images and filter from feeds" msgid "Books" msgstr "Books" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Browse more accounts on the Explore page" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Browse more feeds on the Explore page" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Browse more suggestions" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Browse more suggestions on the Explore page" @@ -3711,7 +3711,7 @@ msgstr "Finally! Keep track of posts that matter to you. Save them to revisit an #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "Finance" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 @@ -3741,17 +3741,17 @@ msgstr "Finish" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Flat Black" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Flat Blue" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Flat White" @@ -5197,7 +5197,7 @@ msgstr "Message options" msgid "Messages" msgstr "Messages" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Midnight" @@ -7630,8 +7630,8 @@ msgstr "See #{tag} posts by user" msgid "See jobs at Bluesky" msgstr "See jobs at Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "See more" @@ -8241,7 +8241,7 @@ msgstr "Skip introduction and start using your account" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Skip to next step" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Software Dev" msgid "Some of your verifications are invalid." msgstr "Some of your verifications are invalid." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Some other feeds you might like" @@ -8320,7 +8320,7 @@ msgstr "Something wrong? Let us know." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "Sorry, we're unable to load account suggestions at this time." #: src/App.native.tsx:128 #: src/App.web.tsx:100 @@ -8511,12 +8511,12 @@ msgstr "Suggested for you" msgid "Suggestive" msgstr "Suggestive" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sunrise" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunset" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "There was an issue fetching notifications. Tap here to try again." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "There was an issue fetching posts. Tap here to try again." diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index b4c4a5cf2..5346ba5ed 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -1508,20 +1508,20 @@ msgstr "" msgid "Books" msgstr "" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -7625,8 +7625,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8259,7 +8259,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "" @@ -8832,7 +8832,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po index feb03ad5c..7206dcdeb 100644 --- a/src/locale/locales/eo/messages.po +++ b/src/locale/locales/eo/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: eo\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Asigni temon por algoritmo" msgid "At least 8 characters" msgstr "Almenaŭ 8 signoj" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Nordobrilo" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne povas konfirmi la aŭtentecon de la donita dato." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Malklarigi bildojn kaj elfiltri el fluoj" msgid "Books" msgstr "Libroj" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Foliumi pli da kontoj sur la paĝo Esplori" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Foliumi pli da fluoj sur la paĝo Esplori" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Foliumi pli da proponoj" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Foliumi pli da proponoj sur la paĝo Esplori" @@ -3741,17 +3741,17 @@ msgstr "Fini" msgid "Fitness" msgstr "Fizika bontenado" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Plata nigra" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Plata blua" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Plata blanka" @@ -5197,7 +5197,7 @@ msgstr "Opcioj de mesaĝo" msgid "Messages" msgstr "Mesaĝoj" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Noktomezo" @@ -7630,8 +7630,8 @@ msgstr "Vidi afiŝojn pri #{tag} de uzanto" msgid "See jobs at Bluesky" msgstr "Vidu laborpostenojn ĉe Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Vidi pli" @@ -8241,7 +8241,7 @@ msgstr "Preterpasi enkondukon kaj komenci uzi vian konton" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Preterpasi al sekva paŝo" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Programado" msgid "Some of your verifications are invalid." msgstr "Iuj de viaj konfirmoj estas nevalidaj." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Kelkaj aliaj fluoj, kiuj eble plaĉos al vi" @@ -8511,12 +8511,12 @@ msgstr "Proponitaj por vi" msgid "Suggestive" msgstr "Maldeca" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sunleviĝo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunsubiro" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Estis problemo ŝargante sciigojn. Tuŝetu ĉi tie por reprovi." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi." diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 2b4e0d90f..6e1578c45 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Asignar un tema para el algoritmo" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Clásico™" @@ -1513,20 +1513,20 @@ msgstr "Desenfocar imágenes y filtrar desde los feeds" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Explorar más cuentas en la página Explorar" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Ver más feeds en la página Explorar" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Explorar más sugerencias" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Busca más sugerencias en la página Explorar" @@ -3741,17 +3741,17 @@ msgstr "Finalizar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Negro plano" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Azul plano" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanco" @@ -5197,7 +5197,7 @@ msgstr "Opciones del mensaje" msgid "Messages" msgstr "Mensajes" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Medianoche" @@ -7630,8 +7630,8 @@ msgstr "Ver las publicaciones sobre #{tag} de esta cuenta" msgid "See jobs at Bluesky" msgstr "Ver empleos en Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Programación" msgid "Some of your verifications are invalid." msgstr "Algunas de tus verificaciones no son válidas." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Otros feeds que podrían gustarte" @@ -8511,12 +8511,12 @@ msgstr "Sugerido para ti" msgid "Suggestive" msgstr "Sugestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Amanecer" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Atardecer" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hubo un problema al obtener las notificaciones. Toca aquí para intentar de nuevo." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hubo un problema al obtener las publicaciones. Toca aquí para intentar de nuevo." diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po index 8ee992dc8..c4235729f 100644 --- a/src/locale/locales/eu/messages.po +++ b/src/locale/locales/eu/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: eu\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Basque\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Algoritmoari gaia esleitu" msgid "At least 8 characters" msgstr "Gutxienez 8 karaktere" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Irudiak lausotu eta iragazi feedetatik" msgid "Books" msgstr "Liburuak" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Nabigatu kontu gehiagotatik Arakatu orrian" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Nabigatu feed gehiagotatik Arakatu orrian" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Nabigatu proposamen gehiagotatik" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian" @@ -3741,17 +3741,17 @@ msgstr "Amaitu" msgid "Fitness" msgstr "Sasoia" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Beltz laua" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Urdin laua" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Zuri laua" @@ -5197,7 +5197,7 @@ msgstr "Mezuaren aukerak" msgid "Messages" msgstr "Mezuak" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Gauerdia" @@ -7630,8 +7630,8 @@ msgstr "Ikusi erabiltzailearen #{tag} postak" msgid "See jobs at Bluesky" msgstr "Ikusi Bluesky-n lanpostuak" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Ikusi gehiago" @@ -8241,7 +8241,7 @@ msgstr "Saltatu sarrera eta hasi zure kontua erabiltzen" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Hurrengo urratsera joan" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Software Garatzailea" msgid "Some of your verifications are invalid." msgstr "Zure egiaztapenetako batzuk baliogabeak dira." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Gustatuko litzaizukeen beste feed batzuk" @@ -8511,12 +8511,12 @@ msgstr "Zuretzat proposatua" msgid "Suggestive" msgstr "Lizuna" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Egunsentia" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ilunabarra" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko." diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 95a47bc1a..8720d1523 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fi\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ei voi vahvistaa väitetyn päivämäärän oikeellisuutta." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Sumenna kuvat ja suodata syötteistä" msgid "Books" msgstr "Kirjat" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Selaa lisää tilejä Explore-sivulla" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Selaa lisää syötteitä Explore-sivulla" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Selaa lisää ehdotuksia" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Selaa lisää ehdotuksia Explore-sivulla" @@ -3741,17 +3741,17 @@ msgstr "Valmis" msgid "Fitness" msgstr "Kuntoilu" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Viestit" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Katso Blueskyn työpaikat" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Ohjelmistokehitys" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Muita syötteitä, joista saattaisit pitää" @@ -8511,12 +8511,12 @@ msgstr "Ehdotuksia sinulle" msgid "Suggestive" msgstr "Vihjaileva" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ilmoitusten hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 8da8c28fc..9c2e8aba2 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Assigner un sujet pour l’algo" msgid "At least 8 characters" msgstr "Au moins 8 caractères" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurores" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne peut pas confirmer l’authenticité de la date déclarée." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Flouter les images et les filtrer des fils d’actu" msgid "Books" msgstr "Livres" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Parcourir d’autres comptes sur la page « Explorer »" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Parcourir d’autres fils d’actu sur la page « Explorer »" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Parcourir d’autres suggestions" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Parcourir d’autres suggestions sur la page « Explorer »" @@ -3741,17 +3741,17 @@ msgstr "Terminer" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Noir plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Bleu plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanc plat" @@ -5197,7 +5197,7 @@ msgstr "Options de message" msgid "Messages" msgstr "Messages" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Minuit" @@ -7630,8 +7630,8 @@ msgstr "Voir les posts #{tag} de ce compte" msgid "See jobs at Bluesky" msgstr "Voir les offres d’emploi chez Bluesky (en anglais)" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Voir plus" @@ -8241,7 +8241,7 @@ msgstr "Passer l’introduction et commencer à utiliser votre compte" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Sauter à l’étape d’après" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Développement de logiciels" msgid "Some of your verifications are invalid." msgstr "Certaines de vos vérifications ne sont pas valides." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Quelques autres fils d’actu qui pourraient vous intéresser" @@ -8511,12 +8511,12 @@ msgstr "Suggérés pour vous" msgid "Suggestive" msgstr "Suggestif" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Lever du soleil" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Coucher du soleil" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des notifications. Appuyez ici pour réessayer." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici pour réessayer." diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po index b670ab170..4c30be6ba 100644 --- a/src/locale/locales/fy/messages.po +++ b/src/locale/locales/fy/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fy\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Frisian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Underwerp foar algoritme tawize" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kin de wierheid fan dizze datum net befêstigje." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Ofbyldingen dizich meitsje en út dyn feeds filterje" msgid "Books" msgstr "Boeken" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Blêdzje troch brûkers op de ûntdekkingsside" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Blêdzje troch feeds op de ûntdekkingsside" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Blêdzje troch mear suggestjes" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Blêdzje troch mear suggestjes op de ûntdekkingsside" @@ -3741,17 +3741,17 @@ msgstr "Foltôgje" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Plat swart" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Plat blau" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Plat wyt" @@ -5197,7 +5197,7 @@ msgstr "Berjochtopsjes" msgid "Messages" msgstr "Berjochten" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Middernacht" @@ -7630,8 +7630,8 @@ msgstr "#{tag}-berjochten fan brûker besjen" msgid "See jobs at Bluesky" msgstr "Fakatueres by Bluesky bejen" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Mear toane" @@ -8264,7 +8264,7 @@ msgstr "Softwareûntwikkeler" msgid "Some of your verifications are invalid." msgstr "Guon fan dyn ferifikaasjes binne ûnjildich." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Inkelde oare feeds dêr’tsto miskien wol oer meist" @@ -8511,12 +8511,12 @@ msgstr "Foarsteld foar dy" msgid "Suggestive" msgstr "Suggestyf" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Sinneopgong" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sinneûndergong" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan meldingen. Tik hjir om it opnij te probearjen." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan berjochten. Tik hjir om it opnij te probearjen." diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 71b118b90..13b8fa7db 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ga\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Irish\n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Ní féidir le Bluesky an dáta maíte a dheimhniú." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad" msgid "Books" msgstr "Leabhair" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Tabhair súil ar thuilleadh cuntas ar an leathanach Taiscéalaíocht" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Tabhair súil ar thuilleadh fothaí ar an leathanach Taiscéalaíocht" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Tabhair súil ar thuilleadh moltaí" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Tabhair súil ar thuilleadh moltaí ar an leathanach Taiscéalaíocht" @@ -3741,17 +3741,17 @@ msgstr "Críochnaigh" msgid "Fitness" msgstr "Folláine" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Teachtaireachtaí" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Féach ar phostanna le Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Forbairt Bogearraí" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Fothaí eile a mbeadh suim agat iontu" @@ -8511,12 +8511,12 @@ msgstr "Molta duit" msgid "Suggestive" msgstr "Gáirsiúil" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bhí fadhb ann maidir le fógraí a fháil. Tapáil anseo le triail eile a bhaint as." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail eile a bhaint as." diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po index 155d0e1d8..503e68df1 100644 --- a/src/locale/locales/gd/messages.po +++ b/src/locale/locales/gd/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: gd\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Scottish Gaelic\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" @@ -1269,7 +1269,7 @@ msgstr "Iomruin cuspair dhan algairim" msgid "At least 8 characters" msgstr "Co-dhiù 8 caractaran" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Chan urrainn dha Bluesky dearbhadh gu bheil an ceann-là a thathar a’ cumail a-mach fìor." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Cuir sgleò air dealbhan is criathraich iad às na h-inbhirean" msgid "Books" msgstr "Leabhraichean" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Rùraich barrachd chunntasan air an duilleag “Rùraich”" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Rùraich barrachd inbhirean air an duilleag “Rùraich”" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Brabhsaich barrachd mholaidhean" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Rùraich barrachd mholaidhean air an duilleag “Rùraich”" @@ -3741,17 +3741,17 @@ msgstr "Crìochnaich" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Dubh gun chaisead" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Gorm gun chaisead" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Geal gun chaisead" @@ -5197,7 +5197,7 @@ msgstr "Roghainnean na teachdaireachd" msgid "Messages" msgstr "Teachdaireachdan" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Meadhan-oidhche" @@ -7630,8 +7630,8 @@ msgstr "Seall puist ris a bheil taga #{tag} leis a’ chleachdaiche" msgid "See jobs at Bluesky" msgstr "Faic dè na dreuchdan bàna aig Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Seall an còrr" @@ -8264,7 +8264,7 @@ msgstr "Luchd-leasachaidh a’ bhathair-bhuig" msgid "Some of your verifications are invalid." msgstr "Tha cuid dhen dearbhadh a rinn thu mì-dhligheach." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Inbhir eile a chòrdas riut ma dh’fhaoidte" @@ -8511,12 +8511,12 @@ msgstr "Molaidhean dhut" msgid "Suggestive" msgstr "Leth-fheiseil" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Èirigh na grèine" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Laighe na grèine" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Cha b’ urrainn dhuinn na brathan fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Cha b’ urrainn dhuinn na puist fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po index e49d76c4f..db2d07300 100644 --- a/src/locale/locales/gl/messages.po +++ b/src/locale/locales/gl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: gl\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Galician\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pode confirmar a autenticidade da data solicitada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Desenfocar imaxes e filtrar desde as canles" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Explorar máis contas" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Revisar máis canles" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Explorar máis suxerencias" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Explora máis suxerencias na páxina Explorar" @@ -3741,17 +3741,17 @@ msgstr "Rematar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Mensaxes" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Ver empregos en Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Programación" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Algunha outra canle poderiache gustar" @@ -8511,12 +8511,12 @@ msgstr "Suxerido para ti" msgid "Suggestive" msgstr "Suxestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houbo un problema ao recuperar as notificacións. Toca aquí para tentalo de novo." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houbo un problema ao recuperar os chíos. Toca aquí para tentalo de novo." diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index c7cf4df62..7afcecd8e 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hi\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky दावा किए गए तिथि के प्रामाणिकता की पुष्टि नहीं कर सकता।" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "छवि धुंधला करें और फ़ीड से फ़ि msgid "Books" msgstr "किताबें" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "एक्सप्लोर पृष्ठ पर और खाते देखें" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "एक्सप्लोर पृष्ठ पर और सूची देखें" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "और सुझाव देखें" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "एक्सप्लोर पृष्ठ पर और सुझाव देखें" @@ -3741,17 +3741,17 @@ msgstr "समाप्त करें" msgid "Fitness" msgstr "स्वास्थ्य" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "संदेश" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Bluesky में नौकरियाँ देखें" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "सॉफ़्टवेयर डेवलपर" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "कुछ अन्य फ़ीड जो आपको शायद पसंद आएँ" @@ -8511,12 +8511,12 @@ msgstr "आपके लिए सुझाव" msgid "Suggestive" msgstr "भड़काऊ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "अधिसूचनाएँ लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po index d8b794304..ce6f7b3a9 100644 --- a/src/locale/locales/hu/messages.po +++ b/src/locale/locales/hu/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hu\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Témakör hozzárendelése" msgid "At least 8 characters" msgstr "Adj meg legalább 8 karaktert" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Sarki Fény" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "A Bluesky nem tudja megerősíteni a létrehozás dátumát." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Klasszikus Bluesky" @@ -1513,20 +1513,20 @@ msgstr "Képek elhomályosítása és kiszűrés a hírfolyamokból" msgid "Books" msgstr "Könyvek" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "További fiókokat a Felfedezés oldalon találsz" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "További hírfolyamokat a Felfedezés oldalon találsz" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "További javaslatok" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "További javaslatokat a Felfedezés oldalon találsz" @@ -3660,7 +3660,7 @@ msgstr "Hírfolyamok" #: src/screens/SavedFeeds.tsx:215 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." -msgstr "" +msgstr "A hírfolyamok olyan egyéni algoritmusok, amelyeket felhasználók építenek egy kis programozási tudással. További információért <0>lásd az útmutatót (angol nyelven)." #: src/components/FeedCard.tsx:282 #: src/screens/SavedFeeds.tsx:90 @@ -3741,17 +3741,17 @@ msgstr "Befejezés" msgid "Fitness" msgstr "Fitnesz" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Egyszerű Fekete" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Egyszerű Kék" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Egyszerű Fehér" @@ -5197,7 +5197,7 @@ msgstr "Üzenetlehetőségek" msgid "Messages" msgstr "Üzenetek" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Éjfél" @@ -7630,8 +7630,8 @@ msgstr "A felhasználó #{tag} címkével ellátott bejegyzéseinek megtekintés msgid "See jobs at Bluesky" msgstr "Állások a Blueskynál" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Továbbiak" @@ -8241,7 +8241,7 @@ msgstr "Bevezető kihagyása és fiók használatának megkezdése" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Lépés kihagyása" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Szoftverfejlesztő" msgid "Some of your verifications are invalid." msgstr "A hitelesítéseidnek egy része érvénytelen." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "További ajánlott hírfolyamok" @@ -8511,12 +8511,12 @@ msgstr "Számodra javasolt" msgid "Suggestive" msgstr "Felnőtt tartalom" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alkonyat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Szürkület" @@ -8839,7 +8839,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A bejegyzések lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz." diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po index b58d5f4a1..18a9c5c25 100644 --- a/src/locale/locales/ia/messages.po +++ b/src/locale/locales/ia/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ia\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:32\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Interlingua\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Assignar topico pro le algorithmo" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pote confirmar le authenticitate del data declarate." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Disfocalisar imagines e non monstrar los in canales" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Percurre altere contos super le pagina Explorar" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Percurre altere canales super le pagina Explorar" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Percurrer plus suggestiones" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Percurre plus suggestiones super le pagina Explorar" @@ -3741,17 +3741,17 @@ msgstr "Finir" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Nigro" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Blau" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Blanco" @@ -5197,7 +5197,7 @@ msgstr "Optiones de messages" msgid "Messages" msgstr "Messages" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Medienocte" @@ -7630,8 +7630,8 @@ msgstr "Vider le publicationes super #{tag} per usator" msgid "See jobs at Bluesky" msgstr "Vider offertas de empleo a Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Disveloppamento de software" msgid "Some of your verifications are invalid." msgstr "Alcunes de tu verificationes es invalide." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Alcun altere canales que pote placer te" @@ -8511,12 +8511,12 @@ msgstr "Suggerite pro te" msgid "Suggestive" msgstr "Suggestive" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Levar del sol" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Poner del sol" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il ha habite un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il ha habite un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo." diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 3c9cac7ec..24f5d9e89 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: id\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "Tetapkan topik untuk algoritma" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Buramkan gambar dan saring dari feed" msgid "Books" msgstr "Buku" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Jelajahi akun lainnya pada halaman Jelajah" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Jelajahi feed lainnya pada halaman Jelajah" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Jelajahi saran lainnya" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Jelajahi saran lainnya pada halaman Jelajah" @@ -3741,17 +3741,17 @@ msgstr "Selesai" msgid "Fitness" msgstr "Kebugaran" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Hitam Flat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Biru Flat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Putih Flat" @@ -5197,7 +5197,7 @@ msgstr "Opsi pesan" msgid "Messages" msgstr "Pesan" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Tengah malam" @@ -7630,8 +7630,8 @@ msgstr "Lihat postingan #{tag} dari pengguna" msgid "See jobs at Bluesky" msgstr "Lihat lowongan pekerjaan di Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Pengembang Perangkat Lunak" msgid "Some of your verifications are invalid." msgstr "Beberapa dari verifikasi Anda tidak valid." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Beberapa feed lain yang mungkin Anda suka" @@ -8511,12 +8511,12 @@ msgstr "Disarankan untuk Anda" msgid "Suggestive" msgstr "Sugestif" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Terbit" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Terbenam" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 6c1f9da0d..463317ba1 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: it\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Assegna argomento per l'algoritmo" msgid "At least 8 characters" msgstr "Almeno 8 caratteri" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non può confermare l'autenticità della data dichiarata." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Sfoca le immagini e filtra dai feed" msgid "Books" msgstr "Libri" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Scopri altri account nella pagina Esplora" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Scopri nuovi feed nella pagina Esplora" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Scopri nuovi suggerimenti" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Scopri nuovi suggerimenti nella pagina Esplora" @@ -3741,17 +3741,17 @@ msgstr "Finalizza" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Nero" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Blu" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Bianco" @@ -5197,7 +5197,7 @@ msgstr "Opzioni messaggio" msgid "Messages" msgstr "Messaggi" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Mezzanotte" @@ -7630,8 +7630,8 @@ msgstr "Vedi post dell'utente su #{tag}" msgid "See jobs at Bluesky" msgstr "Vedi offerte di lavoro in Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Vedi di più" @@ -8241,7 +8241,7 @@ msgstr "Salta l'introduzione e inizia a usare il tuo account" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Vai al passo successivo" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Sviluppo software" msgid "Some of your verifications are invalid." msgstr "Alcune delle tue verifiche non sono valide." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Altri feed che potrebbero piacerti" @@ -8511,12 +8511,12 @@ msgstr "Suggerito per te" msgid "Suggestive" msgstr "Suggestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alba" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Tramonto" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 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." diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 8d598674d..a5cbd5b6e 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ja\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "アルゴリズム用にトピックを割り当て" msgid "At least 8 characters" msgstr "少なくとも8文字" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "オーロラ" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Blueskyでは、この投稿日時の信憑性を確認できません。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "画像のぼかしとフィードからのフィルタリング" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "検索ページでさらにアカウントを見る" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "検索ページでさらにフィードを見る" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "さらにおすすめを見る" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "検索ページでさらにおすすめを見る" @@ -3711,7 +3711,7 @@ msgstr "ついに!気になる投稿を追いかけましょう。いつでも #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "ファイナンス" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 @@ -3741,17 +3741,17 @@ msgstr "完了" msgid "Fitness" msgstr "フィットネス" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "フラット ブラック" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "フラット ブルー" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "フラット ホワイト" @@ -5197,7 +5197,7 @@ msgstr "メッセージのオプション" msgid "Messages" msgstr "メッセージ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "ミッドナイト" @@ -7630,8 +7630,8 @@ msgstr "#{tag} の投稿を表示(このユーザーのみ)" msgid "See jobs at Bluesky" msgstr "Blueskyの求人を見る" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "もっと見る" @@ -8241,7 +8241,7 @@ msgstr "チュートリアルをスキップしてアカウントの使用を開 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "次のステップへスキップ" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "ソフトウェア開発" msgid "Some of your verifications are invalid." msgstr "認証の一部が無効です。" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "お好みかもしれない他のフィード" @@ -8320,7 +8320,7 @@ msgstr "何か問題がありますか?お知らせください。" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "申し訳ありません。現在、アカウントのおすすめを読み込むことができません。" #: src/App.native.tsx:128 #: src/App.web.tsx:100 @@ -8511,12 +8511,12 @@ msgstr "あなたへのおすすめ" msgid "Suggestive" msgstr "きわどい" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "サンライズ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "サンセット" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po index 630b3fb70..2726f08d5 100644 --- a/src/locale/locales/kab/messages.po +++ b/src/locale/locales/kab/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: kab\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Kabyle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -877,7 +877,7 @@ msgid "alice@example.com" msgstr "" #. the default tab in the interests tab bar -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -990,8 +990,8 @@ msgstr "" msgid "An error occurred while compressing the video." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:168 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66 msgid "An error occurred while fetching suggested accounts." msgstr "" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Choose Post Languages" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:424 +#: src/screens/Onboarding/StepFinished/index.tsx:425 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -2051,8 +2051,8 @@ msgstr "" msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:339 -#: src/screens/Onboarding/StepFinished/index.tsx:437 +#: src/screens/Onboarding/StepFinished/index.tsx:340 +#: src/screens/Onboarding/StepFinished/index.tsx:438 msgid "Complete onboarding and start using your account" msgstr "" @@ -2207,8 +2207,8 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:94 #: src/screens/Onboarding/StepProfile/index.tsx:280 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 msgid "Continue" msgstr "" @@ -2226,8 +2226,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:91 #: src/screens/Onboarding/StepProfile/index.tsx:277 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:118 msgid "Failed to follow all suggested accounts, please try again" msgstr "" @@ -3700,8 +3700,8 @@ msgstr "" msgid "Filter who you receive notifications from" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:345 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:346 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Finalizing" msgstr "" @@ -3741,22 +3741,22 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:420 +#: src/screens/Onboarding/StepFinished/index.tsx:421 msgid "Flexible" msgstr "" @@ -3798,7 +3798,7 @@ msgstr "" msgid "Follow account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 #: src/screens/StarterPack/StarterPackScreen.tsx:438 @@ -3806,7 +3806,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 msgid "Follow all accounts" msgstr "" @@ -3822,7 +3822,7 @@ msgctxt "action" msgid "Follow back" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113 msgid "Followed all accounts!" msgstr "" @@ -3923,7 +3923,7 @@ msgstr "" msgid "For the best experience, we recommend using the theme font." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:293 #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91 msgid "For You" msgstr "" @@ -4817,8 +4817,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:347 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:348 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Let's go!" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -5464,7 +5464,7 @@ msgstr "" msgid "Need to report a copyright violation?" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:408 +#: src/screens/Onboarding/StepFinished/index.tsx:409 msgid "Never lose access to your followers or data." msgstr "" @@ -5591,8 +5591,8 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/SetNewPasswordForm.tsx:182 #: src/screens/Login/SetNewPasswordForm.tsx:188 -#: src/screens/Onboarding/StepFinished/index.tsx:340 -#: src/screens/Onboarding/StepFinished/index.tsx:349 +#: src/screens/Onboarding/StepFinished/index.tsx:341 +#: src/screens/Onboarding/StepFinished/index.tsx:350 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 @@ -5947,7 +5947,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:404 +#: src/screens/Onboarding/StepFinished/index.tsx:405 msgid "Open" msgstr "" @@ -6678,7 +6678,7 @@ msgctxt "toast" msgid "Profile updated" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:390 +#: src/screens/Onboarding/StepFinished/index.tsx:391 msgid "Public" msgstr "" @@ -7369,10 +7369,10 @@ msgstr "" #: src/screens/Messages/ChatList.tsx:292 #: src/screens/Messages/components/MessageListError.tsx:25 #: src/screens/Messages/Inbox.tsx:219 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:216 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:98 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:209 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 #: src/screens/PostThread/components/ThreadError.tsx:80 #: src/screens/PostThread/components/ThreadError.tsx:86 #: src/screens/Signup/BackNextButtons.tsx:53 @@ -8227,8 +8227,8 @@ msgstr "" #: src/screens/Onboarding/StepFinished/index.tsx:306 #: src/screens/Onboarding/StepFinished/index.tsx:328 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:222 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 #: src/screens/StarterPack/Wizard/index.tsx:218 msgid "Skip" msgstr "" @@ -8238,9 +8238,9 @@ msgstr "" msgid "Skip introduction and start using your account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108 -msgid "Skip this flow" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 +msgid "Skip to next step" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:165 @@ -8318,7 +8318,7 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." msgstr "" @@ -8501,8 +8501,8 @@ msgstr "" #. Accounts suggested to the user for them to follow #. Accounts suggested to the user for them to follow #: src/components/FeedInterstitials.tsx:385 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:129 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39 msgid "Suggested for you" msgstr "" @@ -8511,12 +8511,12 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -10066,7 +10066,7 @@ msgstr "" msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:382 +#: src/screens/Onboarding/StepFinished/index.tsx:383 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -10708,7 +10708,7 @@ msgstr "" msgid "You're in line" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:379 +#: src/screens/Onboarding/StepFinished/index.tsx:380 msgid "You're ready to go!" msgstr "" @@ -10880,7 +10880,7 @@ msgstr "" msgid "Your posts were sent" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:394 +#: src/screens/Onboarding/StepFinished/index.tsx:395 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po index aa52044f0..3b54a4588 100644 --- a/src/locale/locales/km/messages.po +++ b/src/locale/locales/km/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: km\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky មិនអាចបញ្ជាក់ពីភាពត្រឹមត្រូវនៃកាលបរិច្ឆេទដែលបានទាមទារនោះទេ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "រូបភាពព្រិលៗ និងត្រងចេញព msgid "Books" msgstr "សៀវភៅ" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "រកមើលគណនីច្រើនទៀតនៅលើទំព័ររុករក" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "រកមើលព័ត៌មានបន្ថែមនៅលើទំព័ររុករក" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "រកមើលការណែនាំបន្ថែម" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "រកមើលការណែនាំបន្ថែមនៅលើទំព័ររុករក" @@ -3741,17 +3741,17 @@ msgstr "បញ្ចប់" msgid "Fitness" msgstr "សម្បទា" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "សារ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "មើលការងារនៅ Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "កម្មវិធី Dev" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "មតិព័ត៌មានផ្សេងទៀតដែលអ្នកប្រហែលជាចូលចិត្ត" @@ -8511,12 +8511,12 @@ msgstr "បានណែនាំសម្រាប់អ្នក" msgid "Suggestive" msgstr "ណែនាំ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកការជូនដំណឹង។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index c05edd2ba..0eb50cb61 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "알고리즘에 주제 지정" msgid "At least 8 characters" msgstr "8자 이상" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "오로라" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky는 해당 날짜의 진위를 확인할 수 없습니다." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "이미지 블러 및 피드에서 필터링" msgid "Books" msgstr "책" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "탐색 페이지에서 더 많은 계정 찾아보기" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "탐색 페이지에서 더 많은 피드 찾아보기" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "더 많은 추천 찾아보기" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "탐색 페이지에서 더 많은 추천 찾아보기" @@ -3741,17 +3741,17 @@ msgstr "완료" msgid "Fitness" msgstr "건강" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "플랫 블랙" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "플랫 블루" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "플랫 화이트" @@ -5197,7 +5197,7 @@ msgstr "메시지 옵션" msgid "Messages" msgstr "메시지" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "심야" @@ -7630,8 +7630,8 @@ msgstr "사용자의 #{tag} 게시물 보기" msgid "See jobs at Bluesky" msgstr "Bluesky에 지원하기" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "더 보기" @@ -8241,7 +8241,7 @@ msgstr "소개를 건너뛰고 계정 사용 시작하기" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "다음 단계로 건너뛰기" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "소프트웨어 개발" msgid "Some of your verifications are invalid." msgstr "일부 인증이 유효하지 않습니다." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "좋아할 만한 다른 피드" @@ -8511,12 +8511,12 @@ msgstr "나를 위한 추천" msgid "Suggestive" msgstr "외설적" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "일출" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "일몰" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "알림을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po index 3c404252b..b67e4ddaa 100644 --- a/src/locale/locales/lt/messages.po +++ b/src/locale/locales/lt/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lt\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" @@ -877,7 +877,7 @@ msgid "alice@example.com" msgstr "" #. the default tab in the interests tab bar -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #: src/view/screens/Notifications.tsx:88 msgid "All" msgstr "" @@ -990,8 +990,8 @@ msgstr "" msgid "An error occurred while compressing the video." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:168 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66 msgid "An error occurred while fetching suggested accounts." msgstr "" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1825,7 +1825,7 @@ msgstr "" msgid "Choose Post Languages" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:424 +#: src/screens/Onboarding/StepFinished/index.tsx:425 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -2051,8 +2051,8 @@ msgstr "" msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:339 -#: src/screens/Onboarding/StepFinished/index.tsx:437 +#: src/screens/Onboarding/StepFinished/index.tsx:340 +#: src/screens/Onboarding/StepFinished/index.tsx:438 msgid "Complete onboarding and start using your account" msgstr "" @@ -2207,8 +2207,8 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:170 #: src/screens/Onboarding/StepInterests/index.tsx:94 #: src/screens/Onboarding/StepProfile/index.tsx:280 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:246 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 msgid "Continue" msgstr "" @@ -2226,8 +2226,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:91 #: src/screens/Onboarding/StepProfile/index.tsx:277 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:243 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 #: src/screens/Signup/BackNextButtons.tsx:60 msgid "Continue to next step" msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:118 msgid "Failed to follow all suggested accounts, please try again" msgstr "" @@ -3700,8 +3700,8 @@ msgstr "" msgid "Filter who you receive notifications from" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:345 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:346 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Finalizing" msgstr "" @@ -3741,22 +3741,22 @@ msgstr "" msgid "Fitness" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:420 +#: src/screens/Onboarding/StepFinished/index.tsx:421 msgid "Flexible" msgstr "" @@ -3798,7 +3798,7 @@ msgstr "" msgid "Follow account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:156 #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:163 #: src/screens/StarterPack/StarterPackScreen.tsx:438 @@ -3806,7 +3806,7 @@ msgstr "" msgid "Follow all" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:232 msgid "Follow all accounts" msgstr "" @@ -3822,7 +3822,7 @@ msgctxt "action" msgid "Follow back" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113 msgid "Followed all accounts!" msgstr "" @@ -3923,7 +3923,7 @@ msgstr "" msgid "For the best experience, we recommend using the theme font." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:293 #: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:91 msgid "For You" msgstr "" @@ -4817,8 +4817,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:347 -#: src/screens/Onboarding/StepFinished/index.tsx:440 +#: src/screens/Onboarding/StepFinished/index.tsx:348 +#: src/screens/Onboarding/StepFinished/index.tsx:441 msgid "Let's go!" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -5464,7 +5464,7 @@ msgstr "" msgid "Need to report a copyright violation?" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:408 +#: src/screens/Onboarding/StepFinished/index.tsx:409 msgid "Never lose access to your followers or data." msgstr "" @@ -5591,8 +5591,8 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/SetNewPasswordForm.tsx:182 #: src/screens/Login/SetNewPasswordForm.tsx:188 -#: src/screens/Onboarding/StepFinished/index.tsx:340 -#: src/screens/Onboarding/StepFinished/index.tsx:349 +#: src/screens/Onboarding/StepFinished/index.tsx:341 +#: src/screens/Onboarding/StepFinished/index.tsx:350 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 #: src/screens/Signup/BackNextButtons.tsx:67 @@ -5947,7 +5947,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:404 +#: src/screens/Onboarding/StepFinished/index.tsx:405 msgid "Open" msgstr "" @@ -6678,7 +6678,7 @@ msgctxt "toast" msgid "Profile updated" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:390 +#: src/screens/Onboarding/StepFinished/index.tsx:391 msgid "Public" msgstr "" @@ -7369,10 +7369,10 @@ msgstr "" #: src/screens/Messages/ChatList.tsx:292 #: src/screens/Messages/components/MessageListError.tsx:25 #: src/screens/Messages/Inbox.tsx:219 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:216 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:98 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:101 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:209 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 #: src/screens/PostThread/components/ThreadError.tsx:80 #: src/screens/PostThread/components/ThreadError.tsx:86 #: src/screens/Signup/BackNextButtons.tsx:53 @@ -8227,8 +8227,8 @@ msgstr "" #: src/screens/Onboarding/StepFinished/index.tsx:306 #: src/screens/Onboarding/StepFinished/index.tsx:328 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:222 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 #: src/screens/StarterPack/Wizard/index.tsx:218 msgid "Skip" msgstr "" @@ -8238,9 +8238,9 @@ msgstr "" msgid "Skip introduction and start using your account" msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108 -msgid "Skip this flow" +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 +msgid "Skip to next step" msgstr "" #: src/screens/Settings/AppearanceSettings.tsx:165 @@ -8318,7 +8318,7 @@ msgstr "" msgid "Something wrong? Let us know." msgstr "" -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." msgstr "" @@ -8501,8 +8501,8 @@ msgstr "" #. Accounts suggested to the user for them to follow #. Accounts suggested to the user for them to follow #: src/components/FeedInterstitials.tsx:385 -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136 -#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:129 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39 msgid "Suggested for you" msgstr "" @@ -8511,12 +8511,12 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -10066,7 +10066,7 @@ msgstr "" msgid "We have sent another verification email to <0>{0}." msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:382 +#: src/screens/Onboarding/StepFinished/index.tsx:383 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -10708,7 +10708,7 @@ msgstr "" msgid "You're in line" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:379 +#: src/screens/Onboarding/StepFinished/index.tsx:380 msgid "You're ready to go!" msgstr "" @@ -10880,7 +10880,7 @@ msgstr "" msgid "Your posts were sent" msgstr "" -#: src/screens/Onboarding/StepFinished/index.tsx:394 +#: src/screens/Onboarding/StepFinished/index.tsx:395 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po index edd7087f2..a473e57ab 100644 --- a/src/locale/locales/ne/messages.po +++ b/src/locale/locales/ne/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ne\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "ब्लूस्काई" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "ब्लूस्काईले दाबी गरिएको मितिको प्रामाणिकता पुष्टि गर्न सक्दैन।" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "चित्रहरू धुंधला गर्नुहोस् msgid "Books" msgstr "पुस्तकहरू" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "एक्सप्लोर पृष्ठमा थप खाता ब्राउज गर्नुहोस्" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "एक्सप्लोर पृष्ठमा थप फिड ब्राउज गर्नुहोस्" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "थप सुझावहरू ब्राउज गर्नुहोस्" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "एक्सप्लोर पृष्ठमा थप सुझावहरू ब्राउज गर्नुहोस्" @@ -3741,17 +3741,17 @@ msgstr "समाप्त" msgid "Fitness" msgstr "फिटनेस" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "सन्देशहरू" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Bluesky मा जागिरहरू हेर्नुहोस्।" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "सॉफ़्टवेयर विकासकर्ता" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "तपाईंलाई मन पर्ने अन्य फीडहरू" @@ -8511,12 +8511,12 @@ msgstr "तपाईंका लागि सुझाव गरिएको" msgid "Suggestive" msgstr "सुझावात्मक" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "सूचनाहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po index 7ed36bcee..a702c2596 100644 --- a/src/locale/locales/nl/messages.po +++ b/src/locale/locales/nl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: nl\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Onderwerp voor algoritme toewijzen" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan de echtheid van de geclaimde datum niet bevestigen." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Afbeeldingen vervagen en niet in feeds tonen" msgid "Books" msgstr "Boeken" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Blader door meer accounts op de pagina Verkennen" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Blader door meer feeds op de pagina Verkennen" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Blader door meer suggesties" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Blader door meer suggesties op de pagina Verkennen" @@ -3741,17 +3741,17 @@ msgstr "Voltooien" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "Berichtopties" msgid "Messages" msgstr "Privéberichten" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Vacatures bij Bluesky bekijken" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Softwareontwikkelaar" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Enkele andere feeds die je wellicht leuk vindt" @@ -8511,12 +8511,12 @@ msgstr "Aanbevolen voor jou" msgid "Suggestive" msgstr "Suggestief" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van meldingen. Tik hier om het opnieuw te proberen." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van berichten. Tik hier om het opnieuw te proberen." diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po index fff272a77..42ae748c1 100644 --- a/src/locale/locales/pl/messages.po +++ b/src/locale/locales/pl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pl\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nie może potwierdzić autentyczności podanej daty." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Rozmyj zdjęcia i odfiltruj je z kanałów" msgid "Books" msgstr "Książki" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Wyświetl więcej kont na stronie Eksploruj" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Wyświetl więcej kanałów na stronie Eksploruj" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Wyświetl więcej polecanych" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Wyświetl więcej rekomendacji na stronie Eksploruj" @@ -3741,17 +3741,17 @@ msgstr "Ukończ" msgid "Fitness" msgstr "Aktywność fizyczna" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Wiadomości" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "Zobacz wpisy tej osoby o #{tag}" msgid "See jobs at Bluesky" msgstr "Zobacz oferty pracy w Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Programowanie" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Inne kanały, które mogą ci się spodobać" @@ -8511,12 +8511,12 @@ msgstr "Proponowane dla ciebie" msgid "Suggestive" msgstr "Sugestywne" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Wystąpił problem podczas wczytywania powiadomień. Kliknij tutaj, aby spróbować ponownie." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Wystąpił problem podczas wczytywania wpisów. Kliknij tutaj, aby spróbować ponownie." diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 18bbe1a9a..a836024bd 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Atribuir tópico ao algoritmo" msgid "At least 8 characters" msgstr "No mínimo 8 caracteres" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar que a data mostrada é legítima." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Borrar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Navegue por mais contas na página Explorar" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Navegue por mais feeds na página Explorar" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Navegar por mais sugestões" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Navegue por mais sugestões na página Explorar" @@ -3741,17 +3741,17 @@ msgstr "Finalizar" msgid "Fitness" msgstr "Atividades físicas" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Preto Sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Azul Sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Branco Sólido" @@ -5197,7 +5197,7 @@ msgstr "Opções de mensagem" msgid "Messages" msgstr "Mensagens" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Meia-noite" @@ -7630,8 +7630,8 @@ msgstr "Ver postagens com #{tag} por usuário" msgid "See jobs at Bluesky" msgstr "Veja empregos na Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Ver mais" @@ -8264,7 +8264,7 @@ msgstr "Desenvolvimento de software" msgid "Some of your verifications are invalid." msgstr "Algumas de suas verificações são inválidas." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Alguns outros feeds que você pode gostar" @@ -8511,12 +8511,12 @@ msgstr "Sugeridos para você" msgid "Suggestive" msgstr "Sugestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Alvorada" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Entardecer" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Tivemos um problema ao carregar notificações. Toque aqui para tentar de novo." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Tivemos um problema ao carregar as postagens. Toque aqui para tentar de novo." diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po index d846b540f..e87e40b64 100644 --- a/src/locale/locales/pt-PT/messages.po +++ b/src/locale/locales/pt-PT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Atribuir tópico para o algoritmo" msgid "At least 8 characters" msgstr "No mínimo 8 caracteres" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar a veracidade da data aplicada." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Desfocar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Procure mais contas na página Explorar" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Procure mais feeds na página Explorar" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Procurar mais sugestões" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Procure mais sugestões na página Explorar" @@ -3741,17 +3741,17 @@ msgstr "Terminar" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Preto sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Azul sólido" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Branco sólido" @@ -5197,7 +5197,7 @@ msgstr "Opções de mensagem" msgid "Messages" msgstr "Mensagens" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Meia-noite" @@ -7630,8 +7630,8 @@ msgstr "Ver publicações em #{tag} por utilizador" msgid "See jobs at Bluesky" msgstr "Ver empregos no Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Ver mais" @@ -8241,7 +8241,7 @@ msgstr "Saltar introdução e começar a usar a sua conta" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Saltar para o próximo passo" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Programador" msgid "Some of your verifications are invalid." msgstr "Algumas das suas verificações são inválidas." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Outros feeds que talvez possa gostar" @@ -8511,12 +8511,12 @@ msgstr "Sugerido para si" msgid "Suggestive" msgstr "Sugestivo" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Nascer do sol" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Pôr do sol" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houve um problema ao obter as notificações. Toque aqui para tentar novamente." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houve um problema ao obter as publicações. Toque aqui para tentar novamente." diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po index c363824dc..bd20c84bc 100644 --- a/src/locale/locales/ro/messages.po +++ b/src/locale/locales/ro/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ro\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -1269,7 +1269,7 @@ msgstr "Atribuiți subiectul pentru algoritm" msgid "At least 8 characters" msgstr "Cel puțin 8 caractere" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nu poate confirma autenticitatea datei revendicate." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Estompați imaginile și filtrați din fluxuri" msgid "Books" msgstr "Cărți" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Răsfoiți mai multe conturi pe pagina Explorare" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Răsfoiți mai multe fluxuri pe pagina Explorare" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Răsfoiți mai multe sugestii" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Răsfoiți mai multe sugestii pe pagina Explorare" @@ -3741,17 +3741,17 @@ msgstr "Finalizare" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Negru Plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Albastru Plat" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Alb Plat" @@ -5197,7 +5197,7 @@ msgstr "Opțiuni mesaj" msgid "Messages" msgstr "Mesaje" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Miezul nopții" @@ -7630,8 +7630,8 @@ msgstr "Vedeți postările #{tag} de la utilizator" msgid "See jobs at Bluesky" msgstr "Vedeți locuri de muncă la Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Vedeți mai multe" @@ -8241,7 +8241,7 @@ msgstr "Omiteți introducerea și începeți să vă folosiți contul" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Omiteți la pasul următor" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Dezvoltare software" msgid "Some of your verifications are invalid." msgstr "Unele dintre verificările dvs. sunt invalide." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Alte fluxuri care v-ar putea plăcea" @@ -8511,12 +8511,12 @@ msgstr "Sugerat pentru dvs." msgid "Suggestive" msgstr "Sugestiv" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Răsărit" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Apus de soare" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "A apărut o problemă la preluarea notificărilor. Atingeți aici pentru a încerca din nou." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A apărut o problemă la preluarea postărilor. Atingeți aici pentru a încerca din nou." diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po index 161a7c01d..f58d003ca 100644 --- a/src/locale/locales/ru/messages.po +++ b/src/locale/locales/ru/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -1269,7 +1269,7 @@ msgstr "Назначьте тему для алгоритма" msgid "At least 8 characters" msgstr "Как минимум 8 символов" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Аврора" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не может подтвердить подлинность заявленной даты." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Размыть изображения и отфильтровать их msgid "Books" msgstr "Книги" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Просмотреть другие учётные записи на странице Explore" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Просмотреть другие ленты на странице Explore" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Просмотреть другие предложения" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Просмотрите другие предложения на странице Explore" @@ -3741,17 +3741,17 @@ msgstr "Финиш" msgid "Fitness" msgstr "Фитнес" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Плоский черный" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Плоский синий" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Плоский белый" @@ -5197,7 +5197,7 @@ msgstr "Параметры сообщений" msgid "Messages" msgstr "Сообщения" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Полночь" @@ -7630,8 +7630,8 @@ msgstr "Просмотреть посты пользователя #{tag}" msgid "See jobs at Bluesky" msgstr "Посмотреть вакансии в Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Подробнее" @@ -8264,7 +8264,7 @@ msgstr "Разрабочик программного обеспечения" msgid "Some of your verifications are invalid." msgstr "Некоторые из ваших верификаций недействительны." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Некоторые другие ленты, которые могут вам понравиться" @@ -8511,12 +8511,12 @@ msgstr "Предложения для вас" msgid "Suggestive" msgstr "Неприличный" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Восход" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Закат" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Возникла проблема с загрузкой уведомлений. Нажмите здесь, чтобы повторить попытку." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку." diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po index 9829d0a76..e89c05403 100644 --- a/src/locale/locales/sv/messages.po +++ b/src/locale/locales/sv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sv\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1269,7 +1269,7 @@ msgstr "Tilldela ämne för algoritm" msgid "At least 8 characters" msgstr "Minst 8 tecken" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Norrsken" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan inte bekräfta äktheten av det angivna datumet." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Gör bilder suddiga och filtrera bort från flöden" msgid "Books" msgstr "Böcker" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Bläddra bland fler konton på Utforska-sidan" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Bläddra bland fler flöden på Utforska-sidan" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Bläddra bland fler förslag" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Bläddra bland fler förslag på Utforska-sidan" @@ -3741,17 +3741,17 @@ msgstr "Slutför" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Matt svart" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Matt blå" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Matt vit" @@ -5197,7 +5197,7 @@ msgstr "Meddelandealternativ" msgid "Messages" msgstr "Meddelanden" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Midnatt" @@ -7630,8 +7630,8 @@ msgstr "Se #{tag}-inlägg av användare" msgid "See jobs at Bluesky" msgstr "Se jobb på Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Se fler" @@ -8241,7 +8241,7 @@ msgstr "Hoppa över introduktionen och börja använda ditt konto" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Hoppa till nästa steg" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Mjukvaruutveckling" msgid "Some of your verifications are invalid." msgstr "Några av dina verifieringar är ogiltiga." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Några andra flöden som du kanske gillar" @@ -8511,12 +8511,12 @@ msgstr "Föreslaget åt dig" msgid "Suggestive" msgstr "Suggestivt" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Soluppgång" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgång" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ett problem uppstod med att hämta notiser. Tryck här för att försöka igen." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ett problem uppstod med att hämta inlägg. Tryck här för att försöka igen." diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po index 1ce18dba2..8724772de 100644 --- a/src/locale/locales/th/messages.po +++ b/src/locale/locales/th/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: th\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "เบลอภาพและกรองออกจากฟีด" msgid "Books" msgstr "หนังสือ" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "เรียกดูบัญชีเพิ่มเติมในหน้าค้นหา" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "เรียกดูฟีดเพิ่มเติมในหน้าค้นหา" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "เรียกดูข้อเสนอเพิ่มเติม" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "เรียกดูข้อเสนอเพิ่มเติมในหน้าค้นหา" @@ -3741,17 +3741,17 @@ msgstr "เสร็จสิ้น" msgid "Fitness" msgstr "ฟิตเนส" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "ข้อความ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "มองหางานใน Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "นักพัฒนาซอฟต์แวร์" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "ฟีดอื่น ๆ ที่คุณอาจชอบ" @@ -8511,12 +8511,12 @@ msgstr "แนะนำสำหรับคุณ" msgid "Suggestive" msgstr "ชี้นำ" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "เกิดปัญหาในการดึงการแจ้งเตือน คลิกที่นี่เพื่อลองอีกครั้ง" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index ee835a267..41083902d 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: tr\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -576,7 +576,7 @@ msgstr "İsteği kabul et" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:178 msgid "Accept this language suggestion" -msgstr "" +msgstr "Bu dil önerisini kabul et" #: src/screens/Settings/AccessibilitySettings.tsx:44 #: src/screens/Settings/Settings.tsx:220 @@ -1269,7 +1269,7 @@ msgstr "Algoritmaya başlık ata" msgid "At least 8 characters" msgstr "En az 8 karakter" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Kuzey Işıkları" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky iddia edilen tarihin doğruluğunu onaylayamaz." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Klasik™" @@ -1513,20 +1513,20 @@ msgstr "Akışlardaki görüntüleri bulanıklaştır ve filtrele" msgid "Books" msgstr "Kitaplar" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Keşfet sayfasında daha fazla kullanıcı bul" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Keşfet sayfasında daha fazla akış bul" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Daha çok öneriye göz at" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Keşfet sayfasında daha çok öneriye göz at" @@ -2933,15 +2933,15 @@ msgstr "örn: Harika Göndericiler" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:354 msgid "e.g. Spammers" -msgstr "" +msgstr "örn: Spamcılar" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357 msgid "e.g. The posters who never miss." -msgstr "" +msgstr "örn: Asla kaçırmayan göndericiler." #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358 msgid "e.g. Users that repeatedly reply with ads." -msgstr "" +msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." #: src/screens/Settings/AccountSettings.tsx:145 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:252 @@ -3711,7 +3711,7 @@ msgstr "Sonunda! Sizin için önemli olan gönderileri kaçırmayın. Onları is #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "Finans" #: src/view/com/posts/CustomFeedEmptyState.tsx:48 #: src/view/com/posts/FollowingEmptyState.tsx:53 @@ -3741,17 +3741,17 @@ msgstr "Bitir" msgid "Fitness" msgstr "Fitness" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Düz Siyah" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Düz Mavi" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Düz Beyaz" @@ -4140,7 +4140,7 @@ msgstr "{0} ile olan yazışmaya git" #: src/view/com/posts/PostFeedReason.tsx:38 msgid "Go to feed" -msgstr "" +msgstr "Akışa git" #: src/screens/Login/ForgotPasswordForm.tsx:165 msgid "Go to next" @@ -4569,7 +4569,7 @@ msgstr "Geçersiz kullanıcı adı. Lütfen başka bir kullanıcı adı deneyin. #: src/components/PostControls/PostMenu/PostMenuItems.tsx:365 msgctxt "toast" msgid "Invalid interaction settings." -msgstr "" +msgstr "Geçersiz etkileşim ayarları." #: src/components/moderation/ReportDialog/index.tsx:73 msgid "Invalid report subject" @@ -4918,7 +4918,7 @@ msgstr "Liste" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:380 msgid "List avatar" -msgstr "" +msgstr "Liste avatarı" #: src/screens/ProfileList/components/SubscribeMenu.tsx:50 msgctxt "toast" @@ -5197,7 +5197,7 @@ msgstr "Mesaj seçenekleri" msgid "Messages" msgstr "Mesajlar" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Gece yarısı" @@ -7260,11 +7260,11 @@ msgstr "Yeniden Gönderen" #: src/view/com/posts/PostFeedReason.tsx:77 msgid "Reposted by {reposter}" -msgstr "" +msgstr "{reposter} tarafından yeniden gönderilmiş" #: src/view/com/posts/PostFeedReason.tsx:91 msgid "Reposted by <0><1>{reposter}" -msgstr "" +msgstr "<0><1>{reposter} tarafından yeniden gönderilmiş" #: src/view/com/posts/PostFeedReason.tsx:77 #: src/view/com/posts/PostFeedReason.tsx:89 @@ -7630,8 +7630,8 @@ msgstr "Kullanıcının #{tag} gönderilerini gör" msgid "See jobs at Bluesky" msgstr "Bluesky'daki iş fırsatlarını görün" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "Daha fazlasını gör" @@ -8241,7 +8241,7 @@ msgstr "Girizgahı atla ve hesabını kullanmaya başla" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "Sonraki adıma atla" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "Yazılım Geliştirme" msgid "Some of your verifications are invalid." msgstr "Doğrulamalarınızdan bazıları geçersiz." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Beğenebileceğiniz diğer akışlar" @@ -8320,7 +8320,7 @@ msgstr "Bir sorun mu var? Bize bildirin." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:176 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "Üzgünüz, hesap önerilerini şu anda yükleyemiyoruz." #: src/App.native.tsx:128 #: src/App.web.tsx:100 @@ -8511,12 +8511,12 @@ msgstr "Size önerilenler" msgid "Suggestive" msgstr "Tehlikeli" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Gün doğumu" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Gün batımı" @@ -8772,7 +8772,7 @@ msgstr "Bulunduğunuz bölgedeki yasalar belirli özelliklere erişebilmeniz iç #: src/view/com/composer/select-language/SuggestedLanguage.tsx:119 msgid "The post you're replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" -msgstr "" +msgstr "Yanıtlamakta olduğunuz gönderi, yazarı tarafından {suggestedLanguageName} dilinde işaretlenmiş. Siz de <0>{suggestedLanguageName} dilinde yanıtlamak ister misiniz?" #: src/view/screens/PrivacyPolicy.tsx:38 msgid "The Privacy Policy has been moved to <0/>" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bildirimleri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." @@ -10417,7 +10417,7 @@ msgstr "Hangi ayarı seçerseniz seçin devam eden yazışmaları sürdürebilir #: src/components/PostControls/PostMenu/PostMenuItems.tsx:357 msgctxt "toast" msgid "You can hide a maximum of {MAX_HIDDEN_REPLIES} replies." -msgstr "" +msgstr "En fazla {MAX_HIDDEN_REPLIES} yanıt gizleyebilirsiniz." #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:148 msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 7a9e56d7c..418c95116 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uk\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:32\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" @@ -1458,7 +1458,7 @@ msgstr "" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не може підтвердити автентичність зазначеної дати." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "" @@ -1513,20 +1513,20 @@ msgstr "Розмити зображення і фільтрувати їх зі msgid "Books" msgstr "Книги" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Переглянути більше облікових записів на сторінці Відкриття" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Переглянути більше стрічок на сторінці Відкриття" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Переглянути більше пропозицій" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Переглянути більше запропонованого на сторінці Відкриття" @@ -3741,17 +3741,17 @@ msgstr "Завершити" msgid "Fitness" msgstr "Фітнес" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "" @@ -5197,7 +5197,7 @@ msgstr "" msgid "Messages" msgstr "Повідомлення" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "" @@ -7630,8 +7630,8 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Переглянути вакансії у Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Розробка П/З" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Інші стрічки, які можуть вам сподобатися" @@ -8511,12 +8511,12 @@ msgstr "Пропоновано для вас" msgid "Suggestive" msgstr "Непристойний" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу." diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po index b641fc3c8..596373e99 100644 --- a/src/locale/locales/vi/messages.po +++ b/src/locale/locales/vi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: vi\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:32\n" +"PO-Revision-Date: 2025-10-22 19:27\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "" msgid "At least 8 characters" msgstr "" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky không thể xác nhận tính xác thực của ngày được tuyên bố." -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "Làm mờ hình ảnh và lọc từ bảng tin" msgid "Books" msgstr "Sách" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "Xem nhiều tài khoản hơn trên trang Khám phá" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "Xem nhiều bảng tin hơn trên trang Khám phá" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "Xem thêm đề xuất" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "Xem thêm đề xuất trên trang Khám phá" @@ -3741,17 +3741,17 @@ msgstr "Hoàn tất" msgid "Fitness" msgstr "Thể hình" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "Thuần đen" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "Thuần xanh" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "Thuần trắng" @@ -5197,7 +5197,7 @@ msgstr "Tuỳ chọn tin nhắn" msgid "Messages" msgstr "Tin nhắn" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "Nửa đêm" @@ -7630,8 +7630,8 @@ msgstr "Xem bài đăng #{tag} từ người dùng" msgid "See jobs at Bluesky" msgstr "Xem công việc tại Bluesky" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "" @@ -8264,7 +8264,7 @@ msgstr "Lập trình viên" msgid "Some of your verifications are invalid." msgstr "Một vài xác minh của bạn không hợp lệ." -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "Một số bảng tin khác bạn có thể thích" @@ -8511,12 +8511,12 @@ msgstr "Được đề xuất dành cho bạn" msgid "Suggestive" msgstr "Đề xuất" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "Bình minh" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Hoàng hôn" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Có vấn đề khi tải thông báo. Nhấn vào đây để thử lại." #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Có vấn đề khi tải bài đăng. Nhấn vào đây để thử lại." diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index b99dc03a6..a48db1cf1 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "为算法指定主题" msgid "At least 8 characters" msgstr "至少应含有 8 个字符" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "极光" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 无法确认帖文发布时间的真实性。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky 经典™" @@ -1513,20 +1513,20 @@ msgstr "模糊化图片并从动态源中过滤" msgid "Books" msgstr "书籍" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "在探索页面浏览更多账户" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "在探索页面浏览更多动态源" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "浏览更多建议" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "在探索页面浏览更多建议" @@ -3741,17 +3741,17 @@ msgstr "完成" msgid "Fitness" msgstr "健康" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "哑光黑" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "哑光蓝" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "哑光白" @@ -5197,7 +5197,7 @@ msgstr "私信选项" msgid "Messages" msgstr "私信" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "午夜" @@ -7630,8 +7630,8 @@ msgstr "查看该用户包含 #{tag} 的帖文" msgid "See jobs at Bluesky" msgstr "查看 Bluesky 的工作职缺" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "浏览更多" @@ -8264,7 +8264,7 @@ msgstr "程序开发" msgid "Some of your verifications are invalid." msgstr "你当前被授予的部分认证无效。" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "其他你可能喜欢的动态源" @@ -8511,12 +8511,12 @@ msgstr "为你推荐" msgid "Suggestive" msgstr "性暗示" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "日出" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po index 4af402121..58f6b41b4 100644 --- a/src/locale/locales/zh-HK/messages.po +++ b/src/locale/locales/zh-HK/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Chinese Traditional, Hong Kong\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "爲演算法指定主題" msgid "At least 8 characters" msgstr "至少 8 個字元" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "極光" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期嘅真實性。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky Classic™" @@ -1513,20 +1513,20 @@ msgstr "模糊圖片同埋喺動態源度篩選" msgid "Books" msgstr "書" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "喺探索頁面瀏覽更多帳號" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "喺探索頁面瀏覽更多動態源" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "瀏覽更多建議" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "喺探索頁面瀏覽更多建議" @@ -3741,17 +3741,17 @@ msgstr "攪掂" msgid "Fitness" msgstr "健康" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "啞黑" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "啞藍" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "啞白" @@ -5197,7 +5197,7 @@ msgstr "訊息選項" msgid "Messages" msgstr "傾偈" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "半夜" @@ -7630,8 +7630,8 @@ msgstr "睇下呢位用戶包含 #{tag} 嘅帖文" msgid "See jobs at Bluesky" msgstr "喺 Bluesky 度搵工" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "瀏覽更多" @@ -8241,7 +8241,7 @@ msgstr "跳過介紹直接開始使用你嘅帳號" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:219 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99 msgid "Skip to next step" -msgstr "" +msgstr "跳到下一步" #: src/screens/Settings/AppearanceSettings.tsx:165 msgid "Smaller" @@ -8264,7 +8264,7 @@ msgstr "軟件開發" msgid "Some of your verifications are invalid." msgstr "你目前被授予嘅部分驗證無效。" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "其他可能都會啱你心水嘅動態源" @@ -8511,12 +8511,12 @@ msgstr "估你心水" msgid "Suggestive" msgstr "性暗示" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "日出" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "攞緊通知嗰陣出咗問題,撳呢度試多次。" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "攞緊帖文嗰陣出咗問題,撳呢度試多次。" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index c3b03af4b..e85fecdd8 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2025-10-16 16:31\n" +"PO-Revision-Date: 2025-10-22 19:26\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1269,7 +1269,7 @@ msgstr "為演算法指定主題" msgid "At least 8 characters" msgstr "至少 8 個字元" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:62 msgctxt "Name of app icon variant" msgid "Aurora" msgstr "極光" @@ -1458,7 +1458,7 @@ msgstr "Bluesky" msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期的真實性。" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:179 msgctxt "Name of app icon variant" msgid "Bluesky Classic™" msgstr "Bluesky 經典™" @@ -1513,20 +1513,20 @@ msgstr "模糊圖片,並從動態中排除內容" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:431 +#: src/components/FeedInterstitials.tsx:436 msgid "Browse more accounts on the Explore page" msgstr "在探索頁面瀏覽更多帳號" -#: src/components/FeedInterstitials.tsx:559 +#: src/components/FeedInterstitials.tsx:569 msgid "Browse more feeds on the Explore page" msgstr "在探索頁面瀏覽更多動態源" -#: src/components/FeedInterstitials.tsx:540 -#: src/components/FeedInterstitials.tsx:543 +#: src/components/FeedInterstitials.tsx:550 +#: src/components/FeedInterstitials.tsx:553 msgid "Browse more suggestions" msgstr "瀏覽更多建議" -#: src/components/FeedInterstitials.tsx:568 +#: src/components/FeedInterstitials.tsx:578 msgid "Browse more suggestions on the Explore page" msgstr "在探索頁面瀏覽更多建議" @@ -3741,17 +3741,17 @@ msgstr "完成" msgid "Fitness" msgstr "健康" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163 msgctxt "Name of app icon variant" msgid "Flat Black" msgstr "消光黑" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131 msgctxt "Name of app icon variant" msgid "Flat Blue" msgstr "消光藍" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147 msgctxt "Name of app icon variant" msgid "Flat White" msgstr "消光白" @@ -5197,7 +5197,7 @@ msgstr "訊息選項" msgid "Messages" msgstr "訊息" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115 msgctxt "Name of app icon variant" msgid "Midnight" msgstr "午夜" @@ -7630,8 +7630,8 @@ msgstr "檢視此用戶包含 #{tag} 的貼文" msgid "See jobs at Bluesky" msgstr "瀏覽在 Bluesky 的工作機會" -#: src/components/FeedInterstitials.tsx:394 -#: src/components/FeedInterstitials.tsx:445 +#: src/components/FeedInterstitials.tsx:399 +#: src/components/FeedInterstitials.tsx:455 msgid "See more" msgstr "檢視更多" @@ -8264,7 +8264,7 @@ msgstr "軟體開發" msgid "Some of your verifications are invalid." msgstr "您目前被授予的部分驗證無效。" -#: src/components/FeedInterstitials.tsx:522 +#: src/components/FeedInterstitials.tsx:532 msgid "Some other feeds you might like" msgstr "其他您可能喜歡的動態源" @@ -8511,12 +8511,12 @@ msgstr "為您推薦" msgid "Suggestive" msgstr "性暗示" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 msgctxt "Name of app icon variant" msgid "Sunrise" msgstr "日出" -#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96 +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100 msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" @@ -8837,7 +8837,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,按這裡重試。" #: src/screens/Search/Explore.tsx:993 -#: src/view/com/posts/PostFeed.tsx:709 +#: src/view/com/posts/PostFeed.tsx:712 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,按這裡重試。" -- 2.51.2