Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d696d6e9f | |||
| 30c9763caa | |||
| 973b860943 |
@@ -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,11 +146,6 @@ 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: >
|
||||
@@ -187,11 +182,11 @@ jobs:
|
||||
- name: ⬇️ Restore Cache
|
||||
id: get-base-commit
|
||||
uses: actions/cache@v4
|
||||
if: ${{ inputs.profile == 'testflight-android' }}
|
||||
if: ${{ inputs.profile == 'testflight' }}
|
||||
with:
|
||||
path: most-recent-testflight-commit.txt
|
||||
key: most-recent-testflight-commit
|
||||
|
||||
- name: ✏️ Write commit hash to cache
|
||||
if: ${{ inputs.profile == 'testflight-android' }}
|
||||
if: ${{ inputs.profile == 'testflight' }}
|
||||
run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
|
||||
|
||||
@@ -85,42 +85,20 @@ jobs:
|
||||
echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> .env
|
||||
echo "EXPO_PUBLIC_BUNDLE_IDENTIFIER=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
|
||||
echo "EXPO_PUBLIC_BUNDLE_DATE=$(date -u +"%y%m%d%H")" >> .env
|
||||
echo "EXPO_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env
|
||||
echo "EXPO_PUBLIC_BITDRIFT_API_KEY=${{ secrets.BITDRIFT_API_KEY }}" >> .env
|
||||
echo "EXPO_PUBLIC_GCP_PROJECT_ID=${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }}" >> .env
|
||||
echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json
|
||||
echo "${{ secrets.GOOGLE_SERVICES_IOS_TOKEN }}" > GoogleService-Info.plist
|
||||
|
||||
- name: 🏗️ EAS Build
|
||||
run: >
|
||||
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||
SENTRY_RELEASE=${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }}
|
||||
SENTRY_DIST=${{ steps.env.outputs.EXPO_PUBLIC_BUNDLE_IDENTIFIER }}
|
||||
yarn use-build-number-with-bump
|
||||
eas build -p ios
|
||||
--profile ${{ inputs.profile || 'testflight' }}
|
||||
--local --output build.tar.gz --non-interactive
|
||||
|
||||
- name: 📂 Extract build artifact
|
||||
run: |
|
||||
if [ -f "build.tar.gz" ]; then
|
||||
echo "Extracting build.tar.gz..."
|
||||
mkdir ios-build
|
||||
tar -xzf build.tar.gz -C ios-build
|
||||
echo "Extraction completed successfully"
|
||||
else
|
||||
echo "Archive file not found!"
|
||||
exit 1
|
||||
fi
|
||||
--local --output build.ipa --non-interactive
|
||||
|
||||
- name: 🚀 Deploy
|
||||
run: eas submit -p ios --non-interactive --path ios-build/ios/build/Bluesky.ipa
|
||||
|
||||
- name: 🪲 Upload dSYM to Sentry
|
||||
run: >
|
||||
SENTRY_ORG=blueskyweb
|
||||
SENTRY_PROJECT=app
|
||||
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||
yarn sentry-cli debug-files upload ios-build/ios/build/Bluesky.app.dSYM.zip --include-sources
|
||||
run: eas submit -p ios --non-interactive --path build.ipa
|
||||
|
||||
- name: 📚 Get version from package.json
|
||||
id: get-build-info
|
||||
|
||||
@@ -101,6 +101,7 @@ stats.json
|
||||
|
||||
# Firebase (Android) Google services
|
||||
google-services.json
|
||||
GoogleService-Info.plist
|
||||
|
||||
# Performance results (Flashlight)
|
||||
.perf/
|
||||
|
||||
+4
-44
@@ -28,8 +28,6 @@ module.exports = function (_config) {
|
||||
|
||||
const UPDATES_ENABLED = IS_TESTFLIGHT || IS_PRODUCTION
|
||||
|
||||
const USE_SENTRY = Boolean(process.env.SENTRY_AUTH_TOKEN)
|
||||
|
||||
return {
|
||||
expo: {
|
||||
version: VERSION,
|
||||
@@ -46,6 +44,7 @@ module.exports = function (_config) {
|
||||
newArchEnabled: false,
|
||||
ios: {
|
||||
supportsTablet: false,
|
||||
googleServicesFile: './GoogleService-Info.plist',
|
||||
bundleIdentifier: 'xyz.blueskyweb.app',
|
||||
config: {
|
||||
usesNonExemptEncryption: false,
|
||||
@@ -112,34 +111,6 @@ module.exports = function (_config) {
|
||||
'com.apple.security.application-groups': 'group.app.bsky',
|
||||
},
|
||||
privacyManifests: {
|
||||
NSPrivacyCollectedDataTypes: [
|
||||
{
|
||||
NSPrivacyCollectedDataType: 'NSPrivacyCollectedDataTypeCrashData',
|
||||
NSPrivacyCollectedDataTypeLinked: false,
|
||||
NSPrivacyCollectedDataTypeTracking: false,
|
||||
NSPrivacyCollectedDataTypePurposes: [
|
||||
'NSPrivacyCollectedDataTypePurposeAppFunctionality',
|
||||
],
|
||||
},
|
||||
{
|
||||
NSPrivacyCollectedDataType:
|
||||
'NSPrivacyCollectedDataTypePerformanceData',
|
||||
NSPrivacyCollectedDataTypeLinked: false,
|
||||
NSPrivacyCollectedDataTypeTracking: false,
|
||||
NSPrivacyCollectedDataTypePurposes: [
|
||||
'NSPrivacyCollectedDataTypePurposeAppFunctionality',
|
||||
],
|
||||
},
|
||||
{
|
||||
NSPrivacyCollectedDataType:
|
||||
'NSPrivacyCollectedDataTypeOtherDiagnosticData',
|
||||
NSPrivacyCollectedDataTypeLinked: false,
|
||||
NSPrivacyCollectedDataTypeTracking: false,
|
||||
NSPrivacyCollectedDataTypePurposes: [
|
||||
'NSPrivacyCollectedDataTypePurposeAppFunctionality',
|
||||
],
|
||||
},
|
||||
],
|
||||
NSPrivacyAccessedAPITypes: [
|
||||
{
|
||||
NSPrivacyAccessedAPIType:
|
||||
@@ -224,20 +195,15 @@ module.exports = function (_config) {
|
||||
'react-native-edge-to-edge',
|
||||
{android: {enforceNavigationBarContrast: false}},
|
||||
],
|
||||
USE_SENTRY && [
|
||||
'@sentry/react-native/expo',
|
||||
{
|
||||
organization: 'blueskyweb',
|
||||
project: 'app',
|
||||
url: 'https://sentry.io',
|
||||
},
|
||||
],
|
||||
'@react-native-firebase/app',
|
||||
'@react-native-firebase/crashlytics',
|
||||
[
|
||||
'expo-build-properties',
|
||||
{
|
||||
ios: {
|
||||
deploymentTarget: '15.1',
|
||||
buildReactNativeFromSource: true,
|
||||
useFrameworks: 'static',
|
||||
},
|
||||
android: {
|
||||
compileSdkVersion: 35,
|
||||
@@ -255,12 +221,6 @@ module.exports = function (_config) {
|
||||
},
|
||||
],
|
||||
'react-native-compressor',
|
||||
[
|
||||
'@bitdrift/react-native',
|
||||
{
|
||||
networkInstrumentation: true,
|
||||
},
|
||||
],
|
||||
'./plugins/starterPackAppClipExtension/withStarterPackAppClip.js',
|
||||
'./plugins/withGradleJVMHeapSizeIncrease.js',
|
||||
'./plugins/withAndroidManifestLargeHeapPlugin.js',
|
||||
|
||||
@@ -36,8 +36,7 @@
|
||||
"extends": "base",
|
||||
"ios": {
|
||||
"resourceClass": "large",
|
||||
"autoIncrement": true,
|
||||
"buildArtifactPaths": ["ios/build/*"]
|
||||
"autoIncrement": true
|
||||
},
|
||||
"android": {
|
||||
"autoIncrement": true
|
||||
@@ -51,8 +50,7 @@
|
||||
"extends": "base",
|
||||
"distribution": "internal",
|
||||
"ios": {
|
||||
"autoIncrement": false,
|
||||
"buildArtifactPaths": ["ios/build/*"]
|
||||
"autoIncrement": false
|
||||
},
|
||||
"android": {
|
||||
"autoIncrement": false
|
||||
@@ -65,8 +63,7 @@
|
||||
"testflight": {
|
||||
"extends": "base",
|
||||
"ios": {
|
||||
"autoIncrement": true,
|
||||
"buildArtifactPaths": ["ios/build/*"]
|
||||
"autoIncrement": true
|
||||
},
|
||||
"android": {
|
||||
"autoIncrement": true
|
||||
@@ -80,8 +77,7 @@
|
||||
"extends": "base",
|
||||
"distribution": "internal",
|
||||
"ios": {
|
||||
"autoIncrement": true,
|
||||
"buildArtifactPaths": ["ios/build/*"]
|
||||
"autoIncrement": true
|
||||
},
|
||||
"android": {
|
||||
"autoIncrement": true
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"react-native": {
|
||||
"crashlytics_debug_enabled": true
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
// Learn more https://docs.expo.io/guides/customizing-metro
|
||||
const {getSentryExpoConfig} = require('@sentry/react-native/metro')
|
||||
const cfg = getSentryExpoConfig(__dirname)
|
||||
const {getDefaultConfig} = require('expo/metro-config')
|
||||
const cfg = getDefaultConfig(__dirname)
|
||||
|
||||
cfg.resolver.sourceExts = process.env.RN_SRC_EXT
|
||||
? process.env.RN_SRC_EXT.split(',').concat(cfg.resolver.sourceExts)
|
||||
|
||||
+2
-1
@@ -73,7 +73,6 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@atproto/api": "^0.17.1",
|
||||
"@bitdrift/react-native": "^0.6.8",
|
||||
"@braintree/sanitize-url": "^6.0.2",
|
||||
"@bsky.app/alf": "^0.1.5",
|
||||
"@bsky.app/react-native-mmkv": "2.12.5",
|
||||
@@ -97,6 +96,8 @@
|
||||
"@miblanchard/react-native-slider": "^2.6.0",
|
||||
"@mozzius/expo-dynamic-app-icon": "^1.8.0",
|
||||
"@react-native-async-storage/async-storage": "2.2.0",
|
||||
"@react-native-firebase/app": "^23.4.1",
|
||||
"@react-native-firebase/crashlytics": "^23.4.1",
|
||||
"@react-navigation/bottom-tabs": "^7.3.13",
|
||||
"@react-navigation/drawer": "^7.3.12",
|
||||
"@react-navigation/native": "^7.1.9",
|
||||
|
||||
+1
-4
@@ -1,5 +1,3 @@
|
||||
import '#/logger/sentry/setup'
|
||||
import '#/logger/bitdrift/setup'
|
||||
import '#/view/icons'
|
||||
|
||||
import React, {useEffect, useState} from 'react'
|
||||
@@ -13,7 +11,6 @@ import * as SplashScreen from 'expo-splash-screen'
|
||||
import * as SystemUI from 'expo-system-ui'
|
||||
import {msg} from '@lingui/macro'
|
||||
import {useLingui} from '@lingui/react'
|
||||
import * as Sentry from '@sentry/react-native'
|
||||
|
||||
import {KeyboardControllerProvider} from '#/lib/hooks/useEnableKeyboardController'
|
||||
import {Provider as HideBottomBarBorderProvider} from '#/lib/hooks/useHideBottomBarBorder'
|
||||
@@ -251,4 +248,4 @@ function App() {
|
||||
)
|
||||
}
|
||||
|
||||
export default Sentry.wrap(App)
|
||||
export default App
|
||||
|
||||
@@ -390,12 +390,7 @@ export function ProfileGrid({
|
||||
{!isProfileHeaderContext && (
|
||||
<InlineLinkText
|
||||
label={_(msg`See more suggested profiles on the Explore page`)}
|
||||
to="/search"
|
||||
onPress={() => {
|
||||
logger.metric('suggestedUser:seeMore', {
|
||||
logContext: isFeedContext ? 'Explore' : 'Profile',
|
||||
})
|
||||
}}>
|
||||
to="/search">
|
||||
<Trans>See more</Trans>
|
||||
</InlineLinkText>
|
||||
)}
|
||||
@@ -434,11 +429,6 @@ function SeeMoreSuggestedProfilesCard() {
|
||||
to="/search"
|
||||
color="primary"
|
||||
label={_(msg`Browse more accounts on the Explore page`)}
|
||||
onPress={() => {
|
||||
logger.metric('suggestedUser:seeMore', {
|
||||
logContext: 'Explore',
|
||||
})
|
||||
}}
|
||||
style={[
|
||||
a.flex_col,
|
||||
a.align_center,
|
||||
|
||||
@@ -85,11 +85,7 @@ function ContentHiderActive({
|
||||
blur.type !== 'label' ||
|
||||
(blur.type === 'label' && blur.source.type !== 'user')
|
||||
) {
|
||||
if (desc.isSubjectAccount) {
|
||||
return _(msg`${desc.name} (Account)`)
|
||||
} else {
|
||||
return desc.name
|
||||
}
|
||||
return desc.name
|
||||
}
|
||||
|
||||
let hasAdultContentLabel = false
|
||||
@@ -131,7 +127,6 @@ function ContentHiderActive({
|
||||
modui?.blurs,
|
||||
blur,
|
||||
desc.name,
|
||||
desc.isSubjectAccount,
|
||||
labelDefs,
|
||||
i18n.locale,
|
||||
globalLabelStrings,
|
||||
|
||||
@@ -78,7 +78,6 @@ const NETWORK_ERRORS = [
|
||||
'Network request failed',
|
||||
'Failed to fetch',
|
||||
'Load failed',
|
||||
'Upstream service unreachable',
|
||||
]
|
||||
|
||||
export function isNetworkError(e: unknown) {
|
||||
|
||||
@@ -28,7 +28,6 @@ export interface ModerationCauseDescription {
|
||||
sourceType?: ModerationCauseSource['type']
|
||||
sourceAvi?: string
|
||||
sourceDid?: string
|
||||
isSubjectAccount?: boolean
|
||||
}
|
||||
|
||||
export function useModerationCauseDescription(
|
||||
@@ -163,7 +162,6 @@ export function useModerationCauseDescription(
|
||||
sourceType: cause.source.type,
|
||||
sourceAvi: labeler?.creator.avatar,
|
||||
sourceDid: cause.label.src,
|
||||
isSubjectAccount: cause.label.uri.startsWith('did:'),
|
||||
}
|
||||
}
|
||||
// should never happen
|
||||
|
||||
@@ -7,7 +7,6 @@ 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'
|
||||
@@ -48,9 +47,7 @@ async function _registerPushToken({
|
||||
|
||||
notyLogger.debug(`registerPushToken: success`)
|
||||
} catch (error) {
|
||||
if (!isNetworkError(error)) {
|
||||
notyLogger.error(`registerPushToken: failed`, {safeMessage: error})
|
||||
}
|
||||
notyLogger.error(`registerPushToken: failed`, {safeMessage: error})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -31,7 +31,6 @@ const NETWORK_ERRORS = [
|
||||
'Network request failed',
|
||||
'Failed to fetch',
|
||||
'Load failed',
|
||||
'Upstream service unreachable',
|
||||
]
|
||||
|
||||
export function isNetworkError(e: unknown) {
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: an\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Explorar mas cuentas"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Revisar mas canals"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Explorar mas sucherencias"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Programación"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ar_SA\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:146
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153
|
||||
#: 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:168
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75
|
||||
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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:425
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:424
|
||||
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:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:438
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:339
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:437
|
||||
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:246
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123
|
||||
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:243
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120
|
||||
#: 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:118
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125
|
||||
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:346
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:345
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Finalizing"
|
||||
msgstr ""
|
||||
|
||||
@@ -3741,22 +3741,22 @@ msgstr ""
|
||||
msgid "Fitness"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:421
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:420
|
||||
msgid "Flexible"
|
||||
msgstr ""
|
||||
|
||||
@@ -3798,7 +3798,7 @@ msgstr ""
|
||||
msgid "Follow account"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
|
||||
#: 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:232
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
|
||||
msgid "Follow all accounts"
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3822,7 @@ msgctxt "action"
|
||||
msgid "Follow back"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120
|
||||
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:293
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300
|
||||
#: 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:348
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:347
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Let's go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:409
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:408
|
||||
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:341
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:350
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:349
|
||||
#: 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:405
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:404
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
@@ -6678,7 +6678,7 @@ msgctxt "toast"
|
||||
msgid "Profile updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:391
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:390
|
||||
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:209
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
|
||||
#: 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/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:222
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: 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:219
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99
|
||||
msgid "Skip to next step"
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108
|
||||
msgid "Skip this flow"
|
||||
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:176
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183
|
||||
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:129
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48
|
||||
msgid "Suggested for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr ""
|
||||
msgid "Suggestive"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunset"
|
||||
msgstr ""
|
||||
@@ -10066,7 +10066,7 @@ msgstr ""
|
||||
msgid "We have sent another verification email to <0>{0}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:383
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:382
|
||||
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:380
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:379
|
||||
msgid "You're ready to go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -10880,7 +10880,7 @@ msgstr ""
|
||||
msgid "Your posts were sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:395
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:394
|
||||
msgid "Your posts, likes, and blocks are public. Mutes are private."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ast\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr ""
|
||||
msgid "Books"
|
||||
msgstr "Llibros"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Restolar más cuentes na páxina «Esploración»"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Restolar más feeds na páxina «Esploración»"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Restolar más suxerencies"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Midnight"
|
||||
msgstr ""
|
||||
@@ -7630,8 +7630,8 @@ msgstr ""
|
||||
msgid "See jobs at Bluesky"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr ""
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: az\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:32\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:146
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153
|
||||
#: 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:168
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75
|
||||
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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:425
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:424
|
||||
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:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:438
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:339
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:437
|
||||
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:246
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123
|
||||
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:243
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120
|
||||
#: 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:118
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125
|
||||
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:346
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:345
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Finalizing"
|
||||
msgstr ""
|
||||
|
||||
@@ -3741,22 +3741,22 @@ msgstr ""
|
||||
msgid "Fitness"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:421
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:420
|
||||
msgid "Flexible"
|
||||
msgstr ""
|
||||
|
||||
@@ -3798,7 +3798,7 @@ msgstr ""
|
||||
msgid "Follow account"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
|
||||
#: 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:232
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
|
||||
msgid "Follow all accounts"
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3822,7 @@ msgctxt "action"
|
||||
msgid "Follow back"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120
|
||||
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:293
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300
|
||||
#: 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:348
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:347
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Let's go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:409
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:408
|
||||
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:341
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:350
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:349
|
||||
#: 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:405
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:404
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
@@ -6678,7 +6678,7 @@ msgctxt "toast"
|
||||
msgid "Profile updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:391
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:390
|
||||
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:209
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
|
||||
#: 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/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:222
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: 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:219
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99
|
||||
msgid "Skip to next step"
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108
|
||||
msgid "Skip this flow"
|
||||
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:176
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183
|
||||
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:129
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48
|
||||
msgid "Suggested for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr ""
|
||||
msgid "Suggestive"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunset"
|
||||
msgstr ""
|
||||
@@ -10066,7 +10066,7 @@ msgstr ""
|
||||
msgid "We have sent another verification email to <0>{0}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:383
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:382
|
||||
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:380
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:379
|
||||
msgid "You're ready to go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -10880,7 +10880,7 @@ msgstr ""
|
||||
msgid "Your posts were sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:395
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:394
|
||||
msgid "Your posts, likes, and blocks are public. Mutes are private."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bn\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:146
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153
|
||||
#: 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:168
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75
|
||||
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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:425
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:424
|
||||
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:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:438
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:339
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:437
|
||||
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:246
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123
|
||||
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:243
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120
|
||||
#: 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:118
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125
|
||||
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:346
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:345
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Finalizing"
|
||||
msgstr ""
|
||||
|
||||
@@ -3741,22 +3741,22 @@ msgstr ""
|
||||
msgid "Fitness"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:421
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:420
|
||||
msgid "Flexible"
|
||||
msgstr ""
|
||||
|
||||
@@ -3798,7 +3798,7 @@ msgstr ""
|
||||
msgid "Follow account"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
|
||||
#: 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:232
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
|
||||
msgid "Follow all accounts"
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3822,7 @@ msgctxt "action"
|
||||
msgid "Follow back"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120
|
||||
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:293
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300
|
||||
#: 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:348
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:347
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Let's go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:409
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:408
|
||||
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:341
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:350
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:349
|
||||
#: 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:405
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:404
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
@@ -6678,7 +6678,7 @@ msgctxt "toast"
|
||||
msgid "Profile updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:391
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:390
|
||||
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:209
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
|
||||
#: 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/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:222
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: 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:219
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99
|
||||
msgid "Skip to next step"
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108
|
||||
msgid "Skip this flow"
|
||||
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:176
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183
|
||||
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:129
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48
|
||||
msgid "Suggested for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr ""
|
||||
msgid "Suggestive"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunset"
|
||||
msgstr ""
|
||||
@@ -10066,7 +10066,7 @@ msgstr ""
|
||||
msgid "We have sent another verification email to <0>{0}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:383
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:382
|
||||
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:380
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:379
|
||||
msgid "You're ready to go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -10880,7 +10880,7 @@ msgstr ""
|
||||
msgid "Your posts were sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:395
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:394
|
||||
msgid "Your posts, likes, and blocks are public. Mutes are private."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Explora més comptes a la pàgina Explora"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Explora més canals a la pàgina Explora"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Explora més recomanacions"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Negre pla"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Blau pla"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Salta al pas següent"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Alba"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: cy\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:32\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Porwch ragor o gyfrifon ar y dudalen Archwilio"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Porwch ragor o ffrydiau ar y dudalen Archwilio"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Pori ragor o awgrymiadau"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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 "Cyllid"
|
||||
msgstr ""
|
||||
|
||||
#: 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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Du Disglein"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Glas Disglein"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Mynd i'r cam nesaf"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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 "Ymddiheuriadau, does dim modd i ni lwytho awgrymiadau cyfrifon ar hyn o bryd."
|
||||
msgstr ""
|
||||
|
||||
#: 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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Codiad Haul"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Bu anhawster wrth nôl postiadau. Tapiwch yma i geisio eto."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: da\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Se flere konti under Udforsk"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Se flere feeds under Udforsk"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Se flere forslag"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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 "fx Spammere"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357
|
||||
msgid "e.g. The posters who never miss."
|
||||
msgstr "fx Profiler, der altid rammer plet."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358
|
||||
msgid "e.g. Users that repeatedly reply with ads."
|
||||
msgstr "fx Brugere, der laver for mange reklameopslag."
|
||||
msgstr ""
|
||||
|
||||
#: 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 "Økonomi"
|
||||
msgstr ""
|
||||
|
||||
#: 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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Flad sort"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Flad blå"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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 "Gå til feed"
|
||||
msgstr ""
|
||||
|
||||
#: 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 "Ugyldige interaktionsindstillinger."
|
||||
msgstr ""
|
||||
|
||||
#: 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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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 "Videredelt af {reposter}"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/com/posts/PostFeedReason.tsx:91
|
||||
msgid "Reposted by <0><1>{reposter}</1></0>"
|
||||
msgstr "Videredelt af <0><1>{reposter}</1></0>"
|
||||
msgstr ""
|
||||
|
||||
#: 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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Spring til næste trin"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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 "Beklager, vi kan ikke indlæse forslag lige nu."
|
||||
msgstr ""
|
||||
|
||||
#: 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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Solopgang"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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 "Du kan skjule højst {MAX_HIDDEN_REPLIES} svar."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Finde weitere Accounts auf der Entdecken-Seite"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Weitere Vorschläge anzeigen"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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 "Finanzen"
|
||||
msgstr ""
|
||||
|
||||
#: 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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Flaches Schwarz"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Flaches Blau"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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 "Zum Feed gehen"
|
||||
msgstr ""
|
||||
|
||||
#: 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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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 "Repostet von {reposter}"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/com/posts/PostFeedReason.tsx:91
|
||||
msgid "Reposted by <0><1>{reposter}</1></0>"
|
||||
msgstr "Repostet von <0><1>{reposter}</1></0>"
|
||||
msgstr ""
|
||||
|
||||
#: 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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Zum nächsten Schritt springen"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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 "Leider können derzeit keine Account-Vorschläge geladen werden."
|
||||
msgstr ""
|
||||
|
||||
#: 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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Sonnenaufgang"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: el\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr "Θολώστε εικόνες και φιλτράρετε από τις
|
||||
msgid "Books"
|
||||
msgstr "Βιβλία"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Περιηγηθείτε σε περισσότερους λογαριασμούς στην σελίδα Εξερεύνησης"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Περιηγηθείτε σε περισσότερες ροές στην σελίδα Εξερεύνησης"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Περιηγηθείτε σε περισσότερες προτάσεις"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "Περιηγηθείτε σε περισσότερες προτάσεις στην σελίδα Εξερεύνησης"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "Τέλος"
|
||||
msgid "Fitness"
|
||||
msgstr "Φυσική κατάσταση"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr "Μηνύματα"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Ανάπτυξη λογισμικού"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "Κάποιες άλλες ροές που μπορεί να σας αρέσουν"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "Προτεινόμενα για εσάς"
|
||||
msgid "Suggestive"
|
||||
msgstr "Προκλητικό"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: en_GB\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Browse more accounts on the Explore page"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Browse more feeds on the Explore page"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Browse more suggestions"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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 "Finance"
|
||||
msgstr ""
|
||||
|
||||
#: 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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Flat Black"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Flat Blue"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Skip to next step"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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 "Sorry, we're unable to load account suggestions at this time."
|
||||
msgstr ""
|
||||
|
||||
#: 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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Sunrise"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "There was an issue fetching posts. Tap here to try again."
|
||||
|
||||
|
||||
@@ -1508,20 +1508,20 @@ msgstr ""
|
||||
msgid "Books"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr ""
|
||||
|
||||
@@ -7625,8 +7625,8 @@ msgstr ""
|
||||
msgid "See jobs at Bluesky"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8259,7 +8259,7 @@ msgstr ""
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: eo\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Foliumi pli da kontoj sur la paĝo Esplori"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Foliumi pli da fluoj sur la paĝo Esplori"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Foliumi pli da proponoj"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Plata nigra"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Plata blua"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Preterpasi al sekva paŝo"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Sunleviĝo"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Explorar más cuentas en la página Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Ver más feeds en la página Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Explorar más sugerencias"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Negro plano"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Azul plano"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Amanecer"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: eu\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Nabigatu kontu gehiagotatik Arakatu orrian"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Nabigatu feed gehiagotatik Arakatu orrian"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Nabigatu proposamen gehiagotatik"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Beltz laua"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Urdin laua"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Hurrengo urratsera joan"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Egunsentia"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Selaa lisää tilejä Explore-sivulla"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Selaa lisää syötteitä Explore-sivulla"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Selaa lisää ehdotuksia"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Ohjelmistokehitys"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Parcourir d’autres comptes sur la page « Explorer »"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Parcourir d’autres fils d’actu sur la page « Explorer »"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Parcourir d’autres suggestions"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Noir plat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Bleu plat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Sauter à l’étape d’après"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Lever du soleil"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fy\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Blêdzje troch brûkers op de ûntdekkingsside"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Blêdzje troch feeds op de ûntdekkingsside"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Blêdzje troch mear suggestjes"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Plat swart"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Plat blau"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Sinneopgong"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ga\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
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:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
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:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Tabhair súil ar thuilleadh moltaí"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Forbairt Bogearraí"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: gd\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Rùraich barrachd chunntasan air an duilleag “Rùraich”"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Rùraich barrachd inbhirean air an duilleag “Rùraich”"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Brabhsaich barrachd mholaidhean"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Dubh gun chaisead"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Gorm gun chaisead"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Èirigh na grèine"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: gl\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Explorar máis contas"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Revisar máis canles"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Explorar máis suxerencias"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Programación"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hi\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr "छवि धुंधला करें और फ़ीड से फ़ि
|
||||
msgid "Books"
|
||||
msgstr "किताबें"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "एक्सप्लोर पृष्ठ पर और खाते देखें"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "एक्सप्लोर पृष्ठ पर और सूची देखें"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "और सुझाव देखें"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "एक्सप्लोर पृष्ठ पर और सुझाव देखें"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "समाप्त करें"
|
||||
msgid "Fitness"
|
||||
msgstr "स्वास्थ्य"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr "संदेश"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "सॉफ़्टवेयर डेवलपर"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "कुछ अन्य फ़ीड जो आपको शायद पसंद आएँ"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "आपके लिए सुझाव"
|
||||
msgid "Suggestive"
|
||||
msgstr "भड़काऊ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "További fiókokat a Felfedezés oldalon találsz"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "További hírfolyamokat a Felfedezés oldalon találsz"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "További javaslatok"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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</0> for more information."
|
||||
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</0> (angol nyelven)."
|
||||
msgstr ""
|
||||
|
||||
#: 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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Egyszerű Fekete"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Egyszerű Kék"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Lépés kihagyása"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Alkonyat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ia\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:32\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Percurre altere contos super le pagina Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Percurre altere canales super le pagina Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Percurrer plus suggestiones"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Nigro"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Blau"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Levar del sol"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: id\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Jelajahi akun lainnya pada halaman Jelajah"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Jelajahi feed lainnya pada halaman Jelajah"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Jelajahi saran lainnya"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Hitam Flat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Biru Flat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Terbit"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Scopri altri account nella pagina Esplora"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Scopri nuovi feed nella pagina Esplora"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Scopri nuovi suggerimenti"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Nero"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Blu"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Vai al passo successivo"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Alba"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr "Bluesky Classic™"
|
||||
@@ -1513,20 +1513,20 @@ msgstr "画像のぼかしとフィードからのフィルタリング"
|
||||
msgid "Books"
|
||||
msgstr "書籍"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "検索ページでさらにアカウントを見る"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "検索ページでさらにフィードを見る"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "さらにおすすめを見る"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "フラット ブラック"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "フラット ブルー"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr "フラット ホワイト"
|
||||
@@ -5197,7 +5197,7 @@ msgstr "メッセージのオプション"
|
||||
msgid "Messages"
|
||||
msgstr "メッセージ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "サンライズ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: kab\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:146
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153
|
||||
#: 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:168
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75
|
||||
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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:425
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:424
|
||||
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:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:438
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:339
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:437
|
||||
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:246
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123
|
||||
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:243
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120
|
||||
#: 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:118
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125
|
||||
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:346
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:345
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Finalizing"
|
||||
msgstr ""
|
||||
|
||||
@@ -3741,22 +3741,22 @@ msgstr ""
|
||||
msgid "Fitness"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:421
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:420
|
||||
msgid "Flexible"
|
||||
msgstr ""
|
||||
|
||||
@@ -3798,7 +3798,7 @@ msgstr ""
|
||||
msgid "Follow account"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
|
||||
#: 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:232
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
|
||||
msgid "Follow all accounts"
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3822,7 @@ msgctxt "action"
|
||||
msgid "Follow back"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120
|
||||
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:293
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300
|
||||
#: 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:348
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:347
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Let's go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:409
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:408
|
||||
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:341
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:350
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:349
|
||||
#: 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:405
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:404
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
@@ -6678,7 +6678,7 @@ msgctxt "toast"
|
||||
msgid "Profile updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:391
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:390
|
||||
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:209
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
|
||||
#: 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/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:222
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: 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:219
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99
|
||||
msgid "Skip to next step"
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108
|
||||
msgid "Skip this flow"
|
||||
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:176
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183
|
||||
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:129
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48
|
||||
msgid "Suggested for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr ""
|
||||
msgid "Suggestive"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunset"
|
||||
msgstr ""
|
||||
@@ -10066,7 +10066,7 @@ msgstr ""
|
||||
msgid "We have sent another verification email to <0>{0}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:383
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:382
|
||||
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:380
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:379
|
||||
msgid "You're ready to go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -10880,7 +10880,7 @@ msgstr ""
|
||||
msgid "Your posts were sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:395
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:394
|
||||
msgid "Your posts, likes, and blocks are public. Mutes are private."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: km\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr "រូបភាពព្រិលៗ និងត្រងចេញព
|
||||
msgid "Books"
|
||||
msgstr "សៀវភៅ"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "រកមើលគណនីច្រើនទៀតនៅលើទំព័ររុករក"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "រកមើលព័ត៌មានបន្ថែមនៅលើទំព័ររុករក"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "រកមើលការណែនាំបន្ថែម"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "រកមើលការណែនាំបន្ថែមនៅលើទំព័ររុករក"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "បញ្ចប់"
|
||||
msgid "Fitness"
|
||||
msgstr "សម្បទា"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr "សារ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "កម្មវិធី Dev"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "មតិព័ត៌មានផ្សេងទៀតដែលអ្នកប្រហែលជាចូលចិត្ត"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "បានណែនាំសម្រាប់អ្នក"
|
||||
msgid "Suggestive"
|
||||
msgstr "ណែនាំ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr "Bluesky Classic™"
|
||||
@@ -1513,20 +1513,20 @@ msgstr "이미지 블러 및 피드에서 필터링"
|
||||
msgid "Books"
|
||||
msgstr "책"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "탐색 페이지에서 더 많은 계정 찾아보기"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "탐색 페이지에서 더 많은 피드 찾아보기"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "더 많은 추천 찾아보기"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "탐색 페이지에서 더 많은 추천 찾아보기"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "완료"
|
||||
msgid "Fitness"
|
||||
msgstr "건강"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "플랫 블랙"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "플랫 블루"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr "플랫 화이트"
|
||||
@@ -5197,7 +5197,7 @@ msgstr "메시지 옵션"
|
||||
msgid "Messages"
|
||||
msgstr "메시지"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "좋아할 만한 다른 피드"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "나를 위한 추천"
|
||||
msgid "Suggestive"
|
||||
msgstr "외설적"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "일출"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lt\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:146
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:153
|
||||
#: 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:168
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:66
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:175
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:75
|
||||
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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:425
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:424
|
||||
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:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:438
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:339
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:437
|
||||
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:246
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:253
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:123
|
||||
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:243
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:250
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:120
|
||||
#: 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:118
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:125
|
||||
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:346
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:345
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Finalizing"
|
||||
msgstr ""
|
||||
|
||||
@@ -3741,22 +3741,22 @@ msgstr ""
|
||||
msgid "Fitness"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:421
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:420
|
||||
msgid "Flexible"
|
||||
msgstr ""
|
||||
|
||||
@@ -3798,7 +3798,7 @@ msgstr ""
|
||||
msgid "Follow account"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:235
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:242
|
||||
#: 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:232
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:239
|
||||
msgid "Follow all accounts"
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3822,7 @@ msgctxt "action"
|
||||
msgid "Follow back"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:113
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:120
|
||||
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:293
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:300
|
||||
#: 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:348
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:441
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:347
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:440
|
||||
msgid "Let's go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:409
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:408
|
||||
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:341
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:350
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:340
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:349
|
||||
#: 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:405
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:404
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
@@ -6678,7 +6678,7 @@ msgctxt "toast"
|
||||
msgid "Profile updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:391
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:390
|
||||
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:209
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:212
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:89
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
|
||||
#: 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/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:222
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:229
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:111
|
||||
#: 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:219
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:99
|
||||
msgid "Skip to next step"
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:226
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:108
|
||||
msgid "Skip this flow"
|
||||
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:176
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:183
|
||||
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:129
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:39
|
||||
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:136
|
||||
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:48
|
||||
msgid "Suggested for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr ""
|
||||
msgid "Suggestive"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunset"
|
||||
msgstr ""
|
||||
@@ -10066,7 +10066,7 @@ msgstr ""
|
||||
msgid "We have sent another verification email to <0>{0}</0>."
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:383
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:382
|
||||
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:380
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:379
|
||||
msgid "You're ready to go!"
|
||||
msgstr ""
|
||||
|
||||
@@ -10880,7 +10880,7 @@ msgstr ""
|
||||
msgid "Your posts were sent"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:395
|
||||
#: src/screens/Onboarding/StepFinished/index.tsx:394
|
||||
msgid "Your posts, likes, and blocks are public. Mutes are private."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ne\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr "चित्रहरू धुंधला गर्नुहोस्
|
||||
msgid "Books"
|
||||
msgstr "पुस्तकहरू"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "एक्सप्लोर पृष्ठमा थप खाता ब्राउज गर्नुहोस्"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "एक्सप्लोर पृष्ठमा थप फिड ब्राउज गर्नुहोस्"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "थप सुझावहरू ब्राउज गर्नुहोस्"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "एक्सप्लोर पृष्ठमा थप सुझावहरू ब्राउज गर्नुहोस्"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "समाप्त"
|
||||
msgid "Fitness"
|
||||
msgstr "फिटनेस"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr "सन्देशहरू"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "सॉफ़्टवेयर विकासकर्ता"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "तपाईंलाई मन पर्ने अन्य फीडहरू"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "तपाईंका लागि सुझाव गरिएको"
|
||||
msgid "Suggestive"
|
||||
msgstr "सुझावात्मक"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: nl\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Blader door meer accounts op de pagina Verkennen"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Blader door meer feeds op de pagina Verkennen"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Blader door meer suggesties"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Softwareontwikkelaar"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Wyświetl więcej kont na stronie Eksploruj"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Wyświetl więcej kanałów na stronie Eksploruj"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Wyświetl więcej polecanych"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Programowanie"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Navegue por mais contas na página Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Navegue por mais feeds na página Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Navegar por mais sugestões"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Preto Sólido"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Azul Sólido"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Alvorada"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Procure mais contas na página Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Procure mais feeds na página Explorar"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Procurar mais sugestões"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Preto sólido"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Azul sólido"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Saltar para o próximo passo"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Nascer do sol"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ro\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Răsfoiți mai multe conturi pe pagina Explorare"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Răsfoiți mai multe fluxuri pe pagina Explorare"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Răsfoiți mai multe sugestii"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Negru Plat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Albastru Plat"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Omiteți la pasul următor"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Răsărit"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ru\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr "Bluesky Classic™"
|
||||
@@ -1513,20 +1513,20 @@ msgstr "Размыть изображения и отфильтровать их
|
||||
msgid "Books"
|
||||
msgstr "Книги"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Просмотреть другие учётные записи на странице Explore"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Просмотреть другие ленты на странице Explore"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Просмотреть другие предложения"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "Просмотрите другие предложения на странице Explore"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "Финиш"
|
||||
msgid "Fitness"
|
||||
msgstr "Фитнес"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Плоский черный"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Плоский синий"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr "Плоский белый"
|
||||
@@ -5197,7 +5197,7 @@ msgstr "Параметры сообщений"
|
||||
msgid "Messages"
|
||||
msgstr "Сообщения"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr "Подробнее"
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Разрабочик программного обеспечения"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr "Некоторые из ваших верификаций недействительны."
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "Некоторые другие ленты, которые могут вам понравиться"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "Предложения для вас"
|
||||
msgid "Suggestive"
|
||||
msgstr "Неприличный"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Восход"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Bläddra bland fler konton på Utforska-sidan"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Bläddra bland fler flöden på Utforska-sidan"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Bläddra bland fler förslag"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Matt svart"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Matt blå"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Hoppa till nästa steg"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Soluppgång"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: th\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr "เบลอภาพและกรองออกจากฟีด"
|
||||
msgid "Books"
|
||||
msgstr "หนังสือ"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "เรียกดูบัญชีเพิ่มเติมในหน้าค้นหา"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "เรียกดูฟีดเพิ่มเติมในหน้าค้นหา"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "เรียกดูข้อเสนอเพิ่มเติม"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "เรียกดูข้อเสนอเพิ่มเติมในหน้าค้นหา"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "เสร็จสิ้น"
|
||||
msgid "Fitness"
|
||||
msgstr "ฟิตเนส"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr "ข้อความ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "นักพัฒนาซอฟต์แวร์"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "ฟีดอื่น ๆ ที่คุณอาจชอบ"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "แนะนำสำหรับคุณ"
|
||||
msgid "Suggestive"
|
||||
msgstr "ชี้นำ"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: tr\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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 "Bu dil önerisini kabul et"
|
||||
msgstr ""
|
||||
|
||||
#: 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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Keşfet sayfasında daha fazla kullanıcı bul"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Keşfet sayfasında daha fazla akış bul"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Daha çok öneriye göz at"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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 "örn: Spamcılar"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:357
|
||||
msgid "e.g. The posters who never miss."
|
||||
msgstr "örn: Asla kaçırmayan göndericiler."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:358
|
||||
msgid "e.g. Users that repeatedly reply with ads."
|
||||
msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar."
|
||||
msgstr ""
|
||||
|
||||
#: 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 "Finans"
|
||||
msgstr ""
|
||||
|
||||
#: 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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Düz Siyah"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Düz Mavi"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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 "Akışa git"
|
||||
msgstr ""
|
||||
|
||||
#: 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 "Geçersiz etkileşim ayarları."
|
||||
msgstr ""
|
||||
|
||||
#: 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 "Liste avatarı"
|
||||
msgstr ""
|
||||
|
||||
#: 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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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 "{reposter} tarafından yeniden gönderilmiş"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/com/posts/PostFeedReason.tsx:91
|
||||
msgid "Reposted by <0><1>{reposter}</1></0>"
|
||||
msgstr "<0><1>{reposter}</1></0> tarafından yeniden gönderilmiş"
|
||||
msgstr ""
|
||||
|
||||
#: 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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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 "Sonraki adıma atla"
|
||||
msgstr ""
|
||||
|
||||
#: 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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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 "Üzgünüz, hesap önerilerini şu anda yükleyemiyoruz."
|
||||
msgstr ""
|
||||
|
||||
#: 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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Gün doğumu"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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}</0>?"
|
||||
msgstr "Yanıtlamakta olduğunuz gönderi, yazarı tarafından {suggestedLanguageName} dilinde işaretlenmiş. Siz de <0>{suggestedLanguageName}</0> dilinde yanıtlamak ister misiniz?"
|
||||
msgstr ""
|
||||
|
||||
#: 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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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 "En fazla {MAX_HIDDEN_REPLIES} yanıt gizleyebilirsiniz."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uk\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:32\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr ""
|
||||
@@ -1513,20 +1513,20 @@ msgstr "Розмити зображення і фільтрувати їх зі
|
||||
msgid "Books"
|
||||
msgstr "Книги"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "Переглянути більше облікових записів на сторінці Відкриття"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "Переглянути більше стрічок на сторінці Відкриття"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Переглянути більше пропозицій"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "Переглянути більше запропонованого на сторінці Відкриття"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "Завершити"
|
||||
msgid "Fitness"
|
||||
msgstr "Фітнес"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr ""
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
msgid "Messages"
|
||||
msgstr "Повідомлення"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr ""
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "Розробка П/З"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "Інші стрічки, які можуть вам сподобатися"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "Пропоновано для вас"
|
||||
msgid "Suggestive"
|
||||
msgstr "Непристойний"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr ""
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: vi\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:27\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:32\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
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:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
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:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
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:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "Xem thêm đề xuất"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
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:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "Thuần đen"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "Thuần xanh"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
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:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
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:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "Bình minh"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
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."
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr "Bluesky 经典™"
|
||||
@@ -1513,20 +1513,20 @@ msgstr "模糊化图片并从动态源中过滤"
|
||||
msgid "Books"
|
||||
msgstr "书籍"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "在探索页面浏览更多账户"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "在探索页面浏览更多动态源"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "浏览更多建议"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "在探索页面浏览更多建议"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "完成"
|
||||
msgid "Fitness"
|
||||
msgstr "健康"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "哑光黑"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "哑光蓝"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr "哑光白"
|
||||
@@ -5197,7 +5197,7 @@ msgstr "私信选项"
|
||||
msgid "Messages"
|
||||
msgstr "私信"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr "浏览更多"
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "程序开发"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr "你当前被授予的部分认证无效。"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "其他你可能喜欢的动态源"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "为你推荐"
|
||||
msgid "Suggestive"
|
||||
msgstr "性暗示"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "日出"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "刷新帖文时出现问题,点击重试。"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr "Bluesky Classic™"
|
||||
@@ -1513,20 +1513,20 @@ msgstr "模糊圖片同埋喺動態源度篩選"
|
||||
msgid "Books"
|
||||
msgstr "書"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "喺探索頁面瀏覽更多帳號"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "喺探索頁面瀏覽更多動態源"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "瀏覽更多建議"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "喺探索頁面瀏覽更多建議"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "攪掂"
|
||||
msgid "Fitness"
|
||||
msgstr "健康"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "啞黑"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "啞藍"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr "啞白"
|
||||
@@ -5197,7 +5197,7 @@ msgstr "訊息選項"
|
||||
msgid "Messages"
|
||||
msgstr "傾偈"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
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:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "其他可能都會啱你心水嘅動態源"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "估你心水"
|
||||
msgid "Suggestive"
|
||||
msgstr "性暗示"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "日出"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "攞緊帖文嗰陣出咗問題,撳呢度試多次。"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-10-22 19:26\n"
|
||||
"PO-Revision-Date: 2025-10-16 16:31\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:62
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:58
|
||||
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:179
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:175
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Bluesky Classic™"
|
||||
msgstr "Bluesky 經典™"
|
||||
@@ -1513,20 +1513,20 @@ msgstr "模糊圖片,並從動態中排除內容"
|
||||
msgid "Books"
|
||||
msgstr "書籍"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:436
|
||||
#: src/components/FeedInterstitials.tsx:431
|
||||
msgid "Browse more accounts on the Explore page"
|
||||
msgstr "在探索頁面瀏覽更多帳號"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:569
|
||||
#: src/components/FeedInterstitials.tsx:559
|
||||
msgid "Browse more feeds on the Explore page"
|
||||
msgstr "在探索頁面瀏覽更多動態源"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:550
|
||||
#: src/components/FeedInterstitials.tsx:553
|
||||
#: src/components/FeedInterstitials.tsx:540
|
||||
#: src/components/FeedInterstitials.tsx:543
|
||||
msgid "Browse more suggestions"
|
||||
msgstr "瀏覽更多建議"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:578
|
||||
#: src/components/FeedInterstitials.tsx:568
|
||||
msgid "Browse more suggestions on the Explore page"
|
||||
msgstr "在探索頁面瀏覽更多建議"
|
||||
|
||||
@@ -3741,17 +3741,17 @@ msgstr "完成"
|
||||
msgid "Fitness"
|
||||
msgstr "健康"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:163
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:159
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Black"
|
||||
msgstr "消光黑"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:131
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:127
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat Blue"
|
||||
msgstr "消光藍"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:147
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:143
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Flat White"
|
||||
msgstr "消光白"
|
||||
@@ -5197,7 +5197,7 @@ msgstr "訊息選項"
|
||||
msgid "Messages"
|
||||
msgstr "訊息"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:115
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:111
|
||||
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:399
|
||||
#: src/components/FeedInterstitials.tsx:455
|
||||
#: src/components/FeedInterstitials.tsx:394
|
||||
#: src/components/FeedInterstitials.tsx:445
|
||||
msgid "See more"
|
||||
msgstr "檢視更多"
|
||||
|
||||
@@ -8264,7 +8264,7 @@ msgstr "軟體開發"
|
||||
msgid "Some of your verifications are invalid."
|
||||
msgstr "您目前被授予的部分驗證無效。"
|
||||
|
||||
#: src/components/FeedInterstitials.tsx:532
|
||||
#: src/components/FeedInterstitials.tsx:522
|
||||
msgid "Some other feeds you might like"
|
||||
msgstr "其他您可能喜歡的動態源"
|
||||
|
||||
@@ -8511,12 +8511,12 @@ msgstr "為您推薦"
|
||||
msgid "Suggestive"
|
||||
msgstr "性暗示"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:82
|
||||
msgctxt "Name of app icon variant"
|
||||
msgid "Sunrise"
|
||||
msgstr "日出"
|
||||
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:100
|
||||
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:96
|
||||
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:712
|
||||
#: src/view/com/posts/PostFeed.tsx:709
|
||||
msgid "There was an issue fetching posts. Tap here to try again."
|
||||
msgstr "取得貼文時發生問題,按這裡重試。"
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
export * from '@react-native-firebase/crashlytics'
|
||||
@@ -0,0 +1,3 @@
|
||||
export const getCrashlytics = () => {}
|
||||
export const log = () => {}
|
||||
export const recordError = () => {}
|
||||
+5
-6
@@ -3,9 +3,8 @@ import {nanoid} from 'nanoid/non-secure'
|
||||
import {logEvent} from '#/lib/statsig/statsig'
|
||||
import {add} from '#/logger/logDump'
|
||||
import {type MetricEvents} from '#/logger/metrics'
|
||||
import {bitdriftTransport} from '#/logger/transports/bitdrift'
|
||||
import {consoleTransport} from '#/logger/transports/console'
|
||||
import {sentryTransport} from '#/logger/transports/sentry'
|
||||
import {crashlyticsTransport} from '#/logger/transports/crashlytics'
|
||||
import {
|
||||
LogContext,
|
||||
LogLevel,
|
||||
@@ -19,15 +18,15 @@ import {ENV} from '#/env'
|
||||
const TRANSPORTS: Transport[] = (function configureTransports() {
|
||||
switch (ENV) {
|
||||
case 'production': {
|
||||
return [sentryTransport, isNative && bitdriftTransport].filter(
|
||||
Boolean,
|
||||
) as Transport[]
|
||||
return [isNative && crashlyticsTransport].filter(Boolean) as Transport[]
|
||||
}
|
||||
case 'test': {
|
||||
return []
|
||||
}
|
||||
default: {
|
||||
return [consoleTransport]
|
||||
return [consoleTransport, isNative && crashlyticsTransport].filter(
|
||||
Boolean,
|
||||
) as Transport[]
|
||||
}
|
||||
}
|
||||
})()
|
||||
|
||||
@@ -297,14 +297,6 @@ export type MetricEvents = {
|
||||
recId?: number
|
||||
position: number
|
||||
}
|
||||
'suggestedUser:seeMore': {
|
||||
logContext:
|
||||
| 'Explore'
|
||||
| 'InterstitialDiscover'
|
||||
| 'InterstitialProfile'
|
||||
| 'Profile'
|
||||
| 'Onboarding'
|
||||
}
|
||||
'profile:unfollow': {
|
||||
logContext:
|
||||
| 'RecommendedFollowsItem'
|
||||
|
||||
@@ -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,
|
||||
})
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
import {getCrashlytics, log, recordError} from '#/logger/crashlytics/lib'
|
||||
import {LogLevel, type Transport} from '#/logger/types'
|
||||
import {prepareMetadata} from '#/logger/util'
|
||||
|
||||
export const crashlyticsTransport: Transport = (
|
||||
level,
|
||||
context,
|
||||
message,
|
||||
metadata,
|
||||
) => {
|
||||
if (level === LogLevel.Error) {
|
||||
const payload =
|
||||
message instanceof Error ? message : new Error(message.toString())
|
||||
recordError(getCrashlytics(), payload)
|
||||
} else {
|
||||
let payload = `(${context ?? 'default'}) ${message.toString()}`
|
||||
payload += JSON.stringify(prepareMetadata(metadata))
|
||||
log(getCrashlytics(), payload)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
import {getCrashlytics, log, recordError} from '#/logger/crashlytics/lib'
|
||||
import {LogLevel, type Transport} from '#/logger/types'
|
||||
import {prepareMetadata} from '#/logger/util'
|
||||
|
||||
export const crashlyticsTransport: Transport = (
|
||||
level,
|
||||
context,
|
||||
message,
|
||||
metadata,
|
||||
) => {
|
||||
if (level === LogLevel.Error) {
|
||||
const payload =
|
||||
message instanceof Error ? message : new Error(message.toString())
|
||||
recordError(getCrashlytics(), payload)
|
||||
} else {
|
||||
let payload = `(${context ?? 'default'}) ${message.toString()}`
|
||||
payload += JSON.stringify(prepareMetadata(metadata))
|
||||
log(getCrashlytics(), payload)
|
||||
}
|
||||
}
|
||||
@@ -11,6 +11,7 @@ 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,
|
||||
@@ -128,7 +129,11 @@ export function useFeedFeedback(
|
||||
},
|
||||
},
|
||||
)
|
||||
.catch(() => {}) // ignore upstream errors
|
||||
.catch((e: any) => {
|
||||
if (!isNetworkError(e)) {
|
||||
logger.warn('Failed to send feed interactions', {error: e})
|
||||
}
|
||||
})
|
||||
|
||||
// Send to Statsig
|
||||
if (aggregatedStats.current === null) {
|
||||
|
||||
@@ -30,6 +30,7 @@ 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'
|
||||
@@ -207,27 +208,44 @@ export function usePostFeedQuery(
|
||||
cursor: undefined,
|
||||
}
|
||||
|
||||
const res = await api.fetch({cursor, limit: fetchLimit})
|
||||
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,
|
||||
)
|
||||
}
|
||||
/*
|
||||
* 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(),
|
||||
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,
|
||||
})
|
||||
}
|
||||
|
||||
throw e
|
||||
}
|
||||
},
|
||||
initialPageParam: undefined,
|
||||
|
||||
@@ -23,6 +23,7 @@ import {
|
||||
import {tryFetchGates} from '#/lib/statsig/statsig'
|
||||
import {getAge} from '#/lib/strings/time'
|
||||
import {logger} from '#/logger'
|
||||
import {getCrashlytics, setUserId} from '#/logger/crashlytics/lib'
|
||||
import {snoozeEmailConfirmationPrompt} from '#/state/shell/reminders'
|
||||
import {emitNetworkConfirmed, emitNetworkLost} from '../events'
|
||||
import {addSessionErrorLog} from './logging'
|
||||
@@ -79,6 +80,10 @@ export async function createAgentAndResume(
|
||||
|
||||
agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
||||
|
||||
if (agent.sessionManager.did) {
|
||||
setUserId(getCrashlytics(), agent.sessionManager.did)
|
||||
}
|
||||
|
||||
return agent.prepare(gates, moderation, onSessionChange)
|
||||
}
|
||||
|
||||
@@ -114,6 +119,10 @@ export async function createAgentAndLogin(
|
||||
|
||||
agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
||||
|
||||
if (agent.sessionManager.did) {
|
||||
setUserId(getCrashlytics(), agent.sessionManager.did)
|
||||
}
|
||||
|
||||
return agent.prepare(gates, moderation, onSessionChange)
|
||||
}
|
||||
|
||||
|
||||
@@ -32,7 +32,6 @@ 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'
|
||||
@@ -291,9 +290,7 @@ let PostFeed = ({
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
if (!isNetworkError(e)) {
|
||||
logger.error('Poll latest failed', {feed, message: String(e)})
|
||||
}
|
||||
logger.error('Poll latest failed', {feed, message: String(e)})
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ import {View} from 'react-native'
|
||||
import {useNavigation} from '@react-navigation/native'
|
||||
|
||||
import {type NavigationProp} from '#/lib/routes/types'
|
||||
import {Sentry} from '#/logger/sentry/lib'
|
||||
import {crash, getCrashlytics} from '#/logger/crashlytics/lib'
|
||||
import {useSetThemePrefs} from '#/state/shell'
|
||||
import {ListContained} from '#/view/screens/Storybook/ListContained'
|
||||
import {atoms as a, ThemeProvider} from '#/alf'
|
||||
@@ -96,12 +96,13 @@ function StorybookInner() {
|
||||
testID="sharedPrefsTestOpenBtn">
|
||||
<ButtonText>Open Shared Prefs Tester</ButtonText>
|
||||
</Button>
|
||||
|
||||
<Button
|
||||
color="negative"
|
||||
size="large"
|
||||
onPress={() => Sentry.nativeCrash()}
|
||||
onPress={() => crash(getCrashlytics())}
|
||||
label="crash">
|
||||
<ButtonText>Sentry Crash</ButtonText>
|
||||
<ButtonText>Crashlytics Test</ButtonText>
|
||||
</Button>
|
||||
|
||||
<ThemeProvider theme="light">
|
||||
|
||||
@@ -3633,14 +3633,6 @@
|
||||
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
|
||||
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
|
||||
|
||||
"@bitdrift/react-native@^0.6.8":
|
||||
version "0.6.8"
|
||||
resolved "https://registry.yarnpkg.com/@bitdrift/react-native/-/react-native-0.6.8.tgz#386495857bc81345de418750b5ca0e3c3b964f6c"
|
||||
integrity sha512-ixjJTEfUz3GeQ7srxpoYpnOGVx+iDA/A8Y3CZe5cg+/b0d8xur8fBKFoRBiXXohzJnYq4W8MIWIhLAwm5sD9oA==
|
||||
dependencies:
|
||||
"@expo/config-plugins" "^9.0.14"
|
||||
fast-json-stringify "^6.0.0"
|
||||
|
||||
"@braintree/sanitize-url@^6.0.2":
|
||||
version "6.0.4"
|
||||
resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz#923ca57e173c6b232bbbb07347b1be982f03e783"
|
||||
@@ -4027,26 +4019,6 @@
|
||||
node-forge "^1.2.1"
|
||||
nullthrows "^1.1.1"
|
||||
|
||||
"@expo/config-plugins@^9.0.14":
|
||||
version "9.0.14"
|
||||
resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-9.0.14.tgz#c57cc86c238b276823ff66d96e4722366d57b12c"
|
||||
integrity sha512-Lx1ebV95rTFKKQmbu4wMPLz65rKn7mqSpfANdCx+KwRxuLY2JQls8V4h3lQjG6dW8NWf9qV5QaEFAgNB6VMyOQ==
|
||||
dependencies:
|
||||
"@expo/config-types" "^52.0.3"
|
||||
"@expo/json-file" "~9.0.1"
|
||||
"@expo/plist" "^0.2.1"
|
||||
"@expo/sdk-runtime-versions" "^1.0.0"
|
||||
chalk "^4.1.2"
|
||||
debug "^4.3.5"
|
||||
getenv "^1.0.0"
|
||||
glob "^10.4.2"
|
||||
resolve-from "^5.0.0"
|
||||
semver "^7.5.4"
|
||||
slash "^3.0.0"
|
||||
slugify "^1.6.6"
|
||||
xcode "^3.0.1"
|
||||
xml2js "0.6.0"
|
||||
|
||||
"@expo/config-plugins@~54.0.1":
|
||||
version "54.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-54.0.1.tgz#cf811b38c7cf6ee32c611265605683032bf13b48"
|
||||
@@ -4067,11 +4039,6 @@
|
||||
xcode "^3.0.1"
|
||||
xml2js "0.6.0"
|
||||
|
||||
"@expo/config-types@^52.0.3":
|
||||
version "52.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-52.0.3.tgz#511f2f868172c93abeac7183beeb921dc72d6e1e"
|
||||
integrity sha512-muxvuARmbysH5OGaiBRlh1Y6vfdmL56JtpXxB+y2Hfhu0ezG1U4FjZYBIacthckZPvnDCcP3xIu1R+eTo7/QFA==
|
||||
|
||||
"@expo/config-types@^54.0.8":
|
||||
version "54.0.8"
|
||||
resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-54.0.8.tgz#2aa1f96e0abad6a125d0ff1092b303280f7962e9"
|
||||
@@ -4179,15 +4146,6 @@
|
||||
"@babel/code-frame" "~7.10.4"
|
||||
json5 "^2.2.3"
|
||||
|
||||
"@expo/json-file@~9.0.1":
|
||||
version "9.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.0.1.tgz#ff60654caf1fa3c33f9b17dcd1e9691eb854a318"
|
||||
integrity sha512-ZVPhbbEBEwafPCJ0+kI25O2Iivt3XKHEKAADCml1q2cmOIbQnKgLyn8DpOJXqWEyRQr/VWS+hflBh8DU2YFSqg==
|
||||
dependencies:
|
||||
"@babel/code-frame" "~7.10.4"
|
||||
json5 "^2.2.3"
|
||||
write-file-atomic "^2.3.0"
|
||||
|
||||
"@expo/mcp-tunnel@~0.0.7":
|
||||
version "0.0.8"
|
||||
resolved "https://registry.yarnpkg.com/@expo/mcp-tunnel/-/mcp-tunnel-0.0.8.tgz#8c4fabec4e25e119998b22bd846e9d12435da4da"
|
||||
@@ -4262,15 +4220,6 @@
|
||||
ora "^3.4.0"
|
||||
resolve-workspace-root "^2.0.0"
|
||||
|
||||
"@expo/plist@^0.2.1":
|
||||
version "0.2.1"
|
||||
resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.2.1.tgz#a315e1964ee9eece5c56040d460db5de7af85889"
|
||||
integrity sha512-9TaXGuNxa0LQwHQn4rYiU6YaERv6dPnQgsdKWq2rKKTr6LWOtGNQCi/yOk/HBLeZSxBm59APT5/6x60uRvr0Mg==
|
||||
dependencies:
|
||||
"@xmldom/xmldom" "~0.7.7"
|
||||
base64-js "^1.2.3"
|
||||
xmlbuilder "^14.0.0"
|
||||
|
||||
"@expo/plist@^0.4.7":
|
||||
version "0.4.7"
|
||||
resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.4.7.tgz#40fa796e93d5be0452ce72e5110e69c8ac915403"
|
||||
@@ -4380,12 +4329,396 @@
|
||||
resolved "https://registry.yarnpkg.com/@fastify/deepmerge/-/deepmerge-1.3.0.tgz#8116858108f0c7d9fd460d05a7d637a13fe3239a"
|
||||
integrity sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A==
|
||||
|
||||
"@fastify/merge-json-schemas@^0.2.0":
|
||||
version "0.2.1"
|
||||
resolved "https://registry.yarnpkg.com/@fastify/merge-json-schemas/-/merge-json-schemas-0.2.1.tgz#3aa30d2f0c81a8ac5995b6d94ed4eaa2c3055824"
|
||||
integrity sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==
|
||||
"@firebase/ai@2.4.0":
|
||||
version "2.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/ai/-/ai-2.4.0.tgz#fe67130f8b8770aa74c028f511dc61b67440a30a"
|
||||
integrity sha512-YilG6AJ/nYpCKtxZyvEzBRAQv5bU+2tBOKX4Ps0rNNSdxN39aT37kGhjATbk1kq1z5Lq7mkWglw/ajAF3lOWUg==
|
||||
dependencies:
|
||||
dequal "^2.0.3"
|
||||
"@firebase/app-check-interop-types" "0.3.3"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/analytics-compat@0.2.25":
|
||||
version "0.2.25"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/analytics-compat/-/analytics-compat-0.2.25.tgz#1f48bb6237bed7d6a3cf8136957aa5ceb245507b"
|
||||
integrity sha512-fdzoaG0BEKbqksRDhmf4JoyZf16Wosrl0Y7tbZtJyVDOOwziE0vrFjmZuTdviL0yhak+Nco6rMsUUbkbD+qb6Q==
|
||||
dependencies:
|
||||
"@firebase/analytics" "0.10.19"
|
||||
"@firebase/analytics-types" "0.8.3"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/analytics-types@0.8.3":
|
||||
version "0.8.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/analytics-types/-/analytics-types-0.8.3.tgz#d08cd39a6209693ca2039ba7a81570dfa6c1518f"
|
||||
integrity sha512-VrIp/d8iq2g501qO46uGz3hjbDb8xzYMrbu8Tp0ovzIzrvJZ2fvmj649gTjge/b7cCCcjT0H37g1gVtlNhnkbg==
|
||||
|
||||
"@firebase/analytics@0.10.19":
|
||||
version "0.10.19"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/analytics/-/analytics-0.10.19.tgz#6bddeb9db287fa2367066855b12ec514e2914697"
|
||||
integrity sha512-3wU676fh60gaiVYQEEXsbGS4HbF2XsiBphyvvqDbtC1U4/dO4coshbYktcCHq+HFaGIK07iHOh4pME0hEq1fcg==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/installations" "0.6.19"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/app-check-compat@0.4.0":
|
||||
version "0.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app-check-compat/-/app-check-compat-0.4.0.tgz#94ac0cf9f66cab1d81a7b14e0c151dcc2684bc95"
|
||||
integrity sha512-UfK2Q8RJNjYM/8MFORltZRG9lJj11k0nW84rrffiKvcJxLf1jf6IEjCIkCamykHE73C6BwqhVfhIBs69GXQV0g==
|
||||
dependencies:
|
||||
"@firebase/app-check" "0.11.0"
|
||||
"@firebase/app-check-types" "0.5.3"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/app-check-interop-types@0.3.3":
|
||||
version "0.3.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app-check-interop-types/-/app-check-interop-types-0.3.3.tgz#ed9c4a4f48d1395ef378f007476db3940aa5351a"
|
||||
integrity sha512-gAlxfPLT2j8bTI/qfe3ahl2I2YcBQ8cFIBdhAQA4I2f3TndcO+22YizyGYuttLHPQEpWkhmpFW60VCFEPg4g5A==
|
||||
|
||||
"@firebase/app-check-types@0.5.3":
|
||||
version "0.5.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app-check-types/-/app-check-types-0.5.3.tgz#38ba954acf4bffe451581a32fffa20337f11d8e5"
|
||||
integrity sha512-hyl5rKSj0QmwPdsAxrI5x1otDlByQ7bvNvVt8G/XPO2CSwE++rmSVf3VEhaeOR4J8ZFaF0Z0NDSmLejPweZ3ng==
|
||||
|
||||
"@firebase/app-check@0.11.0":
|
||||
version "0.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app-check/-/app-check-0.11.0.tgz#a7e1d1e3f5ae36eabed1455db937114fe869ce8f"
|
||||
integrity sha512-XAvALQayUMBJo58U/rxW02IhsesaxxfWVmVkauZvGEz3vOAjMEQnzFlyblqkc2iAaO82uJ2ZVyZv9XzPfxjJ6w==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/app-compat@0.5.4":
|
||||
version "0.5.4"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app-compat/-/app-compat-0.5.4.tgz#eb8f47d51c57887c9979279d4d39e4ee85270fe4"
|
||||
integrity sha512-T7ifGmb+awJEcp542Ek4HtNfBxcBrnuk1ggUdqyFEdsXHdq7+wVlhvE6YukTL7NS8hIkEfL7TMAPx/uCNqt30g==
|
||||
dependencies:
|
||||
"@firebase/app" "0.14.4"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/app-types@0.9.3":
|
||||
version "0.9.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.9.3.tgz#8408219eae9b1fb74f86c24e7150a148460414ad"
|
||||
integrity sha512-kRVpIl4vVGJ4baogMDINbyrIOtOxqhkZQg4jTq3l8Lw6WSk0xfpEYzezFu+Kl4ve4fbPl79dvwRtaFqAC/ucCw==
|
||||
|
||||
"@firebase/app@0.14.4":
|
||||
version "0.14.4"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.14.4.tgz#1d2ce74c09752dec9664e2f981b20335c4efbec1"
|
||||
integrity sha512-pUxEGmR+uu21OG/icAovjlu1fcYJzyVhhT0rsCrn+zi+nHtrS43Bp9KPn9KGa4NMspCUE++nkyiqziuIvJdwzw==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
idb "7.1.1"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/auth-compat@0.6.0":
|
||||
version "0.6.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/auth-compat/-/auth-compat-0.6.0.tgz#1464ea6049b2ad0aae83b4fdcd5e5e5aba6b1c50"
|
||||
integrity sha512-J0lGSxXlG/lYVi45wbpPhcWiWUMXevY4fvLZsN1GHh+po7TZVng+figdHBVhFheaiipU8HZyc7ljw1jNojM2nw==
|
||||
dependencies:
|
||||
"@firebase/auth" "1.11.0"
|
||||
"@firebase/auth-types" "0.13.0"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/auth-interop-types@0.2.4":
|
||||
version "0.2.4"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/auth-interop-types/-/auth-interop-types-0.2.4.tgz#176a08686b0685596ff03d7879b7e4115af53de0"
|
||||
integrity sha512-JPgcXKCuO+CWqGDnigBtvo09HeBs5u/Ktc2GaFj2m01hLarbxthLNm7Fk8iOP1aqAtXV+fnnGj7U28xmk7IwVA==
|
||||
|
||||
"@firebase/auth-types@0.13.0":
|
||||
version "0.13.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/auth-types/-/auth-types-0.13.0.tgz#ae6e0015e3bd4bfe18edd0942b48a0a118a098d9"
|
||||
integrity sha512-S/PuIjni0AQRLF+l9ck0YpsMOdE8GO2KU6ubmBB7P+7TJUCQDa3R1dlgYm9UzGbbePMZsp0xzB93f2b/CgxMOg==
|
||||
|
||||
"@firebase/auth@1.11.0":
|
||||
version "1.11.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/auth/-/auth-1.11.0.tgz#81a4f77b16d97c502e493b2a14a97443e243a2a0"
|
||||
integrity sha512-5j7+ua93X+IRcJ1oMDTClTo85l7Xe40WSkoJ+shzPrX7OISlVWLdE1mKC57PSD+/LfAbdhJmvKixINBw2ESK6w==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/component@0.7.0":
|
||||
version "0.7.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/component/-/component-0.7.0.tgz#3736644fdb6d3572dceae7fdc1c35a8bd3819adc"
|
||||
integrity sha512-wR9En2A+WESUHexjmRHkqtaVH94WLNKt6rmeqZhSLBybg4Wyf0Umk04SZsS6sBq4102ZsDBFwoqMqJYj2IoDSg==
|
||||
dependencies:
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/data-connect@0.3.11":
|
||||
version "0.3.11"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/data-connect/-/data-connect-0.3.11.tgz#60a7a9649e4aedd005546032466ef9abc0a544c1"
|
||||
integrity sha512-G258eLzAD6im9Bsw+Qm1Z+P4x0PGNQ45yeUuuqe5M9B1rn0RJvvsQCRHXgE52Z+n9+WX1OJd/crcuunvOGc7Vw==
|
||||
dependencies:
|
||||
"@firebase/auth-interop-types" "0.2.4"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/database-compat@2.1.0":
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/database-compat/-/database-compat-2.1.0.tgz#c64488d741c6da2ed8dcf02f2e433089dae2f590"
|
||||
integrity sha512-8nYc43RqxScsePVd1qe1xxvWNf0OBnbwHxmXJ7MHSuuTVYFO3eLyLW3PiCKJ9fHnmIz4p4LbieXwz+qtr9PZDg==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/database" "1.1.0"
|
||||
"@firebase/database-types" "1.0.16"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/database-types@1.0.16":
|
||||
version "1.0.16"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-1.0.16.tgz#262f54b8dbebbc46259757b3ba384224fb2ede48"
|
||||
integrity sha512-xkQLQfU5De7+SPhEGAXFBnDryUWhhlFXelEg2YeZOQMCdoe7dL64DDAd77SQsR+6uoXIZY5MB4y/inCs4GTfcw==
|
||||
dependencies:
|
||||
"@firebase/app-types" "0.9.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
|
||||
"@firebase/database@1.1.0":
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/database/-/database-1.1.0.tgz#bdf60f1605079a87ceb2b5e30d90846e0bde294b"
|
||||
integrity sha512-gM6MJFae3pTyNLoc9VcJNuaUDej0ctdjn3cVtILo3D5lpp0dmUHHLFN/pUKe7ImyeB1KAvRlEYxvIHNF04Filg==
|
||||
dependencies:
|
||||
"@firebase/app-check-interop-types" "0.3.3"
|
||||
"@firebase/auth-interop-types" "0.2.4"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
faye-websocket "0.11.4"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/firestore-compat@0.4.2":
|
||||
version "0.4.2"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/firestore-compat/-/firestore-compat-0.4.2.tgz#2c9f5bef1dff004ae2db5759608f17d7973da78c"
|
||||
integrity sha512-cy7ov6SpFBx+PHwFdOOjbI7kH00uNKmIFurAn560WiPCZXy9EMnil1SOG7VF4hHZKdenC+AHtL4r3fNpirpm0w==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/firestore" "4.9.2"
|
||||
"@firebase/firestore-types" "3.0.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/firestore-types@3.0.3":
|
||||
version "3.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/firestore-types/-/firestore-types-3.0.3.tgz#7d0c3dd8850c0193d8f5ee0cc8f11961407742c1"
|
||||
integrity sha512-hD2jGdiWRxB/eZWF89xcK9gF8wvENDJkzpVFb4aGkzfEaKxVRD1kjz1t1Wj8VZEp2LCB53Yx1zD8mrhQu87R6Q==
|
||||
|
||||
"@firebase/firestore@4.9.2":
|
||||
version "4.9.2"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/firestore/-/firestore-4.9.2.tgz#0c65203f9754d5aa801ec31c6f885445cfb346f4"
|
||||
integrity sha512-iuA5+nVr/IV/Thm0Luoqf2mERUvK9g791FZpUJV1ZGXO6RL2/i/WFJUj5ZTVXy5pRjpWYO+ZzPcReNrlilmztA==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
"@firebase/webchannel-wrapper" "1.0.5"
|
||||
"@grpc/grpc-js" "~1.9.0"
|
||||
"@grpc/proto-loader" "^0.7.8"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/functions-compat@0.4.1":
|
||||
version "0.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/functions-compat/-/functions-compat-0.4.1.tgz#b253b761845f0c82bbdf76ef59975978ed84eb65"
|
||||
integrity sha512-AxxUBXKuPrWaVNQ8o1cG1GaCAtXT8a0eaTDfqgS5VsRYLAR0ALcfqDLwo/QyijZj1w8Qf8n3Qrfy/+Im245hOQ==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/functions" "0.13.1"
|
||||
"@firebase/functions-types" "0.6.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/functions-types@0.6.3":
|
||||
version "0.6.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/functions-types/-/functions-types-0.6.3.tgz#f5faf770248b13f45d256f614230da6a11bfb654"
|
||||
integrity sha512-EZoDKQLUHFKNx6VLipQwrSMh01A1SaL3Wg6Hpi//x6/fJ6Ee4hrAeswK99I5Ht8roiniKHw4iO0B1Oxj5I4plg==
|
||||
|
||||
"@firebase/functions@0.13.1":
|
||||
version "0.13.1"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/functions/-/functions-0.13.1.tgz#472e8456568689154b87a494ee8c10ee2e610d94"
|
||||
integrity sha512-sUeWSb0rw5T+6wuV2o9XNmh9yHxjFI9zVGFnjFi+n7drTEWpl7ZTz1nROgGrSu472r+LAaj+2YaSicD4R8wfbw==
|
||||
dependencies:
|
||||
"@firebase/app-check-interop-types" "0.3.3"
|
||||
"@firebase/auth-interop-types" "0.2.4"
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/messaging-interop-types" "0.2.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/installations-compat@0.2.19":
|
||||
version "0.2.19"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/installations-compat/-/installations-compat-0.2.19.tgz#4bc57c8c57d241eeca95900ff3033d6ec3dbcc7c"
|
||||
integrity sha512-khfzIY3EI5LePePo7vT19/VEIH1E3iYsHknI/6ek9T8QCozAZshWT9CjlwOzZrKvTHMeNcbpo/VSOSIWDSjWdQ==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/installations" "0.6.19"
|
||||
"@firebase/installations-types" "0.5.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/installations-types@0.5.3":
|
||||
version "0.5.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/installations-types/-/installations-types-0.5.3.tgz#cac8a14dd49f09174da9df8ae453f9b359c3ef2f"
|
||||
integrity sha512-2FJI7gkLqIE0iYsNQ1P751lO3hER+Umykel+TkLwHj6plzWVxqvfclPUZhcKFVQObqloEBTmpi2Ozn7EkCABAA==
|
||||
|
||||
"@firebase/installations@0.6.19":
|
||||
version "0.6.19"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/installations/-/installations-0.6.19.tgz#93c569321f6fb399f4f1a197efc0053ce6452c7c"
|
||||
integrity sha512-nGDmiwKLI1lerhwfwSHvMR9RZuIH5/8E3kgUWnVRqqL7kGVSktjLTWEMva7oh5yxQ3zXfIlIwJwMcaM5bK5j8Q==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
idb "7.1.1"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/logger@0.5.0":
|
||||
version "0.5.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/logger/-/logger-0.5.0.tgz#a9e55b1c669a0983dc67127fa4a5964ce8ed5e1b"
|
||||
integrity sha512-cGskaAvkrnh42b3BA3doDWeBmuHFO/Mx5A83rbRDYakPjO9bJtRL3dX7javzc2Rr/JHZf4HlterTW2lUkfeN4g==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/messaging-compat@0.2.23":
|
||||
version "0.2.23"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/messaging-compat/-/messaging-compat-0.2.23.tgz#2ca6b36ea238fae4dff53bf85442c4a2af516224"
|
||||
integrity sha512-SN857v/kBUvlQ9X/UjAqBoQ2FEaL1ZozpnmL1ByTe57iXkmnVVFm9KqAsTfmf+OEwWI4kJJe9NObtN/w22lUgg==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/messaging" "0.12.23"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/messaging-interop-types@0.2.3":
|
||||
version "0.2.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/messaging-interop-types/-/messaging-interop-types-0.2.3.tgz#e647c9cd1beecfe6a6e82018a6eec37555e4da3e"
|
||||
integrity sha512-xfzFaJpzcmtDjycpDeCUj0Ge10ATFi/VHVIvEEjDNc3hodVBQADZ7BWQU7CuFpjSHE+eLuBI13z5F/9xOoGX8Q==
|
||||
|
||||
"@firebase/messaging@0.12.23":
|
||||
version "0.12.23"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/messaging/-/messaging-0.12.23.tgz#71f932a521ac39d9f036175672e37897531010eb"
|
||||
integrity sha512-cfuzv47XxqW4HH/OcR5rM+AlQd1xL/VhuaeW/wzMW1LFrsFcTn0GND/hak1vkQc2th8UisBcrkVcQAnOnKwYxg==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/installations" "0.6.19"
|
||||
"@firebase/messaging-interop-types" "0.2.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
idb "7.1.1"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/performance-compat@0.2.22":
|
||||
version "0.2.22"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/performance-compat/-/performance-compat-0.2.22.tgz#1c24ea360b03cfef831bdf379b4fc7080f412741"
|
||||
integrity sha512-xLKxaSAl/FVi10wDX/CHIYEUP13jXUjinL+UaNXT9ByIvxII5Ne5150mx6IgM8G6Q3V+sPiw9C8/kygkyHUVxg==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/performance" "0.7.9"
|
||||
"@firebase/performance-types" "0.2.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/performance-types@0.2.3":
|
||||
version "0.2.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/performance-types/-/performance-types-0.2.3.tgz#5ce64e90fa20ab5561f8b62a305010cf9fab86fb"
|
||||
integrity sha512-IgkyTz6QZVPAq8GSkLYJvwSLr3LS9+V6vNPQr0x4YozZJiLF5jYixj0amDtATf1X0EtYHqoPO48a9ija8GocxQ==
|
||||
|
||||
"@firebase/performance@0.7.9":
|
||||
version "0.7.9"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/performance/-/performance-0.7.9.tgz#7e3a072b1542f0df3f502684a38a0516b0d72cab"
|
||||
integrity sha512-UzybENl1EdM2I1sjYm74xGt/0JzRnU/0VmfMAKo2LSpHJzaj77FCLZXmYQ4oOuE+Pxtt8Wy2BVJEENiZkaZAzQ==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/installations" "0.6.19"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
web-vitals "^4.2.4"
|
||||
|
||||
"@firebase/remote-config-compat@0.2.20":
|
||||
version "0.2.20"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/remote-config-compat/-/remote-config-compat-0.2.20.tgz#4bca09b1361867d0c882411970486ee06622e071"
|
||||
integrity sha512-P/ULS9vU35EL9maG7xp66uljkZgcPMQOxLj3Zx2F289baTKSInE6+YIkgHEi1TwHoddC/AFePXPpshPlEFkbgg==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/remote-config" "0.7.0"
|
||||
"@firebase/remote-config-types" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/remote-config-types@0.5.0":
|
||||
version "0.5.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/remote-config-types/-/remote-config-types-0.5.0.tgz#f0f503b32edda3384f5252f9900cd9613adbb99c"
|
||||
integrity sha512-vI3bqLoF14L/GchtgayMiFpZJF+Ao3uR8WCde0XpYNkSokDpAKca2DxvcfeZv7lZUqkUwQPL2wD83d3vQ4vvrg==
|
||||
|
||||
"@firebase/remote-config@0.7.0":
|
||||
version "0.7.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/remote-config/-/remote-config-0.7.0.tgz#0e5e5879a7a9121c9da55606be8fa40ff70ddae1"
|
||||
integrity sha512-dX95X6WlW7QlgNd7aaGdjAIZUiQkgWgNS+aKNu4Wv92H1T8Ue/NDUjZHd9xb8fHxLXIHNZeco9/qbZzr500MjQ==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/installations" "0.6.19"
|
||||
"@firebase/logger" "0.5.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/storage-compat@0.4.0":
|
||||
version "0.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/storage-compat/-/storage-compat-0.4.0.tgz#a09bd33c262123e7e3ed0cd590b4c6e2ce4a8902"
|
||||
integrity sha512-vDzhgGczr1OfcOy285YAPur5pWDEvD67w4thyeCUh6Ys0izN9fNYtA1MJERmNBfqjqu0lg0FM5GLbw0Il21M+g==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/storage" "0.14.0"
|
||||
"@firebase/storage-types" "0.8.3"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/storage-types@0.8.3":
|
||||
version "0.8.3"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/storage-types/-/storage-types-0.8.3.tgz#2531ef593a3452fc12c59117195d6485c6632d3d"
|
||||
integrity sha512-+Muk7g9uwngTpd8xn9OdF/D48uiQ7I1Fae7ULsWPuKoCH3HU7bfFPhxtJYzyhjdniowhuDpQcfPmuNRAqZEfvg==
|
||||
|
||||
"@firebase/storage@0.14.0":
|
||||
version "0.14.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/storage/-/storage-0.14.0.tgz#01acb97d413ada7c91de860fb260623468baa25d"
|
||||
integrity sha512-xWWbb15o6/pWEw8H01UQ1dC5U3rf8QTAzOChYyCpafV6Xki7KVp3Yaw2nSklUwHEziSWE9KoZJS7iYeyqWnYFA==
|
||||
dependencies:
|
||||
"@firebase/component" "0.7.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/util@1.13.0":
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/util/-/util-1.13.0.tgz#2e9e7569722a1e3fc86b1b4076d5cbfbfa7265d6"
|
||||
integrity sha512-0AZUyYUfpMNcztR5l09izHwXkZpghLgCUaAGjtMwXnCg3bj4ml5VgiwqOMOxJ+Nw4qN/zJAaOQBcJ7KGkWStqQ==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
"@firebase/webchannel-wrapper@1.0.5":
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@firebase/webchannel-wrapper/-/webchannel-wrapper-1.0.5.tgz#39cf5a600450cb42f1f0b507cc385459bf103b27"
|
||||
integrity sha512-+uGNN7rkfn41HLO0vekTFhTxk61eKa8mTpRGLO0QSqlQdKvIoGAvLp3ppdVIWbTGYJWM6Kp0iN+PjMIOcnVqTw==
|
||||
|
||||
"@floating-ui/core@^1.0.0":
|
||||
version "1.6.0"
|
||||
@@ -4559,6 +4892,14 @@
|
||||
"@grpc/proto-loader" "^0.7.13"
|
||||
"@js-sdsl/ordered-map" "^4.4.2"
|
||||
|
||||
"@grpc/grpc-js@~1.9.0":
|
||||
version "1.9.15"
|
||||
resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.9.15.tgz#433d7ac19b1754af690ea650ab72190bd700739b"
|
||||
integrity sha512-nqE7Hc0AzI+euzUwDAy0aY5hCp10r734gMGRdU+qOPX0XSceI2ULrcXB5U2xSc5VkWwalCj4M7GzCAygZl2KoQ==
|
||||
dependencies:
|
||||
"@grpc/proto-loader" "^0.7.8"
|
||||
"@types/node" ">=12.12.47"
|
||||
|
||||
"@grpc/proto-loader@^0.7.13", "@grpc/proto-loader@^0.7.8":
|
||||
version "0.7.15"
|
||||
resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.15.tgz#4cdfbf35a35461fc843abe8b9e2c0770b5095e60"
|
||||
@@ -6124,6 +6465,20 @@
|
||||
dependencies:
|
||||
merge-options "^3.0.4"
|
||||
|
||||
"@react-native-firebase/app@^23.4.1":
|
||||
version "23.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@react-native-firebase/app/-/app-23.4.1.tgz#00c836c6fc3f921de0fbe235362627ce73df8de6"
|
||||
integrity sha512-AVxk9dS3plHjIUDWUlKSEAbKrEtGweLZXEMZpJokvLyNbeL1i4dDAUkDriPzjIEgtxaFX3rUxFuBRQvLHlsmAA==
|
||||
dependencies:
|
||||
firebase "12.4.0"
|
||||
|
||||
"@react-native-firebase/crashlytics@^23.4.1":
|
||||
version "23.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@react-native-firebase/crashlytics/-/crashlytics-23.4.1.tgz#f3633c38a10a34673a72378994231b3f86603b97"
|
||||
integrity sha512-8lH2yMEbpl0bvgt9b67FJVltuKRsq9BwGQrnUeWZDWGSHWdUVyFHvf79AkSxqebmuF1B1NuohTix4fOkhrq3sQ==
|
||||
dependencies:
|
||||
stacktrace-js "^2.0.2"
|
||||
|
||||
"@react-native/assets-registry@0.81.4":
|
||||
version "0.81.4"
|
||||
resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.81.4.tgz#bfa477c8e9d54d6ef4ab6e81b886d5be13c09fbd"
|
||||
@@ -7592,6 +7947,13 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.5.1.tgz#178d58ee7e4834152b0e8b4d30cbfab578b9bb30"
|
||||
integrity sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==
|
||||
|
||||
"@types/node@>=12.12.47":
|
||||
version "24.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-24.9.1.tgz#b7360b3c789089e57e192695a855aa4f6981a53c"
|
||||
integrity sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==
|
||||
dependencies:
|
||||
undici-types "~7.16.0"
|
||||
|
||||
"@types/node@>=13.7.0":
|
||||
version "22.15.3"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.15.3.tgz#b7fb9396a8ec5b5dfb1345d8ac2502060e9af68b"
|
||||
@@ -7989,11 +8351,6 @@
|
||||
resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99"
|
||||
integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==
|
||||
|
||||
"@xmldom/xmldom@~0.7.7":
|
||||
version "0.7.13"
|
||||
resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.13.tgz#ff34942667a4e19a9f4a0996a76814daac364cf3"
|
||||
integrity sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==
|
||||
|
||||
"@xtuc/ieee754@^1.2.0":
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
|
||||
@@ -8111,13 +8468,6 @@ ajv-formats@^2.1.1:
|
||||
dependencies:
|
||||
ajv "^8.0.0"
|
||||
|
||||
ajv-formats@^3.0.1:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578"
|
||||
integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==
|
||||
dependencies:
|
||||
ajv "^8.0.0"
|
||||
|
||||
ajv-keywords@^3.5.2:
|
||||
version "3.5.2"
|
||||
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
|
||||
@@ -8150,16 +8500,6 @@ ajv@^8.0.0, ajv@^8.10.0, ajv@^8.11.0, ajv@^8.9.0:
|
||||
require-from-string "^2.0.2"
|
||||
uri-js "^4.2.2"
|
||||
|
||||
ajv@^8.12.0:
|
||||
version "8.17.1"
|
||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
|
||||
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
|
||||
dependencies:
|
||||
fast-deep-equal "^3.1.3"
|
||||
fast-uri "^3.0.1"
|
||||
json-schema-traverse "^1.0.0"
|
||||
require-from-string "^2.0.2"
|
||||
|
||||
anser@^1.4.9:
|
||||
version "1.4.10"
|
||||
resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b"
|
||||
@@ -10146,11 +10486,6 @@ depd@~1.1.2:
|
||||
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
|
||||
integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
|
||||
|
||||
dequal@^2.0.3:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
|
||||
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
|
||||
|
||||
destroy@1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
|
||||
@@ -11614,18 +11949,6 @@ fast-json-stringify@^5.8.0:
|
||||
fast-uri "^2.1.0"
|
||||
rfdc "^1.2.0"
|
||||
|
||||
fast-json-stringify@^6.0.0:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-6.0.1.tgz#82f1cb45fa96d0ca24b601f1738066976d6e2430"
|
||||
integrity sha512-s7SJE83QKBZwg54dIbD5rCtzOBVD43V1ReWXXYqBgwCwHLYAAT0RQc/FmrQglXqWPpz6omtryJQOau5jI4Nrvg==
|
||||
dependencies:
|
||||
"@fastify/merge-json-schemas" "^0.2.0"
|
||||
ajv "^8.12.0"
|
||||
ajv-formats "^3.0.1"
|
||||
fast-uri "^3.0.0"
|
||||
json-schema-ref-resolver "^2.0.0"
|
||||
rfdc "^1.2.0"
|
||||
|
||||
fast-levenshtein@^2.0.6:
|
||||
version "2.0.6"
|
||||
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
||||
@@ -11653,11 +11976,6 @@ fast-uri@^2.1.0:
|
||||
resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-2.2.0.tgz#519a0f849bef714aad10e9753d69d8f758f7445a"
|
||||
integrity sha512-cIusKBIt/R/oI6z/1nyfe2FvGKVTohVRfvkOhvx0nCEW+xf5NoCXjAHcWp93uOUBchzYcsvPlrapAdX1uW+YGg==
|
||||
|
||||
fast-uri@^3.0.0, fast-uri@^3.0.1:
|
||||
version "3.0.6"
|
||||
resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz#88f130b77cfaea2378d56bf970dea21257a68748"
|
||||
integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==
|
||||
|
||||
fast-xml-parser@5.2.5:
|
||||
version "5.2.5"
|
||||
resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.2.5.tgz#4809fdfb1310494e341098c25cb1341a01a9144a"
|
||||
@@ -11672,7 +11990,7 @@ fastq@^1.6.0:
|
||||
dependencies:
|
||||
reusify "^1.0.4"
|
||||
|
||||
faye-websocket@^0.11.3:
|
||||
faye-websocket@0.11.4, faye-websocket@^0.11.3:
|
||||
version "0.11.4"
|
||||
resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
|
||||
integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
|
||||
@@ -11824,6 +12142,40 @@ find-yarn-workspace-root@^2.0.0, find-yarn-workspace-root@~2.0.0:
|
||||
dependencies:
|
||||
micromatch "^4.0.2"
|
||||
|
||||
firebase@12.4.0:
|
||||
version "12.4.0"
|
||||
resolved "https://registry.yarnpkg.com/firebase/-/firebase-12.4.0.tgz#c9de52c23e707d90aa43343ab3ad1c1ce6b71301"
|
||||
integrity sha512-/chNgDQ6ppPPGOQO4jctxOa/5JeQxuhaxA7Y90K0I+n/wPfoO8mRveedhVUdo7ExLcWUivnnow/ouSLYSI5Icw==
|
||||
dependencies:
|
||||
"@firebase/ai" "2.4.0"
|
||||
"@firebase/analytics" "0.10.19"
|
||||
"@firebase/analytics-compat" "0.2.25"
|
||||
"@firebase/app" "0.14.4"
|
||||
"@firebase/app-check" "0.11.0"
|
||||
"@firebase/app-check-compat" "0.4.0"
|
||||
"@firebase/app-compat" "0.5.4"
|
||||
"@firebase/app-types" "0.9.3"
|
||||
"@firebase/auth" "1.11.0"
|
||||
"@firebase/auth-compat" "0.6.0"
|
||||
"@firebase/data-connect" "0.3.11"
|
||||
"@firebase/database" "1.1.0"
|
||||
"@firebase/database-compat" "2.1.0"
|
||||
"@firebase/firestore" "4.9.2"
|
||||
"@firebase/firestore-compat" "0.4.2"
|
||||
"@firebase/functions" "0.13.1"
|
||||
"@firebase/functions-compat" "0.4.1"
|
||||
"@firebase/installations" "0.6.19"
|
||||
"@firebase/installations-compat" "0.2.19"
|
||||
"@firebase/messaging" "0.12.23"
|
||||
"@firebase/messaging-compat" "0.2.23"
|
||||
"@firebase/performance" "0.7.9"
|
||||
"@firebase/performance-compat" "0.2.22"
|
||||
"@firebase/remote-config" "0.7.0"
|
||||
"@firebase/remote-config-compat" "0.2.20"
|
||||
"@firebase/storage" "0.14.0"
|
||||
"@firebase/storage-compat" "0.4.0"
|
||||
"@firebase/util" "1.13.0"
|
||||
|
||||
flat-cache@^3.0.4:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
|
||||
@@ -12641,6 +12993,11 @@ icss-utils@^5.0.0, icss-utils@^5.1.0:
|
||||
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
|
||||
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
|
||||
|
||||
idb@7.1.1:
|
||||
version "7.1.1"
|
||||
resolved "https://registry.yarnpkg.com/idb/-/idb-7.1.1.tgz#d910ded866d32c7ced9befc5bfdf36f572ced72b"
|
||||
integrity sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==
|
||||
|
||||
ieee754@^1.1.13, ieee754@^1.1.4, ieee754@^1.2.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
|
||||
@@ -14007,13 +14364,6 @@ json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
|
||||
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
|
||||
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
|
||||
|
||||
json-schema-ref-resolver@^2.0.0:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/json-schema-ref-resolver/-/json-schema-ref-resolver-2.0.1.tgz#c92f16b452df069daac53e1984159e0f9af0598d"
|
||||
integrity sha512-HG0SIB9X4J8bwbxCbnd5FfPEbcXAJYTi1pBJeP/QPON+w8ovSME8iRG+ElHNxZNX2Qh6eYn1GdzJFS4cDFfx0Q==
|
||||
dependencies:
|
||||
dequal "^2.0.3"
|
||||
|
||||
json-schema-traverse@^0.4.1:
|
||||
version "0.4.1"
|
||||
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
|
||||
@@ -19468,6 +19818,11 @@ undici-types@~6.21.0:
|
||||
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb"
|
||||
integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==
|
||||
|
||||
undici-types@~7.16.0:
|
||||
version "7.16.0"
|
||||
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46"
|
||||
integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==
|
||||
|
||||
undici@^5.28.2:
|
||||
version "5.28.2"
|
||||
resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.2.tgz#fea200eac65fc7ecaff80a023d1a0543423b4c91"
|
||||
@@ -19785,6 +20140,11 @@ wcwidth@^1.0.1:
|
||||
dependencies:
|
||||
defaults "^1.0.3"
|
||||
|
||||
web-vitals@^4.2.4:
|
||||
version "4.2.4"
|
||||
resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-4.2.4.tgz#1d20bc8590a37769bd0902b289550936069184b7"
|
||||
integrity sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==
|
||||
|
||||
webidl-conversions@^3.0.0:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
|
||||
@@ -20177,15 +20537,6 @@ wrappy@1:
|
||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
||||
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
|
||||
|
||||
write-file-atomic@^2.3.0:
|
||||
version "2.4.3"
|
||||
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
|
||||
integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
|
||||
dependencies:
|
||||
graceful-fs "^4.1.11"
|
||||
imurmurhash "^0.1.4"
|
||||
signal-exit "^3.0.2"
|
||||
|
||||
write-file-atomic@^4.0.2:
|
||||
version "4.0.2"
|
||||
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd"
|
||||
@@ -20247,11 +20598,6 @@ xml@^1.0.1:
|
||||
resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"
|
||||
integrity sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==
|
||||
|
||||
xmlbuilder@^14.0.0:
|
||||
version "14.0.0"
|
||||
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-14.0.0.tgz#876b5aec4f05ffd5feb97b0a871c855d16fbeb8c"
|
||||
integrity sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==
|
||||
|
||||
xmlbuilder@^15.1.1:
|
||||
version "15.1.1"
|
||||
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5"
|
||||
|
||||
Reference in New Issue
Block a user