diff --git a/.eslintrc.js b/.eslintrc.js
index 9d2b7bbb1a..2d5f2822ac 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -71,6 +71,19 @@ module.exports = {
'simple-import-sort/exports': 'warn',
// TODO: Reenable when we figure out why it gets stuck on CI.
// 'react-compiler/react-compiler': 'error',
+ 'no-restricted-imports': [
+ 'error',
+ {
+ paths: [
+ {
+ name: '@atproto/api',
+ importNames: ['moderatePost'],
+ message:
+ 'Please use `moderatePost_wrapped` from `#/lib/moderatePost_wrapped` instead.',
+ },
+ ],
+ },
+ ],
},
ignorePatterns: [
'**/__mocks__/*.ts',
diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts
index 0da9551e30..f226de992b 100644
--- a/__tests__/lib/string.test.ts
+++ b/__tests__/lib/string.test.ts
@@ -340,12 +340,14 @@ describe('parseEmbedPlayerFromUrl', () => {
'https://youtube.com/watch?v=videoId',
'https://youtube.com/watch?v=videoId&feature=share',
'https://youtube.com/shorts/videoId',
+ 'https://youtube.com/live/videoId',
'https://m.youtube.com/watch?v=videoId',
'https://music.youtube.com/watch?v=videoId',
'https://youtube.com/shorts/',
'https://youtube.com/',
'https://youtube.com/random',
+ 'https://youtube.com/live/',
'https://twitch.tv/channelName',
'https://www.twitch.tv/channelName',
@@ -475,10 +477,16 @@ describe('parseEmbedPlayerFromUrl', () => {
source: 'youtube',
playerUri: 'https://bsky.app/iframe/youtube.html?videoId=videoId&start=0',
},
+ {
+ type: 'youtube_video',
+ source: 'youtube',
+ playerUri: 'https://bsky.app/iframe/youtube.html?videoId=videoId&start=0',
+ },
undefined,
undefined,
undefined,
+ undefined,
{
type: 'twitch_video',
diff --git a/assets/icons/eye_stroke2_corner0_rounded.svg b/assets/icons/eye_stroke2_corner0_rounded.svg
new file mode 100644
index 0000000000..035daa6e1c
--- /dev/null
+++ b/assets/icons/eye_stroke2_corner0_rounded.svg
@@ -0,0 +1 @@
+
diff --git a/bskyembed/.eslintrc b/bskyembed/.eslintrc
index e6e575a11c..2b290d5815 100644
--- a/bskyembed/.eslintrc
+++ b/bskyembed/.eslintrc
@@ -10,11 +10,12 @@
],
"rules": {
"simple-import-sort/imports": "warn",
- "simple-import-sort/exports": "warn"
+ "simple-import-sort/exports": "warn",
+ 'no-else-return': 'off'
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest",
"project": "./bskyembed/tsconfig.json"
}
-}
\ No newline at end of file
+}
diff --git a/bskyembed/assets/starterPack.svg b/bskyembed/assets/starterPack.svg
new file mode 100644
index 0000000000..eb8dd710fe
--- /dev/null
+++ b/bskyembed/assets/starterPack.svg
@@ -0,0 +1 @@
+
diff --git a/bskyembed/package.json b/bskyembed/package.json
index f610e8c064..cb9a46213b 100644
--- a/bskyembed/package.json
+++ b/bskyembed/package.json
@@ -9,7 +9,7 @@
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx src"
},
"dependencies": {
- "@atproto/api": "^0.12.2",
+ "@atproto/api": "0.13.1",
"@preact/preset-vite": "^2.8.2",
"@vitejs/plugin-legacy": "^5.3.2",
"preact": "^10.4.8",
diff --git a/bskyembed/src/components/embed.tsx b/bskyembed/src/components/embed.tsx
index 1dadfee38e..600c7c2c3a 100644
--- a/bskyembed/src/components/embed.tsx
+++ b/bskyembed/src/components/embed.tsx
@@ -6,12 +6,15 @@ import {
AppBskyFeedDefs,
AppBskyFeedPost,
AppBskyGraphDefs,
+ AppBskyGraphStarterpack,
AppBskyLabelerDefs,
+ AtUri,
} from '@atproto/api'
import {ComponentChildren, h} from 'preact'
import {useMemo} from 'preact/hooks'
import infoIcon from '../../assets/circleInfo_stroke2_corner0_rounded.svg'
+import starterPackIcon from '../../assets/starterPack.svg'
import {CONTENT_LABELS, labelsToInfo} from '../labels'
import {getRkey} from '../utils'
import {Link} from './link'
@@ -105,7 +108,7 @@ export function Embed({
// Case 3.2: List
if (AppBskyGraphDefs.isListView(record)) {
return (
-
- )
+ // Embed type does not exist in the app, so show nothing
+ return null
}
- // Case 3.5: Post not found
+ // Case 3.5: Starter pack
+ if (AppBskyGraphDefs.isStarterPackViewBasic(record)) {
+ return
+ }
+
+ // Case 3.6: Post not found
if (AppBskyEmbedRecord.isViewNotFound(record)) {
return Quoted post not found, it may have been deleted.
}
- // Case 3.6: Post blocked
+ // Case 3.7: Post blocked
if (AppBskyEmbedRecord.isViewBlocked(record)) {
return The quoted post is blocked.
}
- throw new Error('Unknown embed type')
+ // Unknown embed type
+ return null
}
// Case 4: Record with media
@@ -182,7 +184,8 @@ export function Embed({
)
}
- throw new Error('Unsupported embed type')
+ // Unknown embed type
+ return null
} catch (err) {
return (
{err instanceof Error ? err.message : 'An error occurred'}
@@ -314,7 +317,7 @@ function ExternalEmbed({
)
}
-function GenericWithImage({
+function GenericWithImageEmbed({
title,
subtitle,
href,
@@ -350,3 +353,60 @@ function GenericWithImage({
)
}
+
+function StarterPackEmbed({
+ content,
+}: {
+ content: AppBskyGraphDefs.StarterPackViewBasic
+}) {
+ if (!AppBskyGraphStarterpack.isRecord(content.record)) {
+ return null
+ }
+
+ const starterPackHref = getStarterPackHref(content)
+ const imageUri = getStarterPackImage(content)
+
+ return (
+
+
+
+
+

+
+
+ {content.record.name}
+
+
+ Starter pack by{' '}
+ {content.creator.displayName || `@${content.creator.handle}`}
+
+
+
+ {content.record.description && (
+
{content.record.description}
+ )}
+ {!!content.joinedAllTimeCount && content.joinedAllTimeCount > 50 && (
+
+ {content.joinedAllTimeCount} users have joined!
+
+ )}
+
+
+ )
+}
+
+// from #/lib/strings/starter-pack.ts
+function getStarterPackImage(starterPack: AppBskyGraphDefs.StarterPackView) {
+ const rkey = new AtUri(starterPack.uri).rkey
+ return `https://ogcard.cdn.bsky.app/start/${starterPack.creator.did}/${rkey}`
+}
+
+function getStarterPackHref(
+ starterPack: AppBskyGraphDefs.StarterPackViewBasic,
+) {
+ const rkey = new AtUri(starterPack.uri).rkey
+ const handleOrDid = starterPack.creator.handle || starterPack.creator.did
+ return `/starter-pack/${handleOrDid}/${rkey}`
+}
diff --git a/bskyembed/src/components/post.tsx b/bskyembed/src/components/post.tsx
index d23c84cbfb..1d1e8f4d81 100644
--- a/bskyembed/src/components/post.tsx
+++ b/bskyembed/src/components/post.tsx
@@ -132,7 +132,10 @@ function PostContent({record}: {record: AppBskyFeedPost.Record | null}) {
key={counter}
href={segment.link.uri}
className="text-blue-400 hover:underline"
- disableTracking={!segment.link.uri.startsWith('https://bsky.app')}>
+ disableTracking={
+ !segment.link.uri.startsWith('https://bsky.app') &&
+ !segment.link.uri.startsWith('https://go.bsky.app')
+ }>
{segment.text}
,
)
diff --git a/bskyembed/src/screens/post.tsx b/bskyembed/src/screens/post.tsx
index 337bf01007..6ccf10a791 100644
--- a/bskyembed/src/screens/post.tsx
+++ b/bskyembed/src/screens/post.tsx
@@ -1,6 +1,6 @@
import '../index.css'
-import {AppBskyFeedDefs, BskyAgent} from '@atproto/api'
+import {AppBskyFeedDefs, AtpAgent} from '@atproto/api'
import {h, render} from 'preact'
import logo from '../../assets/logo.svg'
@@ -12,7 +12,7 @@ import {getRkey} from '../utils'
const root = document.getElementById('app')
if (!root) throw new Error('No root element')
-const agent = new BskyAgent({
+const agent = new AtpAgent({
service: 'https://public.api.bsky.app',
})
diff --git a/bskyembed/yarn.lock b/bskyembed/yarn.lock
index 60efe36845..ca52dc0747 100644
--- a/bskyembed/yarn.lock
+++ b/bskyembed/yarn.lock
@@ -20,15 +20,16 @@
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.24"
-"@atproto/api@^0.12.2":
- version "0.12.2"
- resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.2.tgz#5df6d4f60dea0395c84fdebd9e81a7e853edf130"
- integrity sha512-UVzCiDZH2j0wrr/O8nb1edD5cYLVqB5iujueXUCbHS3rAwIxgmyLtA3Hzm2QYsGPo/+xsIg1fNvpq9rNT6KWUA==
+"@atproto/api@0.13.1":
+ version "0.13.1"
+ resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.13.1.tgz#fbf4306e4465d5467aaf031308c1b47dcc8039d0"
+ integrity sha512-DL3iBfavn8Nnl48FmnAreQB0k0cIkW531DJ5JAHUCQZo10Nq0ZLk2/WFxcs0KuBG5wuLnGUdo+Y6/GQPVq8dYw==
dependencies:
"@atproto/common-web" "^0.3.0"
- "@atproto/lexicon" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc" "^0.5.0"
+ "@atproto/xrpc" "^0.6.0"
+ await-lock "^2.2.2"
multiformats "^9.9.0"
tlds "^1.234.0"
@@ -42,29 +43,29 @@
uint8arrays "3.0.0"
zod "^3.21.4"
-"@atproto/lexicon@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.0.tgz#63e8829945d80c25524882caa8ed27b1151cc576"
- integrity sha512-RvCBKdSI4M8qWm5uTNz1z3R2yIvIhmOsMuleOj8YR6BwRD+QbtUBy3l+xQ7iXf4M5fdfJFxaUNa6Ty0iRwdKqQ==
+"@atproto/lexicon@^0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.1.tgz#19155210570a2fafbcc7d4f655d9b813948e72a0"
+ integrity sha512-bzyr+/VHXLQWbumViX5L7h1NKQObfs8Z+XZJl43OUK8nYFUI4e/sW1IZKRNfw7Wvi5YVNK+J+yP3DWIBZhkCYA==
dependencies:
"@atproto/common-web" "^0.3.0"
"@atproto/syntax" "^0.3.0"
iso-datestring-validator "^2.2.2"
multiformats "^9.9.0"
- zod "^3.21.4"
+ zod "^3.23.8"
"@atproto/syntax@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@atproto/syntax/-/syntax-0.3.0.tgz#fafa2dbea9add37253005cb663e7373e05e618b3"
integrity sha512-Weq0ZBxffGHDXHl9U7BQc2BFJi/e23AL+k+i5+D9hUq/bzT4yjGsrCejkjq0xt82xXDjmhhvQSZ0LqxyZ5woxA==
-"@atproto/xrpc@^0.5.0":
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/@atproto/xrpc/-/xrpc-0.5.0.tgz#dacbfd8f7b13f0ab5bd56f8fdd4b460e132a6032"
- integrity sha512-swu+wyOLvYW4l3n+VAuJbHcPcES+tin2Lsrp8Bw5aIXIICiuFn1YMFlwK9JwVUzTH21Py1s1nHEjr4CJeElJog==
+"@atproto/xrpc@^0.6.0":
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/@atproto/xrpc/-/xrpc-0.6.0.tgz#668c3262e67e2afa65951ea79a03bfe3720ddf5c"
+ integrity sha512-5BbhBTv5j6MC3iIQ4+vYxQE7nLy2dDGQ+LYJrH8PptOCUdq0Pwg6aRccQ3y52kUZlhE/mzOTZ8Ngiy9pSAyfVQ==
dependencies:
- "@atproto/lexicon" "^0.4.0"
- zod "^3.21.4"
+ "@atproto/lexicon" "^0.4.1"
+ zod "^3.23.8"
"@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2":
version "7.24.2"
@@ -1710,6 +1711,11 @@ available-typed-arrays@^1.0.7:
dependencies:
possible-typed-array-names "^1.0.0"
+await-lock@^2.2.2:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/await-lock/-/await-lock-2.2.2.tgz#a95a9b269bfd2f69d22b17a321686f551152bcef"
+ integrity sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw==
+
babel-plugin-polyfill-corejs2@^0.4.10:
version "0.4.10"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz#276f41710b03a64f6467433cab72cbc2653c38b1"
@@ -3730,8 +3736,16 @@ stack-trace@^1.0.0-pre2:
resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-1.0.0-pre2.tgz#46a83a79f1b287807e9aaafc6a5dd8bcde626f9c"
integrity sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==
-"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0:
- name string-width-cjs
+"string-width-cjs@npm:string-width@^4.2.0":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
+string-width@^4.1.0:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -3795,7 +3809,14 @@ string.prototype.trimstart@^1.0.8:
define-properties "^1.2.1"
es-object-atoms "^1.0.0"
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -4192,3 +4213,8 @@ zod@^3.21.4:
version "3.22.4"
resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.4.tgz#f31c3a9386f61b1f228af56faa9255e845cf3fff"
integrity sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==
+
+zod@^3.23.8:
+ version "3.23.8"
+ resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d"
+ integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==
diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go
index fdef01ce78..203ed62f4e 100644
--- a/bskyweb/cmd/bskyweb/server.go
+++ b/bskyweb/cmd/bskyweb/server.go
@@ -255,6 +255,7 @@ func serve(cctx *cli.Context) error {
e.GET("/profile/:handleOrDID/post/:rkey", server.WebPost)
e.GET("/profile/:handleOrDID/post/:rkey/liked-by", server.WebGeneric)
e.GET("/profile/:handleOrDID/post/:rkey/reposted-by", server.WebGeneric)
+ e.GET("/profile/:handleOrDID/post/:rkey/quotes", server.WebGeneric)
// starter packs
e.GET("/starter-pack/:handleOrDID/:rkey", server.WebStarterPack)
diff --git a/index.js b/index.js
index 7630d0538a..2f13ce1ea1 100644
--- a/index.js
+++ b/index.js
@@ -1,14 +1,11 @@
import 'react-native-gesture-handler' // must be first
-import {LogBox} from 'react-native'
-
import '#/platform/polyfills'
-import {IS_TEST} from '#/env'
+
+import {LogBox} from 'react-native'
import {registerRootComponent} from 'expo'
-import {doPolyfill} from '#/lib/api/api-polyfill'
import App from '#/App'
-
-doPolyfill()
+import {IS_TEST} from '#/env'
if (IS_TEST) {
LogBox.ignoreAllLogs() // suppress all logs in tests
diff --git a/index.web.js b/index.web.js
index 9623734512..be75bc772e 100644
--- a/index.web.js
+++ b/index.web.js
@@ -1,9 +1,8 @@
import '#/platform/markBundleStartTime'
-
import '#/platform/polyfills'
+
import {registerRootComponent} from 'expo'
-import {doPolyfill} from '#/lib/api/api-polyfill'
+
import App from '#/App'
-doPolyfill()
registerRootComponent(App)
diff --git a/jest/test-pds.ts b/jest/test-pds.ts
index 2fe623ca98..962bb7b48e 100644
--- a/jest/test-pds.ts
+++ b/jest/test-pds.ts
@@ -79,32 +79,33 @@ export async function createServer(
plc: {port: port2},
})
+ // DISABLED - looks like dev-env added this and now it conflicts
// add the test mod authority
- const agent = new BskyAgent({service: pdsUrl})
- const res = await agent.api.com.atproto.server.createAccount({
- email: 'mod-authority@test.com',
- handle: 'mod-authority.test',
- password: 'hunter2',
- })
- agent.api.setHeader('Authorization', `Bearer ${res.data.accessJwt}`)
- await agent.api.app.bsky.actor.profile.create(
- {repo: res.data.did},
- {
- displayName: 'Dev-env Moderation',
- description: `The pretend version of mod.bsky.app`,
- },
- )
+ // const agent = new BskyAgent({service: pdsUrl})
+ // const res = await agent.api.com.atproto.server.createAccount({
+ // email: 'mod-authority@test.com',
+ // handle: 'mod-authority.test',
+ // password: 'hunter2',
+ // })
+ // agent.api.setHeader('Authorization', `Bearer ${res.data.accessJwt}`)
+ // await agent.api.app.bsky.actor.profile.create(
+ // {repo: res.data.did},
+ // {
+ // displayName: 'Dev-env Moderation',
+ // description: `The pretend version of mod.bsky.app`,
+ // },
+ // )
- await agent.api.app.bsky.labeler.service.create(
- {repo: res.data.did, rkey: 'self'},
- {
- policies: {
- labelValues: ['!hide', '!warn'],
- labelValueDefinitions: [],
- },
- createdAt: new Date().toISOString(),
- },
- )
+ // await agent.api.app.bsky.labeler.service.create(
+ // {repo: res.data.did, rkey: 'self'},
+ // {
+ // policies: {
+ // labelValues: ['!hide', '!warn'],
+ // labelValueDefinitions: [],
+ // },
+ // createdAt: new Date().toISOString(),
+ // },
+ // )
const pic = fs.readFileSync(
path.join(__dirname, '..', 'assets', 'default-avatar.png'),
@@ -156,7 +157,7 @@ class Mocker {
}
async createUser(name: string) {
- const agent = new BskyAgent({service: this.agent.service})
+ const agent = new BskyAgent({service: this.service})
const inviteRes = await agent.api.com.atproto.server.createInviteCode(
{useCount: 1},
@@ -332,7 +333,7 @@ class Mocker {
}
async createInvite(forAccount: string) {
- const agent = new BskyAgent({service: this.agent.service})
+ const agent = new BskyAgent({service: this.service})
await agent.api.com.atproto.server.createInviteCode(
{useCount: 1, forAccount},
{
diff --git a/modules/expo-bluesky-swiss-army/index.ts b/modules/expo-bluesky-swiss-army/index.ts
index ebd67913e0..2cf4f36c52 100644
--- a/modules/expo-bluesky-swiss-army/index.ts
+++ b/modules/expo-bluesky-swiss-army/index.ts
@@ -1,6 +1,7 @@
import * as PlatformInfo from './src/PlatformInfo'
+import {AudioCategory} from './src/PlatformInfo/types'
import * as Referrer from './src/Referrer'
import * as SharedPrefs from './src/SharedPrefs'
import VisibilityView from './src/VisibilityView'
-export {PlatformInfo, Referrer, SharedPrefs, VisibilityView}
+export {AudioCategory, PlatformInfo, Referrer, SharedPrefs, VisibilityView}
diff --git a/modules/expo-bluesky-swiss-army/ios/PlatformInfo/ExpoPlatformInfoModule.swift b/modules/expo-bluesky-swiss-army/ios/PlatformInfo/ExpoPlatformInfoModule.swift
index 4a1e6d7e7d..02bf5c6628 100644
--- a/modules/expo-bluesky-swiss-army/ios/PlatformInfo/ExpoPlatformInfoModule.swift
+++ b/modules/expo-bluesky-swiss-army/ios/PlatformInfo/ExpoPlatformInfoModule.swift
@@ -1,11 +1,46 @@
import ExpoModulesCore
public class ExpoPlatformInfoModule: Module {
+ private var prevAudioActive: Bool?
+ private var prevAudioCategory: AVAudioSession.Category?
+
public func definition() -> ModuleDefinition {
Name("ExpoPlatformInfo")
Function("getIsReducedMotionEnabled") {
return UIAccessibility.isReduceMotionEnabled
}
+
+ Function("setAudioCategory") { (audioCategoryString: String) in
+ let audioCategory = AVAudioSession.Category(rawValue: audioCategoryString)
+ if audioCategory == self.prevAudioCategory {
+ return
+ }
+ self.prevAudioCategory = audioCategory
+ DispatchQueue.global(qos: .background).async {
+ try? AVAudioSession.sharedInstance().setCategory(audioCategory)
+ }
+ }
+
+ Function("setAudioActive") { (active: Bool) in
+ if active == self.prevAudioActive {
+ return
+ }
+ self.prevAudioActive = active
+ if active {
+ DispatchQueue.global(qos: .background).async {
+ try? AVAudioSession.sharedInstance().setActive(true)
+ }
+ } else {
+ DispatchQueue.global(qos: .background).async {
+ try? AVAudioSession
+ .sharedInstance()
+ .setActive(
+ false,
+ options: [.notifyOthersOnDeactivation]
+ )
+ }
+ }
+ }
}
}
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
index e05f173d64..b515206d9f 100644
--- a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts
@@ -1,7 +1,20 @@
+import {Platform} from 'react-native'
import {requireNativeModule} from 'expo-modules-core'
+import {AudioCategory} from './types'
+
const NativeModule = requireNativeModule('ExpoPlatformInfo')
export function getIsReducedMotionEnabled(): boolean {
return NativeModule.getIsReducedMotionEnabled()
}
+
+export function setAudioActive(active: boolean): void {
+ if (Platform.OS !== 'ios') return
+ NativeModule.setAudioActive(active)
+}
+
+export function setAudioCategory(audioCategory: AudioCategory): void {
+ if (Platform.OS !== 'ios') return
+ NativeModule.setAudioCategory(audioCategory)
+}
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts
index 9b9b7fc0c7..81f8c45f4d 100644
--- a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts
@@ -1,5 +1,25 @@
import {NotImplementedError} from '../NotImplemented'
+import {AudioCategory} from './types'
export function getIsReducedMotionEnabled(): boolean {
throw new NotImplementedError()
}
+
+/**
+ * Set whether the app's audio should mix with other apps' audio. Will also resume background music playback when `false`
+ * if it was previously playing.
+ * @param mixWithOthers
+ * @see https://developer.apple.com/documentation/avfaudio/avaudiosession/setactiveoptions/1616603-notifyothersondeactivation
+ */
+export function setAudioActive(active: boolean): void {
+ throw new NotImplementedError({active})
+}
+
+/**
+ * Set the audio category for the app.
+ * @param audioCategory
+ * @platform ios
+ */
+export function setAudioCategory(audioCategory: AudioCategory): void {
+ throw new NotImplementedError({audioCategory})
+}
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
index c7ae6b7cd4..61412753c9 100644
--- a/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts
@@ -1,6 +1,17 @@
+import {NotImplementedError} from '../NotImplemented'
+import {AudioCategory} from './types'
+
export function getIsReducedMotionEnabled(): boolean {
if (typeof window === 'undefined') {
return false
}
return window.matchMedia('(prefers-reduced-motion: reduce)').matches
}
+
+export function setAudioActive(active: boolean): void {
+ throw new NotImplementedError({active})
+}
+
+export function setAudioCategory(audioCategory: AudioCategory): void {
+ throw new NotImplementedError({audioCategory})
+}
diff --git a/modules/expo-bluesky-swiss-army/src/PlatformInfo/types.ts b/modules/expo-bluesky-swiss-army/src/PlatformInfo/types.ts
new file mode 100644
index 0000000000..374f343183
--- /dev/null
+++ b/modules/expo-bluesky-swiss-army/src/PlatformInfo/types.ts
@@ -0,0 +1,15 @@
+/**
+ * Sets the audio session category on iOS. In general, we should only need to use this for the `playback` and `ambient`
+ * categories. This enum however includes other categories that are available in the native API for clarity and
+ * potential future use.
+ * @see https://developer.apple.com/documentation/avfoundation/avaudiosession/category
+ * @platform ios
+ */
+export enum AudioCategory {
+ Ambient = 'AVAudioSessionCategoryAmbient',
+ Playback = 'AVAudioSessionCategoryPlayback',
+ _SoloAmbient = 'AVAudioSessionCategorySoloAmbient',
+ _Record = 'AVAudioSessionCategoryRecord',
+ _PlayAndRecord = 'AVAudioSessionCategoryPlayAndRecord',
+ _MultiRoute = 'AVAudioSessionCategoryMultiRoute',
+}
diff --git a/package.json b/package.json
index faeee448c9..8f34b8b503 100644
--- a/package.json
+++ b/package.json
@@ -32,7 +32,7 @@
"lint-native": "swiftlint ./modules && ktlint ./modules",
"lint-native:fix": "swiftlint --fix ./modules && ktlint --format ./modules",
"typecheck": "tsc --project ./tsconfig.check.json",
- "e2e:mock-server": "./jest/dev-infra/with-test-redis-and-db.sh ts-node --project tsconfig.e2e.json __e2e__/mock-server.ts",
+ "e2e:mock-server": "NODE_ENV=development ./jest/dev-infra/with-test-redis-and-db.sh ts-node --project tsconfig.e2e.json __e2e__/mock-server.ts",
"e2e:metro": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios",
"e2e:metro-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android",
"e2e:run": "maestro test __e2e__",
@@ -52,7 +52,7 @@
"open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web"
},
"dependencies": {
- "@atproto/api": "0.12.29",
+ "@atproto/api": "0.13.3",
"@bam.tech/react-native-image-resizer": "^3.0.4",
"@braintree/sanitize-url": "^6.0.2",
"@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet",
@@ -139,7 +139,7 @@
"expo-system-ui": "~3.0.4",
"expo-task-manager": "~11.8.1",
"expo-updates": "~0.25.14",
- "expo-video": "^1.1.10",
+ "expo-video": "^1.2.4",
"expo-web-browser": "~13.0.3",
"fast-text-encoding": "^1.0.6",
"history": "^5.3.0",
@@ -208,7 +208,7 @@
"zod": "^3.20.2"
},
"devDependencies": {
- "@atproto/dev-env": "^0.3.5",
+ "@atproto/dev-env": "^0.3.39",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
diff --git a/patches/@atproto+lexicon+0.4.0.patch b/patches/@atproto+lexicon+0.4.0.patch
deleted file mode 100644
index 4643db32af..0000000000
--- a/patches/@atproto+lexicon+0.4.0.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/node_modules/@atproto/lexicon/dist/validators/complex.js b/node_modules/@atproto/lexicon/dist/validators/complex.js
-index 32d7798..9d688b7 100644
---- a/node_modules/@atproto/lexicon/dist/validators/complex.js
-+++ b/node_modules/@atproto/lexicon/dist/validators/complex.js
-@@ -113,7 +113,22 @@ function object(lexicons, path, def, value) {
- if (value[key] === null && nullableProps.has(key)) {
- continue;
- }
-- const propDef = def.properties[key];
-+ const propDef = def.properties[key]
-+ if (typeof value[key] === 'undefined' && !requiredProps.has(key)) {
-+ // Fast path for non-required undefined props.
-+ if (
-+ propDef.type === 'integer' ||
-+ propDef.type === 'boolean' ||
-+ propDef.type === 'string'
-+ ) {
-+ if (typeof propDef.default === 'undefined') {
-+ continue
-+ }
-+ } else {
-+ // Other types have no defaults.
-+ continue
-+ }
-+ }
- const propPath = `${path}/${key}`;
- const validated = (0, util_1.validateOneOf)(lexicons, propPath, propDef, value[key]);
- const propValue = validated.success ? validated.value : value[key];
diff --git a/patches/expo-modules-core+1.12.11.patch b/patches/expo-modules-core+1.12.11.patch
index a4ee027c81..4bfecb3880 100644
--- a/patches/expo-modules-core+1.12.11.patch
+++ b/patches/expo-modules-core+1.12.11.patch
@@ -13,7 +13,7 @@ index bb74e80..0aa0202 100644
Map constants = new HashMap<>(3);
constants.put(MODULES_CONSTANTS_KEY, new HashMap<>());
diff --git a/node_modules/expo-modules-core/build/uuid/uuid.js b/node_modules/expo-modules-core/build/uuid/uuid.js
-index 109d3fe..c7fce9e 100644
+index 109d3fe..c421931 100644
--- a/node_modules/expo-modules-core/build/uuid/uuid.js
+++ b/node_modules/expo-modules-core/build/uuid/uuid.js
@@ -1,5 +1,7 @@
@@ -24,3 +24,16 @@ index 109d3fe..c7fce9e 100644
const nativeUuidv4 = globalThis?.expo?.uuidv4;
const nativeUuidv5 = globalThis?.expo?.uuidv5;
function uuidv4() {
+diff --git a/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift b/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift
+index ee2268a..4851b67 100644
+--- a/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift
++++ b/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift
+@@ -173,7 +173,7 @@ public final class SharedObjectRegistry {
+ }
+
+ internal func clear() {
+- Self.lockQueue.async {
++ Self.lockQueue.sync {
+ self.pairs.removeAll()
+ }
+ }
diff --git a/patches/expo-video+1.1.10.patch b/patches/expo-video+1.1.10.patch
deleted file mode 100644
index b183be9d41..0000000000
--- a/patches/expo-video+1.1.10.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt
-+++ b/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt
-@@ -11,6 +11,7 @@ internal fun PlayerView.applyRequiresLinearPlayback(requireLinearPlayback: Boole
- setShowPreviousButton(!requireLinearPlayback)
- setShowNextButton(!requireLinearPlayback)
- setTimeBarInteractive(requireLinearPlayback)
-+ setShowSubtitleButton(true)
- }
-
- @androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class)
-@@ -27,7 +28,8 @@ internal fun PlayerView.setTimeBarInteractive(interactive: Boolean) {
-
- @androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class)
- internal fun PlayerView.setFullscreenButtonVisibility(visible: Boolean) {
-- val fullscreenButton = findViewById(androidx.media3.ui.R.id.exo_fullscreen)
-+ val fullscreenButton =
-+ findViewById(androidx.media3.ui.R.id.exo_fullscreen)
- fullscreenButton?.visibility = if (visible) {
- android.view.View.VISIBLE
- } else {
diff --git a/patches/expo-video+1.2.4.patch b/patches/expo-video+1.2.4.patch
new file mode 100644
index 0000000000..918c8a8d25
--- /dev/null
+++ b/patches/expo-video+1.2.4.patch
@@ -0,0 +1,135 @@
+diff --git a/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt b/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt
+index 9905e13..47342ff 100644
+--- a/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt
++++ b/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt
+@@ -11,6 +11,7 @@ internal fun PlayerView.applyRequiresLinearPlayback(requireLinearPlayback: Boole
+ setShowPreviousButton(!requireLinearPlayback)
+ setShowNextButton(!requireLinearPlayback)
+ setTimeBarInteractive(requireLinearPlayback)
++ setShowSubtitleButton(true)
+ }
+
+ @androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class)
+@@ -27,7 +28,8 @@ internal fun PlayerView.setTimeBarInteractive(interactive: Boolean) {
+
+ @androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class)
+ internal fun PlayerView.setFullscreenButtonVisibility(visible: Boolean) {
+- val fullscreenButton = findViewById(androidx.media3.ui.R.id.exo_fullscreen)
++ val fullscreenButton =
++ findViewById(androidx.media3.ui.R.id.exo_fullscreen)
+ fullscreenButton?.visibility = if (visible) {
+ android.view.View.VISIBLE
+ } else {
+diff --git a/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoModule.kt b/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoModule.kt
+index ec3da2a..5a1397a 100644
+--- a/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoModule.kt
++++ b/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoModule.kt
+@@ -43,7 +43,9 @@ class VideoModule : Module() {
+ View(VideoView::class) {
+ Events(
+ "onPictureInPictureStart",
+- "onPictureInPictureStop"
++ "onPictureInPictureStop",
++ "onEnterFullscreen",
++ "onExitFullscreen"
+ )
+
+ Prop("player") { view: VideoView, player: VideoPlayer ->
+diff --git a/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoView.kt b/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoView.kt
+index a951d80..3932535 100644
+--- a/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoView.kt
++++ b/node_modules/expo-video/android/src/main/java/expo/modules/video/VideoView.kt
+@@ -36,6 +36,8 @@ class VideoView(context: Context, appContext: AppContext) : ExpoView(context, ap
+ val playerView: PlayerView = PlayerView(context.applicationContext)
+ val onPictureInPictureStart by EventDispatcher()
+ val onPictureInPictureStop by EventDispatcher()
++ val onEnterFullscreen by EventDispatcher()
++ val onExitFullscreen by EventDispatcher()
+
+ var willEnterPiP: Boolean = false
+ var isInFullscreen: Boolean = false
+@@ -154,6 +156,7 @@ class VideoView(context: Context, appContext: AppContext) : ExpoView(context, ap
+ @Suppress("DEPRECATION")
+ currentActivity.overridePendingTransition(0, 0)
+ }
++ onEnterFullscreen(mapOf())
+ isInFullscreen = true
+ }
+
+@@ -162,6 +165,7 @@ class VideoView(context: Context, appContext: AppContext) : ExpoView(context, ap
+ val fullScreenButton: ImageButton = playerView.findViewById(androidx.media3.ui.R.id.exo_fullscreen)
+ fullScreenButton.setImageResource(androidx.media3.ui.R.drawable.exo_icon_fullscreen_enter)
+ videoPlayer?.changePlayerView(playerView)
++ this.onExitFullscreen(mapOf())
+ isInFullscreen = false
+ }
+
+diff --git a/node_modules/expo-video/build/VideoView.types.d.ts b/node_modules/expo-video/build/VideoView.types.d.ts
+index cb9ca6d..60e9f4e 100644
+--- a/node_modules/expo-video/build/VideoView.types.d.ts
++++ b/node_modules/expo-video/build/VideoView.types.d.ts
+@@ -89,5 +89,8 @@ export interface VideoViewProps extends ViewProps {
+ * @platform ios 16.0+
+ */
+ allowsVideoFrameAnalysis?: boolean;
++
++ onEnterFullscreen?: () => void;
++ onExitFullscreen?: () => void;
+ }
+ //# sourceMappingURL=VideoView.types.d.ts.map
+diff --git a/node_modules/expo-video/ios/VideoModule.swift b/node_modules/expo-video/ios/VideoModule.swift
+index c537a12..e4a918f 100644
+--- a/node_modules/expo-video/ios/VideoModule.swift
++++ b/node_modules/expo-video/ios/VideoModule.swift
+@@ -16,7 +16,9 @@ public final class VideoModule: Module {
+ View(VideoView.self) {
+ Events(
+ "onPictureInPictureStart",
+- "onPictureInPictureStop"
++ "onPictureInPictureStop",
++ "onEnterFullscreen",
++ "onExitFullscreen"
+ )
+
+ Prop("player") { (view, player: VideoPlayer?) in
+diff --git a/node_modules/expo-video/ios/VideoView.swift b/node_modules/expo-video/ios/VideoView.swift
+index f4579e4..10c5908 100644
+--- a/node_modules/expo-video/ios/VideoView.swift
++++ b/node_modules/expo-video/ios/VideoView.swift
+@@ -41,6 +41,8 @@ public final class VideoView: ExpoView, AVPlayerViewControllerDelegate {
+
+ let onPictureInPictureStart = EventDispatcher()
+ let onPictureInPictureStop = EventDispatcher()
++ let onEnterFullscreen = EventDispatcher()
++ let onExitFullscreen = EventDispatcher()
+
+ public override var bounds: CGRect {
+ didSet {
+@@ -163,6 +165,7 @@ public final class VideoView: ExpoView, AVPlayerViewControllerDelegate {
+ _ playerViewController: AVPlayerViewController,
+ willBeginFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator
+ ) {
++ onEnterFullscreen()
+ isFullscreen = true
+ }
+
+@@ -179,6 +182,7 @@ public final class VideoView: ExpoView, AVPlayerViewControllerDelegate {
+ if wasPlaying {
+ self.player?.pointer.play()
+ }
++ self.onExitFullscreen()
+ self.isFullscreen = false
+ }
+ }
+diff --git a/node_modules/expo-video/src/VideoView.types.ts b/node_modules/expo-video/src/VideoView.types.ts
+index 29fe5db..e1fbf59 100644
+--- a/node_modules/expo-video/src/VideoView.types.ts
++++ b/node_modules/expo-video/src/VideoView.types.ts
+@@ -100,4 +100,7 @@ export interface VideoViewProps extends ViewProps {
+ * @platform ios 16.0+
+ */
+ allowsVideoFrameAnalysis?: boolean;
++
++ onEnterFullscreen?: () => void;
++ onExitFullscreen?: () => void;
+ }
diff --git a/patches/expo-video+1.2.4.patch.md b/patches/expo-video+1.2.4.patch.md
new file mode 100644
index 0000000000..689cf9a926
--- /dev/null
+++ b/patches/expo-video+1.2.4.patch.md
@@ -0,0 +1,6 @@
+## uwu woad beawing, do not wemove
+
+## `expo-video` Patch
+
+This patch adds two props to `VideoView`: `onEnterFullscreen` and `onExitFullscreen` which do exactly what they say on
+the tin.
diff --git a/src/App.native.tsx b/src/App.native.tsx
index d2c20fc8e7..69c7629bf8 100644
--- a/src/App.native.tsx
+++ b/src/App.native.tsx
@@ -50,6 +50,7 @@ import {Provider as LoggedOutViewProvider} from '#/state/shell/logged-out'
import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide'
import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed'
import {Provider as StarterPackProvider} from '#/state/shell/starter-pack'
+import {Provider as HiddenRepliesProvider} from '#/state/threadgate-hidden-replies'
import {TestCtrls} from '#/view/com/testing/TestCtrls'
import {ActiveVideoProvider} from '#/view/com/util/post-embeds/ActiveVideoContext'
import * as Toast from '#/view/com/util/Toast'
@@ -61,6 +62,7 @@ import {Provider as PortalProvider} from '#/components/Portal'
import {Splash} from '#/Splash'
import {Provider as TourProvider} from '#/tours'
import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider'
+import {AudioCategory, PlatformInfo} from '../modules/expo-bluesky-swiss-army'
SplashScreen.preventAutoHideAsync()
@@ -121,21 +123,23 @@ function InnerApp() {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -157,6 +161,8 @@ function App() {
const [isReady, setReady] = useState(false)
React.useEffect(() => {
+ PlatformInfo.setAudioCategory(AudioCategory.Ambient)
+ PlatformInfo.setAudioActive(false)
initPersistedState().then(() => setReady(true))
}, [])
diff --git a/src/App.web.tsx b/src/App.web.tsx
index df6fbf2449..9ec792530a 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -39,6 +39,7 @@ import {Provider as LoggedOutViewProvider} from '#/state/shell/logged-out'
import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide'
import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed'
import {Provider as StarterPackProvider} from '#/state/shell/starter-pack'
+import {Provider as HiddenRepliesProvider} from '#/state/threadgate-hidden-replies'
import {ActiveVideoProvider} from '#/view/com/util/post-embeds/ActiveVideoContext'
import * as Toast from '#/view/com/util/Toast'
import {ToastContainer} from '#/view/com/util/Toast.web'
@@ -105,19 +106,21 @@ function InnerApp() {
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 79856879c3..960e66bbad 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -15,10 +15,12 @@ import {
StackActions,
} from '@react-navigation/native'
-import {timeout} from 'lib/async/timeout'
-import {useColorSchemeStyle} from 'lib/hooks/useColorSchemeStyle'
-import {usePalette} from 'lib/hooks/usePalette'
-import {buildStateObject} from 'lib/routes/helpers'
+import {init as initAnalytics} from '#/lib/analytics/analytics'
+import {timeout} from '#/lib/async/timeout'
+import {useColorSchemeStyle} from '#/lib/hooks/useColorSchemeStyle'
+import {usePalette} from '#/lib/hooks/usePalette'
+import {useWebScrollRestoration} from '#/lib/hooks/useWebScrollRestoration'
+import {buildStateObject} from '#/lib/routes/helpers'
import {
AllNavigatorParams,
BottomTabNavigatorParams,
@@ -28,20 +30,62 @@ import {
MyProfileTabNavigatorParams,
NotificationsTabNavigatorParams,
SearchTabNavigatorParams,
-} from 'lib/routes/types'
-import {RouteParams, State} from 'lib/routes/types'
-import {bskyTitle} from 'lib/strings/headings'
-import {isAndroid, isNative, isWeb} from 'platform/detection'
+} from '#/lib/routes/types'
+import {RouteParams, State} from '#/lib/routes/types'
+import {attachRouteToLogEvents, logEvent} from '#/lib/statsig/statsig'
+import {bskyTitle} from '#/lib/strings/headings'
+import {isAndroid, isNative, isWeb} from '#/platform/detection'
+import {useModalControls} from '#/state/modals'
+import {useUnreadNotifications} from '#/state/queries/notifications/unread'
+import {useSession} from '#/state/session'
+import {
+ shouldRequestEmailConfirmation,
+ snoozeEmailConfirmationPrompt,
+} from '#/state/shell/reminders'
+import {AccessibilitySettingsScreen} from '#/view/screens/AccessibilitySettings'
+import {AppPasswords} from '#/view/screens/AppPasswords'
+import {CommunityGuidelinesScreen} from '#/view/screens/CommunityGuidelines'
+import {CopyrightPolicyScreen} from '#/view/screens/CopyrightPolicy'
+import {DebugModScreen} from '#/view/screens/DebugMod'
+import {FeedsScreen} from '#/view/screens/Feeds'
+import {HomeScreen} from '#/view/screens/Home'
+import {LanguageSettingsScreen} from '#/view/screens/LanguageSettings'
+import {ListsScreen} from '#/view/screens/Lists'
+import {LogScreen} from '#/view/screens/Log'
+import {ModerationBlockedAccounts} from '#/view/screens/ModerationBlockedAccounts'
+import {ModerationModlistsScreen} from '#/view/screens/ModerationModlists'
+import {ModerationMutedAccounts} from '#/view/screens/ModerationMutedAccounts'
+import {NotFoundScreen} from '#/view/screens/NotFound'
+import {NotificationsScreen} from '#/view/screens/Notifications'
+import {NotificationsSettingsScreen} from '#/view/screens/NotificationsSettings'
+import {PostThreadScreen} from '#/view/screens/PostThread'
import {PreferencesExternalEmbeds} from '#/view/screens/PreferencesExternalEmbeds'
-import {AppPasswords} from 'view/screens/AppPasswords'
-import {ModerationBlockedAccounts} from 'view/screens/ModerationBlockedAccounts'
-import {ModerationMutedAccounts} from 'view/screens/ModerationMutedAccounts'
-import {PreferencesFollowingFeed} from 'view/screens/PreferencesFollowingFeed'
-import {PreferencesThreads} from 'view/screens/PreferencesThreads'
-import {SavedFeeds} from 'view/screens/SavedFeeds'
+import {PreferencesFollowingFeed} from '#/view/screens/PreferencesFollowingFeed'
+import {PreferencesThreads} from '#/view/screens/PreferencesThreads'
+import {PrivacyPolicyScreen} from '#/view/screens/PrivacyPolicy'
+import {ProfileScreen} from '#/view/screens/Profile'
+import {ProfileFeedScreen} from '#/view/screens/ProfileFeed'
+import {ProfileFeedLikedByScreen} from '#/view/screens/ProfileFeedLikedBy'
+import {ProfileFollowersScreen} from '#/view/screens/ProfileFollowers'
+import {ProfileFollowsScreen} from '#/view/screens/ProfileFollows'
+import {ProfileListScreen} from '#/view/screens/ProfileList'
+import {SavedFeeds} from '#/view/screens/SavedFeeds'
+import {SearchScreen} from '#/view/screens/Search'
+import {SettingsScreen} from '#/view/screens/Settings'
+import {Storybook} from '#/view/screens/Storybook'
+import {SupportScreen} from '#/view/screens/Support'
+import {TermsOfServiceScreen} from '#/view/screens/TermsOfService'
+import {BottomBar} from '#/view/shell/bottom-bar/BottomBar'
+import {createNativeStackNavigatorWithAuth} from '#/view/shell/createNativeStackNavigatorWithAuth'
import {SharedPreferencesTesterScreen} from '#/screens/E2E/SharedPreferencesTesterScreen'
import HashtagScreen from '#/screens/Hashtag'
+import {MessagesConversationScreen} from '#/screens/Messages/Conversation'
+import {MessagesScreen} from '#/screens/Messages/List'
+import {MessagesSettingsScreen} from '#/screens/Messages/Settings'
import {ModerationScreen} from '#/screens/Moderation'
+import {PostLikedByScreen} from '#/screens/Post/PostLikedBy'
+import {PostQuotesScreen} from '#/screens/Post/PostQuotes'
+import {PostRepostedByScreen} from '#/screens/Post/PostRepostedBy'
import {ProfileKnownFollowersScreen} from '#/screens/Profile/KnownFollowers'
import {ProfileLabelerLikedByScreen} from '#/screens/Profile/ProfileLabelerLikedBy'
import {AppearanceSettingsScreen} from '#/screens/Settings/AppearanceSettings'
@@ -50,51 +94,8 @@ import {
StarterPackScreenShort,
} from '#/screens/StarterPack/StarterPackScreen'
import {Wizard} from '#/screens/StarterPack/Wizard'
+import {router} from '#/routes'
import {Referrer} from '../modules/expo-bluesky-swiss-army'
-import {init as initAnalytics} from './lib/analytics/analytics'
-import {useWebScrollRestoration} from './lib/hooks/useWebScrollRestoration'
-import {attachRouteToLogEvents, logEvent} from './lib/statsig/statsig'
-import {router} from './routes'
-import {MessagesConversationScreen} from './screens/Messages/Conversation'
-import {MessagesScreen} from './screens/Messages/List'
-import {MessagesSettingsScreen} from './screens/Messages/Settings'
-import {useModalControls} from './state/modals'
-import {useUnreadNotifications} from './state/queries/notifications/unread'
-import {useSession} from './state/session'
-import {
- shouldRequestEmailConfirmation,
- snoozeEmailConfirmationPrompt,
-} from './state/shell/reminders'
-import {AccessibilitySettingsScreen} from './view/screens/AccessibilitySettings'
-import {CommunityGuidelinesScreen} from './view/screens/CommunityGuidelines'
-import {CopyrightPolicyScreen} from './view/screens/CopyrightPolicy'
-import {DebugModScreen} from './view/screens/DebugMod'
-import {FeedsScreen} from './view/screens/Feeds'
-import {HomeScreen} from './view/screens/Home'
-import {LanguageSettingsScreen} from './view/screens/LanguageSettings'
-import {ListsScreen} from './view/screens/Lists'
-import {LogScreen} from './view/screens/Log'
-import {ModerationModlistsScreen} from './view/screens/ModerationModlists'
-import {NotFoundScreen} from './view/screens/NotFound'
-import {NotificationsScreen} from './view/screens/Notifications'
-import {NotificationsSettingsScreen} from './view/screens/NotificationsSettings'
-import {PostLikedByScreen} from './view/screens/PostLikedBy'
-import {PostRepostedByScreen} from './view/screens/PostRepostedBy'
-import {PostThreadScreen} from './view/screens/PostThread'
-import {PrivacyPolicyScreen} from './view/screens/PrivacyPolicy'
-import {ProfileScreen} from './view/screens/Profile'
-import {ProfileFeedScreen} from './view/screens/ProfileFeed'
-import {ProfileFeedLikedByScreen} from './view/screens/ProfileFeedLikedBy'
-import {ProfileFollowersScreen} from './view/screens/ProfileFollowers'
-import {ProfileFollowsScreen} from './view/screens/ProfileFollows'
-import {ProfileListScreen} from './view/screens/ProfileList'
-import {SearchScreen} from './view/screens/Search'
-import {SettingsScreen} from './view/screens/Settings'
-import {Storybook} from './view/screens/Storybook'
-import {SupportScreen} from './view/screens/Support'
-import {TermsOfServiceScreen} from './view/screens/TermsOfService'
-import {BottomBar} from './view/shell/bottom-bar/BottomBar'
-import {createNativeStackNavigatorWithAuth} from './view/shell/createNativeStackNavigatorWithAuth'
const navigationRef = createNavigationContainerRef()
@@ -212,6 +213,13 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
title: title(msg`Post by @${route.params.name}`),
})}
/>
+ PostQuotesScreen}
+ options={({route}) => ({
+ title: title(msg`Post by @${route.params.name}`),
+ })}
+ />
ProfileFeedScreen}
diff --git a/src/alf/themes.ts b/src/alf/themes.ts
index ba18ee0072..f5d2247f9f 100644
--- a/src/alf/themes.ts
+++ b/src/alf/themes.ts
@@ -186,19 +186,19 @@ export function createThemes({
white: color.gray_0,
black: color.trueBlack,
- contrast_25: color.gray_1000,
- contrast_50: color.gray_975,
- contrast_100: color.gray_950,
- contrast_200: color.gray_900,
- contrast_300: color.gray_800,
- contrast_400: color.gray_700,
- contrast_500: color.gray_600,
- contrast_600: color.gray_500,
- contrast_700: color.gray_400,
- contrast_800: color.gray_300,
- contrast_900: color.gray_200,
- contrast_950: color.gray_100,
- contrast_975: color.gray_50,
+ contrast_25: color.gray_975,
+ contrast_50: color.gray_950,
+ contrast_100: color.gray_900,
+ contrast_200: color.gray_800,
+ contrast_300: color.gray_700,
+ contrast_400: color.gray_600,
+ contrast_500: color.gray_500,
+ contrast_600: color.gray_400,
+ contrast_700: color.gray_300,
+ contrast_800: color.gray_200,
+ contrast_900: color.gray_100,
+ contrast_950: color.gray_50,
+ contrast_975: color.gray_25,
primary_25: color.primary_975,
primary_50: color.primary_950,
@@ -400,7 +400,7 @@ export function createThemes({
color: darkPalette.contrast_400,
},
text_contrast_medium: {
- color: darkPalette.contrast_700,
+ color: darkPalette.contrast_600,
},
text_contrast_high: {
color: darkPalette.contrast_900,
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
index 4fe0ab4b12..d65444e1f7 100644
--- a/src/components/Button.tsx
+++ b/src/components/Button.tsx
@@ -1,6 +1,8 @@
import React from 'react'
import {
AccessibilityProps,
+ GestureResponderEvent,
+ MouseEvent,
Pressable,
PressableProps,
StyleProp,
@@ -65,7 +67,15 @@ type NonTextElements =
export type ButtonProps = Pick<
PressableProps,
- 'disabled' | 'onPress' | 'testID' | 'onLongPress' | 'hitSlop'
+ | 'disabled'
+ | 'onPress'
+ | 'testID'
+ | 'onLongPress'
+ | 'hitSlop'
+ | 'onHoverIn'
+ | 'onHoverOut'
+ | 'onPressIn'
+ | 'onPressOut'
> &
AccessibilityProps &
VariantProps & {
@@ -115,30 +125,50 @@ export const Button = React.forwardRef(
focused: false,
})
- const onPressIn = React.useCallback(() => {
- setState(s => ({
- ...s,
- pressed: true,
- }))
- }, [setState])
- const onPressOut = React.useCallback(() => {
- setState(s => ({
- ...s,
- pressed: false,
- }))
- }, [setState])
- const onHoverIn = React.useCallback(() => {
- setState(s => ({
- ...s,
- hovered: true,
- }))
- }, [setState])
- const onHoverOut = React.useCallback(() => {
- setState(s => ({
- ...s,
- hovered: false,
- }))
- }, [setState])
+ const onPressInOuter = rest.onPressIn
+ const onPressIn = React.useCallback(
+ (e: GestureResponderEvent) => {
+ setState(s => ({
+ ...s,
+ pressed: true,
+ }))
+ onPressInOuter?.(e)
+ },
+ [setState, onPressInOuter],
+ )
+ const onPressOutOuter = rest.onPressOut
+ const onPressOut = React.useCallback(
+ (e: GestureResponderEvent) => {
+ setState(s => ({
+ ...s,
+ pressed: false,
+ }))
+ onPressOutOuter?.(e)
+ },
+ [setState, onPressOutOuter],
+ )
+ const onHoverInOuter = rest.onHoverIn
+ const onHoverIn = React.useCallback(
+ (e: MouseEvent) => {
+ setState(s => ({
+ ...s,
+ hovered: true,
+ }))
+ onHoverInOuter?.(e)
+ },
+ [setState, onHoverInOuter],
+ )
+ const onHoverOutOuter = rest.onHoverOut
+ const onHoverOut = React.useCallback(
+ (e: MouseEvent) => {
+ setState(s => ({
+ ...s,
+ hovered: false,
+ }))
+ onHoverOutOuter?.(e)
+ },
+ [setState, onHoverOutOuter],
+ )
const onFocus = React.useCallback(() => {
setState(s => ({
...s,
@@ -202,28 +232,10 @@ export const Button = React.forwardRef(
} else if (color === 'secondary') {
if (variant === 'solid') {
if (!disabled) {
- baseStyles.push({
- backgroundColor: select(t.name, {
- light: t.palette.contrast_25,
- dim: t.palette.contrast_100,
- dark: t.palette.contrast_100,
- }),
- })
- hoverStyles.push({
- backgroundColor: select(t.name, {
- light: t.palette.contrast_50,
- dim: t.palette.contrast_200,
- dark: t.palette.contrast_200,
- }),
- })
+ baseStyles.push(t.atoms.bg_contrast_25)
+ hoverStyles.push(t.atoms.bg_contrast_50)
} else {
- baseStyles.push({
- backgroundColor: select(t.name, {
- light: t.palette.contrast_100,
- dim: t.palette.contrast_25,
- dark: t.palette.contrast_25,
- }),
- })
+ baseStyles.push(t.atoms.bg_contrast_100)
}
} else if (variant === 'outline') {
baseStyles.push(a.border, t.atoms.bg, {
diff --git a/src/components/Error.tsx b/src/components/Error.tsx
index 481532434a..59d219831c 100644
--- a/src/components/Error.tsx
+++ b/src/components/Error.tsx
@@ -2,21 +2,18 @@ import React from 'react'
import {View} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {useNavigation} from '@react-navigation/core'
-import {StackActions} from '@react-navigation/native'
-import {NavigationProp} from 'lib/routes/types'
+import {useGoBack} from 'lib/hooks/useGoBack'
import {CenteredView} from 'view/com/util/Views'
import {atoms as a, useBreakpoints, useTheme} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import {Text} from '#/components/Typography'
-import {router} from '#/routes'
export function Error({
title,
message,
onRetry,
- onGoBack: onGoBackProp,
+ onGoBack,
hideBackButton,
sideBorders = true,
}: {
@@ -27,31 +24,10 @@ export function Error({
hideBackButton?: boolean
sideBorders?: boolean
}) {
- const navigation = useNavigation()
const {_} = useLingui()
const t = useTheme()
const {gtMobile} = useBreakpoints()
-
- const canGoBack = navigation.canGoBack()
- const onGoBack = React.useCallback(() => {
- if (onGoBackProp) {
- onGoBackProp()
- return
- }
- if (canGoBack) {
- navigation.goBack()
- } else {
- navigation.navigate('HomeTab')
-
- // Checking the state for routes ensures that web doesn't encounter errors while going back
- if (navigation.getState()?.routes) {
- navigation.dispatch(StackActions.push(...router.matchPath('/')))
- } else {
- navigation.navigate('HomeTab')
- navigation.dispatch(StackActions.popToTop())
- }
- }
- }, [navigation, canGoBack, onGoBackProp])
+ const goBack = useGoBack(onGoBack)
return (
diff --git a/src/components/ListCard.tsx b/src/components/ListCard.tsx
index 0ed27cf50f..829f36d471 100644
--- a/src/components/ListCard.tsx
+++ b/src/components/ListCard.tsx
@@ -1,13 +1,20 @@
import React from 'react'
import {View} from 'react-native'
-import {AppBskyActorDefs, AppBskyGraphDefs, AtUri} from '@atproto/api'
+import {
+ AppBskyActorDefs,
+ AppBskyGraphDefs,
+ AtUri,
+ moderateUserList,
+ ModerationUI,
+} from '@atproto/api'
import {Trans} from '@lingui/macro'
import {useQueryClient} from '@tanstack/react-query'
import {sanitizeHandle} from 'lib/strings/handles'
+import {useModerationOpts} from 'state/preferences/moderation-opts'
import {precacheList} from 'state/queries/feed'
-import {useTheme} from '#/alf'
-import {atoms as a} from '#/alf'
+import {useSession} from 'state/session'
+import {atoms as a, useTheme} from '#/alf'
import {
Avatar,
Description,
@@ -16,6 +23,7 @@ import {
SaveButton,
} from '#/components/FeedCard'
import {Link as InternalLink, LinkProps} from '#/components/Link'
+import * as Hider from '#/components/moderation/Hider'
import {Text} from '#/components/Typography'
/*
@@ -43,6 +51,11 @@ type Props = {
export function Default(props: Props) {
const {view, showPinButton} = props
+ const moderationOpts = useModerationOpts()
+ const moderation = moderationOpts
+ ? moderateUserList(view, moderationOpts)
+ : undefined
+
return (
@@ -52,6 +65,7 @@ export function Default(props: Props) {
title={view.name}
creator={view.creator}
purpose={view.purpose}
+ modUi={moderation?.ui('contentView')}
/>
{showPinButton && view.purpose === CURATELIST && (
@@ -89,18 +103,40 @@ export function TitleAndByline({
title,
creator,
purpose = CURATELIST,
+ modUi,
}: {
title: string
creator?: AppBskyActorDefs.ProfileViewBasic
purpose?: AppBskyGraphDefs.ListView['purpose']
+ modUi?: ModerationUI
}) {
const t = useTheme()
+ const {currentAccount} = useSession()
return (
-
- {title}
-
+
+
+
+ Hidden list
+
+
+
+
+ {title}
+
+
+
+
{creator && (
({
// @ts-ignore
control: null,
})
+
+export const ItemContext = React.createContext({
+ disabled: false,
+})
diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx
index 3be69b3486..a0a21a50f9 100644
--- a/src/components/Menu/index.tsx
+++ b/src/components/Menu/index.tsx
@@ -9,7 +9,7 @@ import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import {useInteractionState} from '#/components/hooks/useInteractionState'
-import {Context} from '#/components/Menu/context'
+import {Context, ItemContext} from '#/components/Menu/context'
import {
ContextType,
GroupProps,
@@ -125,8 +125,14 @@ export function Item({children, label, style, onPress, ...rest}: ItemProps) {
}}
onFocus={onFocus}
onBlur={onBlur}
- onPressIn={onPressIn}
- onPressOut={onPressOut}
+ onPressIn={e => {
+ onPressIn()
+ rest.onPressIn?.(e)
+ }}
+ onPressOut={e => {
+ onPressOut()
+ rest.onPressOut?.(e)
+ }}
style={[
a.flex_row,
a.align_center,
@@ -138,15 +144,18 @@ export function Item({children, label, style, onPress, ...rest}: ItemProps) {
t.atoms.border_contrast_low,
{minHeight: 44, paddingVertical: 10},
style,
- (focused || pressed) && [t.atoms.bg_contrast_50],
+ (focused || pressed) && !rest.disabled && [t.atoms.bg_contrast_50],
]}>
- {children}
+
+ {children}
+
)
}
export function ItemText({children, style}: ItemTextProps) {
const t = useTheme()
+ const {disabled} = React.useContext(ItemContext)
return (
{children}
@@ -166,7 +176,17 @@ export function ItemText({children, style}: ItemTextProps) {
export function ItemIcon({icon: Comp}: ItemIconProps) {
const t = useTheme()
- return
+ const {disabled} = React.useContext(ItemContext)
+ return (
+
+ )
}
export function Group({children, style}: GroupProps) {
diff --git a/src/components/Menu/index.web.tsx b/src/components/Menu/index.web.tsx
index 031250ddef..6d2f5e9416 100644
--- a/src/components/Menu/index.web.tsx
+++ b/src/components/Menu/index.web.tsx
@@ -9,7 +9,7 @@ import * as DropdownMenu from '@radix-ui/react-dropdown-menu'
import {atoms as a, flatten, useTheme, web} from '#/alf'
import * as Dialog from '#/components/Dialog'
import {useInteractionState} from '#/components/hooks/useInteractionState'
-import {Context} from '#/components/Menu/context'
+import {Context, ItemContext} from '#/components/Menu/context'
import {
ContextType,
GroupProps,
@@ -239,18 +239,21 @@ export function Item({children, label, onPress, ...rest}: ItemProps) {
a.rounded_xs,
{minHeight: 32, paddingHorizontal: 10},
web({outline: 0}),
- (hovered || focused) && [
- web({outline: '0 !important'}),
- t.name === 'light'
- ? t.atoms.bg_contrast_25
- : t.atoms.bg_contrast_50,
- ],
+ (hovered || focused) &&
+ !rest.disabled && [
+ web({outline: '0 !important'}),
+ t.name === 'light'
+ ? t.atoms.bg_contrast_25
+ : t.atoms.bg_contrast_50,
+ ],
])}
{...web({
onMouseEnter,
onMouseLeave,
})}>
- {children}
+
+ {children}
+
)
@@ -258,8 +261,16 @@ export function Item({children, label, onPress, ...rest}: ItemProps) {
export function ItemText({children, style}: ItemTextProps) {
const t = useTheme()
+ const {disabled} = React.useContext(ItemContext)
return (
-
+
{children}
)
@@ -267,10 +278,9 @@ export function ItemText({children, style}: ItemTextProps) {
export function ItemIcon({icon: Comp, position = 'left'}: ItemIconProps) {
const t = useTheme()
+ const {disabled} = React.useContext(ItemContext)
return (
-
+ ]}>
+
+
)
}
diff --git a/src/components/Menu/types.ts b/src/components/Menu/types.ts
index e710971ee9..2f7aea5de5 100644
--- a/src/components/Menu/types.ts
+++ b/src/components/Menu/types.ts
@@ -1,18 +1,22 @@
import React from 'react'
import {
+ AccessibilityProps,
GestureResponderEvent,
PressableProps,
- AccessibilityProps,
} from 'react-native'
-import {Props as SVGIconProps} from '#/components/icons/common'
-import * as Dialog from '#/components/Dialog'
import {TextStyleProp, ViewStyleProp} from '#/alf'
+import * as Dialog from '#/components/Dialog'
+import {Props as SVGIconProps} from '#/components/icons/common'
export type ContextType = {
control: Dialog.DialogOuterProps['control']
}
+export type ItemContextType = {
+ disabled: boolean
+}
+
export type RadixPassThroughTriggerProps = {
id: string
type: 'button'
diff --git a/src/components/Pills.tsx b/src/components/Pills.tsx
index 2fff999373..742a11667c 100644
--- a/src/components/Pills.tsx
+++ b/src/components/Pills.tsx
@@ -13,6 +13,15 @@ import {
} from '#/components/moderation/ModerationDetailsDialog'
import {Text} from '#/components/Typography'
+export type AppModerationCause =
+ | ModerationCause
+ | {
+ type: 'reply-hidden'
+ source: {type: 'user'; did: string}
+ priority: 6
+ downgraded?: boolean
+ }
+
export type CommonProps = {
size?: 'sm' | 'lg'
}
@@ -40,7 +49,7 @@ export function Row({
}
export type LabelProps = {
- cause: ModerationCause
+ cause: AppModerationCause
disableDetailsDialog?: boolean
noBg?: boolean
} & CommonProps
diff --git a/src/components/ReportDialog/SubmitView.tsx b/src/components/ReportDialog/SubmitView.tsx
index 7ceece75b6..2def0fa4b4 100644
--- a/src/components/ReportDialog/SubmitView.tsx
+++ b/src/components/ReportDialog/SubmitView.tsx
@@ -6,7 +6,6 @@ import {useLingui} from '@lingui/react'
import {getLabelingServiceTitle} from '#/lib/moderation'
import {ReportOption} from '#/lib/moderation/useReportOptions'
-import {useGate} from '#/lib/statsig/statsig'
import {useAgent} from '#/state/session'
import {CharProgress} from '#/view/com/composer/char-progress/CharProgress'
import * as Toast from '#/view/com/util/Toast'
@@ -37,7 +36,6 @@ export function SubmitView({
const t = useTheme()
const {_} = useLingui()
const agent = useAgent()
- const gate = useGate()
const [details, setDetails] = React.useState('')
const [submitting, setSubmitting] = React.useState(false)
const [selectedServices, setSelectedServices] = React.useState([
@@ -63,27 +61,17 @@ export function SubmitView({
}
const results = await Promise.all(
selectedServices.map(did => {
- if (gate('session_withproxy_fix')) {
- return agent
- .createModerationReport(report, {
- encoding: 'application/json',
- headers: {
- 'atproto-proxy': `${did}#atproto_labeler`,
- },
- })
- .then(
- _ => true,
- _ => false,
- )
- } else {
- return agent
- .withProxy('atproto_labeler', did)
- .createModerationReport(report)
- .then(
- _ => true,
- _ => false,
- )
- }
+ return agent
+ .createModerationReport(report, {
+ encoding: 'application/json',
+ headers: {
+ 'atproto-proxy': `${did}#atproto_labeler`,
+ },
+ })
+ .then(
+ _ => true,
+ _ => false,
+ )
}),
)
@@ -108,7 +96,6 @@ export function SubmitView({
onSubmitComplete,
setError,
agent,
- gate,
])
return (
diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx
index 3249f1b32e..6174bff021 100644
--- a/src/components/StarterPack/Main/ProfilesList.tsx
+++ b/src/components/StarterPack/Main/ProfilesList.tsx
@@ -9,14 +9,15 @@ import {
import {InfiniteData, UseInfiniteQueryResult} from '@tanstack/react-query'
import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset'
+import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
import {isBlockedOrBlocking} from 'lib/moderation/blocked-and-muted'
import {isNative, isWeb} from 'platform/detection'
-import {useListMembersQuery} from 'state/queries/list-members'
+import {useAllListMembersQuery} from 'state/queries/list-members'
import {useSession} from 'state/session'
import {List, ListRef} from 'view/com/util/List'
import {SectionRef} from '#/screens/Profile/Sections/types'
import {atoms as a, useTheme} from '#/alf'
-import {ListMaybePlaceholder} from '#/components/Lists'
+import {ListFooter, ListMaybePlaceholder} from '#/components/Lists'
import {Default as ProfileCard} from '#/components/ProfileCard'
function keyExtractor(item: AppBskyActorDefs.ProfileViewBasic, index: number) {
@@ -39,17 +40,20 @@ export const ProfilesList = React.forwardRef(
ref,
) {
const t = useTheme()
- const [initialHeaderHeight] = React.useState(headerHeight)
- const bottomBarOffset = useBottomBarOffset(20)
+ const bottomBarOffset = useBottomBarOffset(200)
+ const initialNumToRender = useInitialNumToRender()
const {currentAccount} = useSession()
- const {data, refetch, isError} = useListMembersQuery(listUri, 50)
+ const {data, refetch, isError} = useAllListMembersQuery(listUri)
const [isPTRing, setIsPTRing] = React.useState(false)
// The server returns these sorted by descending creation date, so we want to invert
- const profiles = data?.pages
- .flatMap(p => p.items.map(i => i.subject))
- .filter(p => !isBlockedOrBlocking(p) && !p.associated?.labeler)
+
+ const profiles = data
+ ?.filter(
+ p => !isBlockedOrBlocking(p.subject) && !p.subject.associated?.labeler,
+ )
+ .map(p => p.subject)
.reverse()
const isOwn = new AtUri(listUri).host === currentAccount?.did
@@ -99,7 +103,11 @@ export const ProfilesList = React.forwardRef(
if (!data) {
return (
-
+
(
ref={scrollElRef}
headerOffset={headerHeight}
ListFooterComponent={
-
+
}
showsVerticalScrollIndicator={false}
desktopFixedHeight
+ initialNumToRender={initialNumToRender}
refreshing={isPTRing}
onRefresh={async () => {
setIsPTRing(true)
diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx
index dc9e4b70da..4c4bf246ea 100644
--- a/src/components/StarterPack/StarterPackCard.tsx
+++ b/src/components/StarterPack/StarterPackCard.tsx
@@ -1,8 +1,7 @@
import React from 'react'
import {View} from 'react-native'
import {Image} from 'expo-image'
-import {AppBskyGraphStarterpack, AtUri} from '@atproto/api'
-import {StarterPackViewBasic} from '@atproto/api/dist/client/types/app/bsky/graph/defs'
+import {AppBskyGraphDefs, AppBskyGraphStarterpack, AtUri} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'
@@ -17,7 +16,11 @@ import {StarterPack} from '#/components/icons/StarterPack'
import {BaseLink} from '#/components/Link'
import {Text} from '#/components/Typography'
-export function Default({starterPack}: {starterPack?: StarterPackViewBasic}) {
+export function Default({
+ starterPack,
+}: {
+ starterPack?: AppBskyGraphDefs.StarterPackViewBasic
+}) {
if (!starterPack) return null
return (
@@ -29,7 +32,7 @@ export function Default({starterPack}: {starterPack?: StarterPackViewBasic}) {
export function Notification({
starterPack,
}: {
- starterPack?: StarterPackViewBasic
+ starterPack?: AppBskyGraphDefs.StarterPackViewBasic
}) {
if (!starterPack) return null
return (
@@ -44,7 +47,7 @@ export function Card({
noIcon,
noDescription,
}: {
- starterPack: StarterPackViewBasic
+ starterPack: AppBskyGraphDefs.StarterPackViewBasic
noIcon?: boolean
noDescription?: boolean
}) {
@@ -94,7 +97,7 @@ export function Link({
starterPack,
children,
}: {
- starterPack: StarterPackViewBasic
+ starterPack: AppBskyGraphDefs.StarterPackViewBasic
onPress?: () => void
children: React.ReactNode
}) {
@@ -129,7 +132,11 @@ export function Link({
)
}
-export function Embed({starterPack}: {starterPack: StarterPackViewBasic}) {
+export function Embed({
+ starterPack,
+}: {
+ starterPack: AppBskyGraphDefs.StarterPackViewBasic
+}) {
const t = useTheme()
const imageUri = getStarterPackOgCard(starterPack)
diff --git a/src/components/StarterPack/Wizard/WizardEditListDialog.tsx b/src/components/StarterPack/Wizard/WizardEditListDialog.tsx
index cf755e1bcf..870cbbb9fd 100644
--- a/src/components/StarterPack/Wizard/WizardEditListDialog.tsx
+++ b/src/components/StarterPack/Wizard/WizardEditListDialog.tsx
@@ -7,6 +7,7 @@ import {BottomSheetFlatListMethods} from '@discord/bottom-sheet'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
+import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
import {isWeb} from 'platform/detection'
import {useSession} from 'state/session'
import {WizardAction, WizardState} from '#/screens/StarterPack/Wizard/State'
@@ -42,6 +43,7 @@ export function WizardEditListDialog({
const {_} = useLingui()
const t = useTheme()
const {currentAccount} = useSession()
+ const initialNumToRender = useInitialNumToRender()
const listRef = useRef(null)
@@ -148,6 +150,7 @@ export function WizardEditListDialog({
webInnerStyle={[a.py_0, {maxWidth: 500, minWidth: 200}]}
keyboardDismissMode="on-drag"
removeClippedSubviews={true}
+ initialNumToRender={initialNumToRender}
/>
)
diff --git a/src/components/StarterPack/Wizard/WizardListCard.tsx b/src/components/StarterPack/Wizard/WizardListCard.tsx
index 55cf0f02b3..bd308fc73a 100644
--- a/src/components/StarterPack/Wizard/WizardListCard.tsx
+++ b/src/components/StarterPack/Wizard/WizardListCard.tsx
@@ -12,7 +12,7 @@ import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {DISCOVER_FEED_URI} from 'lib/constants'
+import {DISCOVER_FEED_URI, STARTER_PACK_MAX_SIZE} from 'lib/constants'
import {sanitizeDisplayName} from 'lib/strings/display-names'
import {sanitizeHandle} from 'lib/strings/handles'
import {useSession} from 'state/session'
@@ -130,7 +130,8 @@ export function WizardProfileCard({
const isMe = profile.did === currentAccount?.did
const included = isMe || state.profiles.some(p => p.did === profile.did)
- const disabled = isMe || (!included && state.profiles.length >= 49)
+ const disabled =
+ isMe || (!included && state.profiles.length >= STARTER_PACK_MAX_SIZE - 1)
const moderationUi = moderateProfile(profile, moderationOpts).ui('avatar')
const displayName = profile.displayName
? sanitizeDisplayName(profile.displayName)
diff --git a/src/components/WhoCanReply.tsx b/src/components/WhoCanReply.tsx
index 1ffb4da39d..ab6ef8293c 100644
--- a/src/components/WhoCanReply.tsx
+++ b/src/components/WhoCanReply.tsx
@@ -1,39 +1,34 @@
import React from 'react'
-import {Keyboard, StyleProp, View, ViewStyle} from 'react-native'
+import {Keyboard, Platform, StyleProp, View, ViewStyle} from 'react-native'
import {
AppBskyFeedDefs,
- AppBskyFeedGetPostThread,
+ AppBskyFeedPost,
AppBskyGraphDefs,
AtUri,
- BskyAgent,
} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
-import {useQueryClient} from '@tanstack/react-query'
-import {createThreadgate} from '#/lib/api'
-import {until} from '#/lib/async/until'
import {HITSLOP_10} from '#/lib/constants'
import {makeListLink, makeProfileLink} from '#/lib/routes/links'
-import {logger} from '#/logger'
import {isNative} from '#/platform/detection'
-import {RQKEY_ROOT as POST_THREAD_RQKEY_ROOT} from '#/state/queries/post-thread'
import {
- ThreadgateSetting,
- threadgateViewToSettings,
+ ThreadgateAllowUISetting,
+ threadgateViewToAllowUISetting,
} from '#/state/queries/threadgate'
-import {useAgent} from '#/state/session'
-import * as Toast from 'view/com/util/Toast'
import {atoms as a, useTheme} from '#/alf'
import {Button} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import {useDialogControl} from '#/components/Dialog'
+import {
+ PostInteractionSettingsDialog,
+ usePrefetchPostInteractionSettings,
+} from '#/components/dialogs/PostInteractionSettingsDialog'
import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/components/icons/CircleBanSign'
import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe'
import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group'
+import {InlineLinkText} from '#/components/Link'
import {Text} from '#/components/Typography'
-import {TextLink} from '../view/com/util/Link'
-import {ThreadgateEditorDialog} from './dialogs/ThreadgateEditor'
import {PencilLine_Stroke2_Corner0_Rounded as PencilLine} from './icons/Pencil'
interface WhoCanReplyProps {
@@ -47,31 +42,34 @@ export function WhoCanReply({post, isThreadAuthor, style}: WhoCanReplyProps) {
const t = useTheme()
const infoDialogControl = useDialogControl()
const editDialogControl = useDialogControl()
- const agent = useAgent()
- const queryClient = useQueryClient()
- const settings = React.useMemo(
- () => threadgateViewToSettings(post.threadgate),
- [post],
- )
- const isRootPost = !('reply' in post.record)
+ /*
+ * `WhoCanReply` is only used for root posts atm, in case this changes
+ * unexpectedly, we should check to make sure it's for sure the root URI.
+ */
+ const rootUri =
+ AppBskyFeedPost.isRecord(post.record) && post.record.reply?.root
+ ? post.record.reply.root.uri
+ : post.uri
+ const settings = React.useMemo(() => {
+ return threadgateViewToAllowUISetting(post.threadgate)
+ }, [post.threadgate])
- if (!isRootPost) {
- return null
- }
- if (!settings.length && !isThreadAuthor) {
- return null
- }
+ const prefetchPostInteractionSettings = usePrefetchPostInteractionSettings({
+ postUri: post.uri,
+ rootPostUri: rootUri,
+ })
- const isEverybody = settings.length === 0
- const isNobody = !!settings.find(gate => gate.type === 'nobody')
- const description = isEverybody
+ const anyoneCanReply =
+ settings.length === 1 && settings[0].type === 'everybody'
+ const noOneCanReply = settings.length === 1 && settings[0].type === 'nobody'
+ const description = anyoneCanReply
? _(msg`Everybody can reply`)
- : isNobody
+ : noOneCanReply
? _(msg`Replies disabled`)
: _(msg`Some people can reply`)
- const onPressEdit = () => {
+ const onPressOpen = () => {
if (isNative && Keyboard.isVisible()) {
Keyboard.dismiss()
}
@@ -82,52 +80,23 @@ export function WhoCanReply({post, isThreadAuthor, style}: WhoCanReplyProps) {
}
}
- const onEditConfirm = async (newSettings: ThreadgateSetting[]) => {
- if (JSON.stringify(settings) === JSON.stringify(newSettings)) {
- return
- }
- try {
- if (newSettings.length) {
- await createThreadgate(agent, post.uri, newSettings)
- } else {
- await agent.api.com.atproto.repo.deleteRecord({
- repo: agent.session!.did,
- collection: 'app.bsky.feed.threadgate',
- rkey: new AtUri(post.uri).rkey,
- })
- }
- await whenAppViewReady(agent, post.uri, res => {
- const thread = res.data.thread
- if (AppBskyFeedDefs.isThreadViewPost(thread)) {
- const fetchedSettings = threadgateViewToSettings(
- thread.post.threadgate,
- )
- return JSON.stringify(fetchedSettings) === JSON.stringify(newSettings)
- }
- return false
- })
- Toast.show(_(msg`Thread settings updated`))
- queryClient.invalidateQueries({
- queryKey: [POST_THREAD_RQKEY_ROOT],
- })
- } catch (err) {
- Toast.show(
- _(
- msg`There was an issue. Please check your internet connection and try again.`,
- ),
- 'xmark',
- )
- logger.error('Failed to edit threadgate', {message: err})
- }
- }
-
return (
<>
-
- {isThreadAuthor && (
-
+ ) : (
+
)}
>
@@ -174,7 +148,7 @@ function Icon({
}: {
color: string
width?: number
- settings: ThreadgateSetting[]
+ settings: ThreadgateAllowUISetting[]
}) {
const isEverybody = settings.length === 0
const isNobody = !!settings.find(gate => gate.type === 'nobody')
@@ -186,79 +160,84 @@ function WhoCanReplyDialog({
control,
post,
settings,
+ embeddingDisabled,
}: {
control: Dialog.DialogControlProps
post: AppBskyFeedDefs.PostView
- settings: ThreadgateSetting[]
-}) {
- return (
-
-
-
-
- )
-}
-
-function WhoCanReplyDialogInner({
- post,
- settings,
-}: {
- post: AppBskyFeedDefs.PostView
- settings: ThreadgateSetting[]
+ settings: ThreadgateAllowUISetting[]
+ embeddingDisabled: boolean
}) {
const {_} = useLingui()
return (
-
-
-
- Who can reply?
-
-
-
-
+
+
+
+
+
+ Who can interact with this post?
+
+
+
+
+
)
}
function Rules({
post,
settings,
+ embeddingDisabled,
}: {
post: AppBskyFeedDefs.PostView
- settings: ThreadgateSetting[]
+ settings: ThreadgateAllowUISetting[]
+ embeddingDisabled: boolean
}) {
const t = useTheme()
+
return (
-
- {!settings.length ? (
- Everybody can reply
- ) : settings[0].type === 'nobody' ? (
- Replies to this thread are disabled
- ) : (
-
- Only{' '}
- {settings.map((rule, i) => (
- <>
-
-
- >
- ))}{' '}
- can reply
-
+ <>
+
+ {settings[0].type === 'everybody' ? (
+ Everybody can reply to this post.
+ ) : settings[0].type === 'nobody' ? (
+ Replies to this post are disabled.
+ ) : (
+
+ Only{' '}
+ {settings.map((rule, i) => (
+
+
+
+
+ ))}{' '}
+ can reply.
+
+ )}{' '}
+
+ {embeddingDisabled && (
+
+ No one but the author can quote this post.
+
)}
-
+ >
)
}
@@ -267,11 +246,10 @@ function Rule({
post,
lists,
}: {
- rule: ThreadgateSetting
+ rule: ThreadgateAllowUISetting
post: AppBskyFeedDefs.PostView
lists: AppBskyGraphDefs.ListViewBasic[] | undefined
}) {
- const t = useTheme()
if (rule.type === 'mention') {
return mentioned users
}
@@ -279,12 +257,12 @@ function Rule({
return (
users followed by{' '}
-
+
+ @{post.author.handle}
+
)
}
@@ -294,12 +272,12 @@ function Rule({
const listUrip = new AtUri(list.uri)
return (
- {' '}
+
+ {list.name}
+ {' '}
members
)
@@ -320,20 +298,3 @@ function Separator({i, length}: {i: number; length: number}) {
}
return <>, >
}
-
-async function whenAppViewReady(
- agent: BskyAgent,
- uri: string,
- fn: (res: AppBskyFeedGetPostThread.Response) => boolean,
-) {
- await until(
- 5, // 5 tries
- 1e3, // 1s delay between tries
- fn,
- () =>
- agent.app.bsky.feed.getPostThread({
- uri,
- depth: 0,
- }),
- )
-}
diff --git a/src/components/dialogs/GifSelect.tsx b/src/components/dialogs/GifSelect.tsx
index a64edcd6f0..4c60c6ebeb 100644
--- a/src/components/dialogs/GifSelect.tsx
+++ b/src/components/dialogs/GifSelect.tsx
@@ -249,7 +249,9 @@ function DialogError({details}: {details?: string}) {
const control = Dialog.useDialogContext()
return (
-
+
void
+ isSaving?: boolean
+
+ postgate: AppBskyFeedPostgate.Record
+ onChangePostgate: (v: AppBskyFeedPostgate.Record) => void
+
+ threadgateAllowUISettings: ThreadgateAllowUISetting[]
+ onChangeThreadgateAllowUISettings: (v: ThreadgateAllowUISetting[]) => void
+
+ replySettingsDisabled?: boolean
+}
+
+export function PostInteractionSettingsControlledDialog({
+ control,
+ ...rest
+}: PostInteractionSettingsFormProps & {
+ control: Dialog.DialogControlProps
+}) {
+ const {_} = useLingui()
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export type PostInteractionSettingsDialogProps = {
+ control: Dialog.DialogControlProps
+ /**
+ * URI of the post to edit the interaction settings for. Could be a root post
+ * or could be a reply.
+ */
+ postUri: string
+ /**
+ * The URI of the root post in the thread. Used to determine if the viewer
+ * owns the threadgate record and can therefore edit it.
+ */
+ rootPostUri: string
+ /**
+ * Optional initial {@link AppBskyFeedDefs.ThreadgateView} to use if we
+ * happen to have one before opening the settings dialog.
+ */
+ initialThreadgateView?: AppBskyFeedDefs.ThreadgateView
+}
+
+export function PostInteractionSettingsDialog(
+ props: PostInteractionSettingsDialogProps,
+) {
+ return (
+
+
+
+
+ )
+}
+
+export function PostInteractionSettingsDialogControlledInner(
+ props: PostInteractionSettingsDialogProps,
+) {
+ const {_} = useLingui()
+ const {currentAccount} = useSession()
+ const [isSaving, setIsSaving] = React.useState(false)
+
+ const {data: threadgateViewLoaded, isLoading: isLoadingThreadgate} =
+ useThreadgateViewQuery({postUri: props.rootPostUri})
+ const {data: postgate, isLoading: isLoadingPostgate} = usePostgateQuery({
+ postUri: props.postUri,
+ })
+
+ const {mutateAsync: writePostgateRecord} = useWritePostgateMutation()
+ const {mutateAsync: setThreadgateAllow} = useSetThreadgateAllowMutation()
+
+ const [editedPostgate, setEditedPostgate] =
+ React.useState()
+ const [editedAllowUISettings, setEditedAllowUISettings] =
+ React.useState()
+
+ const isLoading = isLoadingThreadgate || isLoadingPostgate
+ const threadgateView = threadgateViewLoaded || props.initialThreadgateView
+ const isThreadgateOwnedByViewer = React.useMemo(() => {
+ return currentAccount?.did === new AtUri(props.rootPostUri).host
+ }, [props.rootPostUri, currentAccount?.did])
+
+ const postgateValue = React.useMemo(() => {
+ return (
+ editedPostgate || postgate || createPostgateRecord({post: props.postUri})
+ )
+ }, [postgate, editedPostgate, props.postUri])
+ const allowUIValue = React.useMemo(() => {
+ return (
+ editedAllowUISettings || threadgateViewToAllowUISetting(threadgateView)
+ )
+ }, [threadgateView, editedAllowUISettings])
+
+ const onSave = React.useCallback(async () => {
+ if (!editedPostgate && !editedAllowUISettings) {
+ props.control.close()
+ return
+ }
+
+ setIsSaving(true)
+
+ try {
+ const requests = []
+
+ if (editedPostgate) {
+ requests.push(
+ writePostgateRecord({
+ postUri: props.postUri,
+ postgate: editedPostgate,
+ }),
+ )
+ }
+
+ if (editedAllowUISettings && isThreadgateOwnedByViewer) {
+ requests.push(
+ setThreadgateAllow({
+ postUri: props.rootPostUri,
+ allow: editedAllowUISettings,
+ }),
+ )
+ }
+
+ await Promise.all(requests)
+
+ props.control.close()
+ } catch (e: any) {
+ logger.error(`Failed to save post interaction settings`, {
+ context: 'PostInteractionSettingsDialogControlledInner',
+ safeMessage: e.message,
+ })
+ Toast.show(
+ _(
+ msg`There was an issue. Please check your internet connection and try again.`,
+ ),
+ 'xmark',
+ )
+ } finally {
+ setIsSaving(false)
+ }
+ }, [
+ _,
+ props.postUri,
+ props.rootPostUri,
+ props.control,
+ editedPostgate,
+ editedAllowUISettings,
+ setIsSaving,
+ writePostgateRecord,
+ setThreadgateAllow,
+ isThreadgateOwnedByViewer,
+ ])
+
+ return (
+
+ {isLoading ? (
+
+ ) : (
+
+ )}
+
+ )
+}
+
+export function PostInteractionSettingsForm({
+ onSave,
+ isSaving,
+ postgate,
+ onChangePostgate,
+ threadgateAllowUISettings,
+ onChangeThreadgateAllowUISettings,
+ replySettingsDisabled,
+}: PostInteractionSettingsFormProps) {
+ const t = useTheme()
+ const {_} = useLingui()
+ const control = Dialog.useDialogContext()
+ const {data: lists} = useMyListsQuery('curate')
+ const [quotesEnabled, setQuotesEnabled] = React.useState(
+ !(
+ postgate.embeddingRules &&
+ postgate.embeddingRules.find(
+ v => v.$type === embeddingRules.disableRule.$type,
+ )
+ ),
+ )
+
+ const onPressAudience = (setting: ThreadgateAllowUISetting) => {
+ // remove boolean values
+ let newSelected: ThreadgateAllowUISetting[] =
+ threadgateAllowUISettings.filter(
+ v => v.type !== 'nobody' && v.type !== 'everybody',
+ )
+ // toggle
+ const i = newSelected.findIndex(v => isEqual(v, setting))
+ if (i === -1) {
+ newSelected.push(setting)
+ } else {
+ newSelected.splice(i, 1)
+ }
+
+ onChangeThreadgateAllowUISettings(newSelected)
+ }
+
+ const onChangeQuotesEnabled = React.useCallback(
+ (enabled: boolean) => {
+ setQuotesEnabled(enabled)
+ onChangePostgate(
+ createPostgateRecord({
+ ...postgate,
+ embeddingRules: enabled ? [] : [embeddingRules.disableRule],
+ }),
+ )
+ },
+ [setQuotesEnabled, postgate, onChangePostgate],
+ )
+
+ const noOneCanReply = !!threadgateAllowUISettings.find(
+ v => v.type === 'nobody',
+ )
+
+ return (
+
+
+
+ Post interaction settings
+
+
+
+
+ Customize who can interact with this post.
+
+
+
+
+
+
+ Quote settings
+
+
+
+
+ {quotesEnabled ? (
+ Quote posts enabled
+ ) : (
+ Quote posts disabled
+ )}
+
+
+
+
+
+
+
+ {replySettingsDisabled && (
+
+
+
+
+ Reply settings are chosen by the author of the thread
+
+
+
+ )}
+
+
+
+ Reply settings
+
+
+
+ Allow replies from:
+
+
+
+ v.type === 'everybody')
+ }
+ onPress={() =>
+ onChangeThreadgateAllowUISettings([{type: 'everybody'}])
+ }
+ style={{flex: 1}}
+ disabled={replySettingsDisabled}
+ />
+
+ onChangeThreadgateAllowUISettings([{type: 'nobody'}])
+ }
+ style={{flex: 1}}
+ disabled={replySettingsDisabled}
+ />
+
+
+ {!noOneCanReply && (
+ <>
+
+ Or combine these options:
+
+
+
+ v.type === 'mention',
+ )
+ }
+ onPress={() => onPressAudience({type: 'mention'})}
+ disabled={replySettingsDisabled}
+ />
+ v.type === 'following',
+ )
+ }
+ onPress={() => onPressAudience({type: 'following'})}
+ disabled={replySettingsDisabled}
+ />
+ {lists && lists.length > 0
+ ? lists.map(list => (
+ v.type === 'list' && v.list === list.uri,
+ )
+ }
+ onPress={() =>
+ onPressAudience({type: 'list', list: list.uri})
+ }
+ disabled={replySettingsDisabled}
+ />
+ ))
+ : // No loading states to avoid jumps for the common case (no lists)
+ null}
+
+ >
+ )}
+
+
+
+
+
+
+ )
+}
+
+function Selectable({
+ label,
+ isSelected,
+ onPress,
+ style,
+ disabled,
+}: {
+ label: string
+ isSelected: boolean
+ onPress: () => void
+ style?: StyleProp
+ disabled?: boolean
+}) {
+ const t = useTheme()
+ return (
+
+ )
+}
+
+export function usePrefetchPostInteractionSettings({
+ postUri,
+ rootPostUri,
+}: {
+ postUri: string
+ rootPostUri: string
+}) {
+ const queryClient = useQueryClient()
+ const agent = useAgent()
+
+ return React.useCallback(async () => {
+ try {
+ await Promise.all([
+ queryClient.prefetchQuery({
+ queryKey: createPostgateQueryKey(postUri),
+ queryFn: () => getPostgateRecord({agent, postUri}),
+ staleTime: STALE.SECONDS.THIRTY,
+ }),
+ queryClient.prefetchQuery({
+ queryKey: createThreadgateViewQueryKey(rootPostUri),
+ queryFn: () => getThreadgateView({agent, postUri: rootPostUri}),
+ staleTime: STALE.SECONDS.THIRTY,
+ }),
+ ])
+ } catch (e: any) {
+ logger.error(`Failed to prefetch post interaction settings`, {
+ safeMessage: e.message,
+ })
+ }
+ }, [queryClient, agent, postUri, rootPostUri])
+}
diff --git a/src/components/dialogs/ThreadgateEditor.tsx b/src/components/dialogs/ThreadgateEditor.tsx
deleted file mode 100644
index 90483b3adf..0000000000
--- a/src/components/dialogs/ThreadgateEditor.tsx
+++ /dev/null
@@ -1,217 +0,0 @@
-import React from 'react'
-import {StyleProp, View, ViewStyle} from 'react-native'
-import {msg, Trans} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-import isEqual from 'lodash.isequal'
-
-import {useMyListsQuery} from '#/state/queries/my-lists'
-import {ThreadgateSetting} from '#/state/queries/threadgate'
-import {atoms as a, useTheme} from '#/alf'
-import {Button, ButtonText} from '#/components/Button'
-import * as Dialog from '#/components/Dialog'
-import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
-import {Text} from '#/components/Typography'
-
-interface ThreadgateEditorDialogProps {
- control: Dialog.DialogControlProps
- threadgate: ThreadgateSetting[]
- onChange?: (v: ThreadgateSetting[]) => void
- onConfirm?: (v: ThreadgateSetting[]) => void
-}
-
-export function ThreadgateEditorDialog({
- control,
- threadgate,
- onChange,
- onConfirm,
-}: ThreadgateEditorDialogProps) {
- return (
-
-
-
-
- )
-}
-
-function DialogContent({
- seedThreadgate,
- onChange,
- onConfirm,
-}: {
- seedThreadgate: ThreadgateSetting[]
- onChange?: (v: ThreadgateSetting[]) => void
- onConfirm?: (v: ThreadgateSetting[]) => void
-}) {
- const {_} = useLingui()
- const control = Dialog.useDialogContext()
- const {data: lists} = useMyListsQuery('curate')
- const [draft, setDraft] = React.useState(seedThreadgate)
-
- const [prevSeedThreadgate, setPrevSeedThreadgate] =
- React.useState(seedThreadgate)
- if (seedThreadgate !== prevSeedThreadgate) {
- // New data flowed from above (e.g. due to update coming through).
- setPrevSeedThreadgate(seedThreadgate)
- setDraft(seedThreadgate) // Reset draft.
- }
-
- function updateThreadgate(nextThreadgate: ThreadgateSetting[]) {
- setDraft(nextThreadgate)
- onChange?.(nextThreadgate)
- }
-
- const onPressEverybody = () => {
- updateThreadgate([])
- }
-
- const onPressNobody = () => {
- updateThreadgate([{type: 'nobody'}])
- }
-
- const onPressAudience = (setting: ThreadgateSetting) => {
- // remove nobody
- let newSelected: ThreadgateSetting[] = draft.filter(
- v => v.type !== 'nobody',
- )
- // toggle
- const i = newSelected.findIndex(v => isEqual(v, setting))
- if (i === -1) {
- newSelected.push(setting)
- } else {
- newSelected.splice(i, 1)
- }
- updateThreadgate(newSelected)
- }
-
- const doneLabel = onConfirm ? _(msg`Save`) : _(msg`Done`)
- return (
-
-
-
- Choose who can reply
-
-
- Either choose "Everybody" or "Nobody"
-
-
-
- v.type === 'nobody')}
- onPress={onPressNobody}
- style={{flex: 1}}
- />
-
-
- Or combine these options:
-
-
- v.type === 'mention')}
- onPress={() => onPressAudience({type: 'mention'})}
- />
- v.type === 'following')}
- onPress={() => onPressAudience({type: 'following'})}
- />
- {lists && lists.length > 0
- ? lists.map(list => (
- v.type === 'list' && v.list === list.uri)
- }
- onPress={() =>
- onPressAudience({type: 'list', list: list.uri})
- }
- />
- ))
- : // No loading states to avoid jumps for the common case (no lists)
- null}
-
-
-
-
-
- )
-}
-
-function Selectable({
- label,
- isSelected,
- onPress,
- style,
-}: {
- label: string
- isSelected: boolean
- onPress: () => void
- style?: StyleProp
-}) {
- const t = useTheme()
- return (
-
- )
-}
diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx
index a5ecfdcb83..23229c8f44 100644
--- a/src/components/forms/TextField.tsx
+++ b/src/components/forms/TextField.tsx
@@ -193,6 +193,7 @@ export function createInput(Component: typeof TextInput) {
lineHeight: a.text_md.fontSize * 1.1875,
textAlignVertical: rest.multiline ? 'top' : undefined,
minHeight: rest.multiline ? 80 : undefined,
+ minWidth: 0,
},
// fix for autofill styles covering border
web({
diff --git a/src/components/hooks/useThrottledValue.ts b/src/components/hooks/useThrottledValue.ts
index 5764c547e4..29a11b9358 100644
--- a/src/components/hooks/useThrottledValue.ts
+++ b/src/components/hooks/useThrottledValue.ts
@@ -2,7 +2,7 @@ import {useEffect, useRef, useState} from 'react'
import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
-export function useThrottledValue(value: T, time?: number) {
+export function useThrottledValue(value: T, time: number) {
const pendingValueRef = useRef(value)
const [throttledValue, setThrottledValue] = useState(value)
diff --git a/src/components/icons/Eye.tsx b/src/components/icons/Eye.tsx
new file mode 100644
index 0000000000..afa772e1d7
--- /dev/null
+++ b/src/components/icons/Eye.tsx
@@ -0,0 +1,5 @@
+import {createSinglePathSVG} from './TEMPLATE'
+
+export const Eye_Stroke2_Corner0_Rounded = createSinglePathSVG({
+ path: 'M3.135 12C5.413 16.088 8.77 18 12 18s6.587-1.912 8.865-6C18.587 7.912 15.23 6 12 6c-3.228 0-6.587 1.912-8.865 6ZM12 4c4.24 0 8.339 2.611 10.888 7.54a1 1 0 0 1 0 .92C20.338 17.388 16.24 20 12 20c-4.24 0-8.339-2.611-10.888-7.54a1 1 0 0 1 0-.92C3.662 6.612 7.76 4 12 4Zm0 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z',
+})
diff --git a/src/components/moderation/Hider.tsx b/src/components/moderation/Hider.tsx
new file mode 100644
index 0000000000..39f28b4034
--- /dev/null
+++ b/src/components/moderation/Hider.tsx
@@ -0,0 +1,89 @@
+import React from 'react'
+import {ModerationUI} from '@atproto/api'
+
+import {
+ ModerationCauseDescription,
+ useModerationCauseDescription,
+} from '#/lib/moderation/useModerationCauseDescription'
+import {
+ ModerationDetailsDialog,
+ useModerationDetailsDialogControl,
+} from '#/components/moderation/ModerationDetailsDialog'
+
+type Context = {
+ isContentVisible: boolean
+ setIsContentVisible: (show: boolean) => void
+ info: ModerationCauseDescription
+ showInfoDialog: () => void
+ meta: {
+ isNoPwi: boolean
+ allowOverride: boolean
+ }
+}
+
+const Context = React.createContext({} as Context)
+
+export const useHider = () => React.useContext(Context)
+
+export function Outer({
+ modui,
+ isContentVisibleInitialState,
+ allowOverride,
+ children,
+}: React.PropsWithChildren<{
+ isContentVisibleInitialState?: boolean
+ allowOverride?: boolean
+ modui: ModerationUI | undefined
+}>) {
+ const control = useModerationDetailsDialogControl()
+ const blur = modui?.blurs[0]
+ const [isContentVisible, setIsContentVisible] = React.useState(
+ isContentVisibleInitialState || !blur,
+ )
+ const info = useModerationCauseDescription(blur)
+
+ const meta = {
+ isNoPwi: Boolean(
+ modui?.blurs.find(
+ cause =>
+ cause.type === 'label' &&
+ cause.labelDef.identifier === '!no-unauthenticated',
+ ),
+ ),
+ allowOverride: allowOverride ?? !modui?.noOverride,
+ }
+
+ const showInfoDialog = () => {
+ control.open()
+ }
+
+ const onSetContentVisible = (show: boolean) => {
+ if (!meta.allowOverride) return
+ setIsContentVisible(show)
+ }
+
+ const ctx = {
+ isContentVisible,
+ setIsContentVisible: onSetContentVisible,
+ showInfoDialog,
+ info,
+ meta,
+ }
+
+ return (
+
+ {children}
+
+
+ )
+}
+
+export function Content({children}: {children: React.ReactNode}) {
+ const ctx = useHider()
+ return ctx.isContentVisible ? children : null
+}
+
+export function Mask({children}: {children: React.ReactNode}) {
+ const ctx = useHider()
+ return ctx.isContentVisible ? null : children
+}
diff --git a/src/components/moderation/LabelsOnMeDialog.tsx b/src/components/moderation/LabelsOnMeDialog.tsx
index b920a0d252..cc11b41017 100644
--- a/src/components/moderation/LabelsOnMeDialog.tsx
+++ b/src/components/moderation/LabelsOnMeDialog.tsx
@@ -7,7 +7,6 @@ import {useMutation} from '@tanstack/react-query'
import {useLabelInfo} from '#/lib/moderation/useLabelInfo'
import {makeProfileLink} from '#/lib/routes/links'
-import {useGate} from '#/lib/statsig/statsig'
import {sanitizeHandle} from '#/lib/strings/handles'
import {logger} from '#/logger'
import {useAgent, useSession} from '#/state/session'
@@ -204,7 +203,6 @@ function AppealForm({
const [details, setDetails] = React.useState('')
const isAccountReport = 'did' in subject
const agent = useAgent()
- const gate = useGate()
const sourceName = labeler
? sanitizeHandle(labeler.creator.handle, '@')
: label.src
@@ -214,35 +212,22 @@ function AppealForm({
const $type = !isAccountReport
? 'com.atproto.repo.strongRef'
: 'com.atproto.admin.defs#repoRef'
- if (gate('session_withproxy_fix')) {
- await agent.createModerationReport(
- {
- reasonType: ComAtprotoModerationDefs.REASONAPPEAL,
- subject: {
- $type,
- ...subject,
- },
- reason: details,
+ await agent.createModerationReport(
+ {
+ reasonType: ComAtprotoModerationDefs.REASONAPPEAL,
+ subject: {
+ $type,
+ ...subject,
},
- {
- encoding: 'application/json',
- headers: {
- 'atproto-proxy': `${label.src}#atproto_labeler`,
- },
+ reason: details,
+ },
+ {
+ encoding: 'application/json',
+ headers: {
+ 'atproto-proxy': `${label.src}#atproto_labeler`,
},
- )
- } else {
- await agent
- .withProxy('atproto_labeler', label.src)
- .createModerationReport({
- reasonType: ComAtprotoModerationDefs.REASONAPPEAL,
- subject: {
- $type,
- ...subject,
- },
- reason: details,
- })
- }
+ },
+ )
},
onError: err => {
logger.error('Failed to submit label appeal', {message: err})
diff --git a/src/components/moderation/ModerationDetailsDialog.tsx b/src/components/moderation/ModerationDetailsDialog.tsx
index ebfe452325..d95717cf43 100644
--- a/src/components/moderation/ModerationDetailsDialog.tsx
+++ b/src/components/moderation/ModerationDetailsDialog.tsx
@@ -8,17 +8,19 @@ import {useModerationCauseDescription} from '#/lib/moderation/useModerationCause
import {makeProfileLink} from '#/lib/routes/links'
import {listUriToHref} from '#/lib/strings/url-helpers'
import {isNative} from '#/platform/detection'
+import {useSession} from '#/state/session'
import {atoms as a, useTheme} from '#/alf'
import * as Dialog from '#/components/Dialog'
import {Divider} from '#/components/Divider'
import {InlineLinkText} from '#/components/Link'
+import {AppModerationCause} from '#/components/Pills'
import {Text} from '#/components/Typography'
export {useDialogControl as useModerationDetailsDialogControl} from '#/components/Dialog'
export interface ModerationDetailsDialogProps {
control: Dialog.DialogOuterProps['control']
- modcause: ModerationCause
+ modcause?: ModerationCause | AppModerationCause
}
export function ModerationDetailsDialog(props: ModerationDetailsDialogProps) {
@@ -39,6 +41,7 @@ function ModerationDetailsDialogInner({
const t = useTheme()
const {_} = useLingui()
const desc = useModerationCauseDescription(modcause)
+ const {currentAccount} = useSession()
let name
let description
@@ -105,6 +108,14 @@ function ModerationDetailsDialogInner({
} else if (modcause.type === 'hidden') {
name = _(msg`Post Hidden by You`)
description = _(msg`You have hidden this post.`)
+ } else if (modcause.type === 'reply-hidden') {
+ const isYou = currentAccount?.did === modcause.source.did
+ name = isYou
+ ? _(msg`Reply Hidden by You`)
+ : _(msg`Reply Hidden by Thread Author`)
+ description = isYou
+ ? _(msg`You hid this reply.`)
+ : _(msg`The author of this thread has hidden this reply.`)
} else if (modcause.type === 'label') {
name = desc.name
description = desc.description
@@ -119,12 +130,12 @@ function ModerationDetailsDialogInner({
{name}
-
+
{description}
- {modcause.type === 'label' && (
- <>
+ {modcause?.type === 'label' && (
+
{modcause.source.type === 'user' ? (
@@ -143,7 +154,7 @@ function ModerationDetailsDialogInner({
)}
- >
+
)}
{isNative && }
diff --git a/src/components/moderation/PostAlerts.tsx b/src/components/moderation/PostAlerts.tsx
index efbf182193..6c4e5f8c82 100644
--- a/src/components/moderation/PostAlerts.tsx
+++ b/src/components/moderation/PostAlerts.tsx
@@ -1,6 +1,6 @@
import React from 'react'
import {StyleProp, ViewStyle} from 'react-native'
-import {ModerationUI} from '@atproto/api'
+import {ModerationCause, ModerationUI} from '@atproto/api'
import {getModerationCauseKey} from '#/lib/moderation'
import * as Pills from '#/components/Pills'
@@ -9,13 +9,15 @@ export function PostAlerts({
modui,
size = 'sm',
style,
+ additionalCauses,
}: {
modui: ModerationUI
size?: Pills.CommonProps['size']
includeMute?: boolean
style?: StyleProp
+ additionalCauses?: ModerationCause[] | Pills.AppModerationCause[]
}) {
- if (!modui.alert && !modui.inform) {
+ if (!modui.alert && !modui.inform && !additionalCauses?.length) {
return null
}
@@ -37,6 +39,14 @@ export function PostAlerts({
noBg={size === 'sm'}
/>
))}
+ {additionalCauses?.map(cause => (
+
+ ))}
)
}
diff --git a/src/lib/api/api-polyfill.ts b/src/lib/api/api-polyfill.ts
deleted file mode 100644
index e3aec76316..0000000000
--- a/src/lib/api/api-polyfill.ts
+++ /dev/null
@@ -1,85 +0,0 @@
-import RNFS from 'react-native-fs'
-import {BskyAgent, jsonToLex, stringifyLex} from '@atproto/api'
-
-const GET_TIMEOUT = 15e3 // 15s
-const POST_TIMEOUT = 60e3 // 60s
-
-export function doPolyfill() {
- BskyAgent.configure({fetch: fetchHandler})
-}
-
-interface FetchHandlerResponse {
- status: number
- headers: Record
- body: any
-}
-
-async function fetchHandler(
- reqUri: string,
- reqMethod: string,
- reqHeaders: Record,
- reqBody: any,
-): Promise {
- const reqMimeType = reqHeaders['Content-Type'] || reqHeaders['content-type']
- if (reqMimeType && reqMimeType.startsWith('application/json')) {
- reqBody = stringifyLex(reqBody)
- } else if (
- typeof reqBody === 'string' &&
- (reqBody.startsWith('/') || reqBody.startsWith('file:'))
- ) {
- if (reqBody.endsWith('.jpeg') || reqBody.endsWith('.jpg')) {
- // HACK
- // React native has a bug that inflates the size of jpegs on upload
- // we get around that by renaming the file ext to .bin
- // see https://github.com/facebook/react-native/issues/27099
- // -prf
- const newPath = reqBody.replace(/\.jpe?g$/, '.bin')
- await RNFS.moveFile(reqBody, newPath)
- reqBody = newPath
- }
- // NOTE
- // React native treats bodies with {uri: string} as file uploads to pull from cache
- // -prf
- reqBody = {uri: reqBody}
- }
-
- const controller = new AbortController()
- const to = setTimeout(
- () => controller.abort(),
- reqMethod === 'post' ? POST_TIMEOUT : GET_TIMEOUT,
- )
-
- const res = await fetch(reqUri, {
- method: reqMethod,
- headers: reqHeaders,
- body: reqBody,
- signal: controller.signal,
- })
-
- const resStatus = res.status
- const resHeaders: Record = {}
- res.headers.forEach((value: string, key: string) => {
- resHeaders[key] = value
- })
- const resMimeType = resHeaders['Content-Type'] || resHeaders['content-type']
- let resBody
- if (resMimeType) {
- if (resMimeType.startsWith('application/json')) {
- resBody = jsonToLex(await res.json())
- } else if (resMimeType.startsWith('text/')) {
- resBody = await res.text()
- } else if (resMimeType === 'application/vnd.ipld.car') {
- resBody = await res.arrayBuffer()
- } else {
- throw new Error('Non-supported mime type')
- }
- }
-
- clearTimeout(to)
-
- return {
- status: resStatus,
- headers: resHeaders,
- body: resBody,
- }
-}
diff --git a/src/lib/api/api-polyfill.web.ts b/src/lib/api/api-polyfill.web.ts
deleted file mode 100644
index 1ad22b3d02..0000000000
--- a/src/lib/api/api-polyfill.web.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function doPolyfill() {
- // no polyfill is needed on web
-}
diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts
index 61de795a14..c2b80ca042 100644
--- a/src/lib/api/feed-manip.ts
+++ b/src/lib/api/feed-manip.ts
@@ -23,6 +23,7 @@ type FeedSliceItem = {
record: AppBskyFeedPost.Record
parentAuthor: AppBskyActorDefs.ProfileViewBasic | undefined
isParentBlocked: boolean
+ isParentNotFound: boolean
}
type AuthorContext = {
@@ -68,6 +69,7 @@ export class FeedViewPostsSlice {
}
const parent = reply?.parent
const isParentBlocked = AppBskyFeedDefs.isBlockedPost(parent)
+ const isParentNotFound = AppBskyFeedDefs.isNotFoundPost(parent)
let parentAuthor: AppBskyActorDefs.ProfileViewBasic | undefined
if (AppBskyFeedDefs.isPostView(parent)) {
parentAuthor = parent.author
@@ -77,6 +79,7 @@ export class FeedViewPostsSlice {
record: post.record,
parentAuthor,
isParentBlocked,
+ isParentNotFound,
})
if (!reply || reason) {
return
@@ -89,23 +92,40 @@ export class FeedViewPostsSlice {
this.isOrphan = true
return
}
+ const root = reply.root
+ const rootIsView =
+ AppBskyFeedDefs.isPostView(root) ||
+ AppBskyFeedDefs.isBlockedPost(root) ||
+ AppBskyFeedDefs.isNotFoundPost(root)
+ /*
+ * If the parent is also the root, we just so happen to have the data we
+ * need to compute if the parent's parent (grandparent) is blocked. This
+ * doesn't always happen, of course, but we can take advantage of it when
+ * it does.
+ */
+ const grandparent =
+ rootIsView && parent.record.reply?.parent.uri === root.uri
+ ? root
+ : undefined
const grandparentAuthor = reply.grandparentAuthor
const isGrandparentBlocked = Boolean(
- grandparentAuthor?.viewer?.blockedBy ||
- grandparentAuthor?.viewer?.blocking ||
- grandparentAuthor?.viewer?.blockingByList,
+ grandparent && AppBskyFeedDefs.isBlockedPost(grandparent),
+ )
+ const isGrandparentNotFound = Boolean(
+ grandparent && AppBskyFeedDefs.isNotFoundPost(grandparent),
)
this.items.unshift({
post: parent,
record: parent.record,
parentAuthor: grandparentAuthor,
isParentBlocked: isGrandparentBlocked,
+ isParentNotFound: isGrandparentNotFound,
})
if (isGrandparentBlocked) {
this.isOrphan = true
- // Keep going, it might still have a root.
+ // Keep going, it might still have a root, and we need this for thread
+ // de-deduping
}
- const root = reply.root
if (
!AppBskyFeedDefs.isPostView(root) ||
!AppBskyFeedPost.isRecord(root.record) ||
@@ -121,6 +141,7 @@ export class FeedViewPostsSlice {
post: root,
record: root.record,
isParentBlocked: false,
+ isParentNotFound: false,
parentAuthor: undefined,
})
if (parent.record.reply?.parent.uri !== root.uri) {
diff --git a/src/lib/api/feed/custom.ts b/src/lib/api/feed/custom.ts
index eb54dd29c1..6db96a8d63 100644
--- a/src/lib/api/feed/custom.ts
+++ b/src/lib/api/feed/custom.ts
@@ -1,7 +1,6 @@
import {
AppBskyFeedDefs,
AppBskyFeedGetFeed as GetCustomFeed,
- AtpAgent,
BskyAgent,
} from '@atproto/api'
@@ -51,7 +50,7 @@ export class CustomFeedAPI implements FeedAPI {
const agent = this.agent
const isBlueskyOwned = isBlueskyOwnedFeed(this.params.feed)
- const res = agent.session
+ const res = agent.did
? await this.agent.app.bsky.feed.getFeed(
{
...this.params,
@@ -106,34 +105,32 @@ async function loggedOutFetch({
let contentLangs = getContentLanguages().join(',')
// manually construct fetch call so we can add the `lang` cache-busting param
- let res = await AtpAgent.fetch!(
+ let res = await fetch(
`https://api.bsky.app/xrpc/app.bsky.feed.getFeed?feed=${feed}${
cursor ? `&cursor=${cursor}` : ''
}&limit=${limit}&lang=${contentLangs}`,
- 'GET',
- {'Accept-Language': contentLangs},
- undefined,
+ {method: 'GET', headers: {'Accept-Language': contentLangs}},
)
- if (res.body?.feed?.length) {
+ let data = res.ok ? await res.json() : null
+ if (data?.feed?.length) {
return {
success: true,
- data: res.body,
+ data,
}
}
// no data, try again with language headers removed
- res = await AtpAgent.fetch!(
+ res = await fetch(
`https://api.bsky.app/xrpc/app.bsky.feed.getFeed?feed=${feed}${
cursor ? `&cursor=${cursor}` : ''
}&limit=${limit}`,
- 'GET',
- {'Accept-Language': ''},
- undefined,
+ {method: 'GET', headers: {'Accept-Language': ''}},
)
- if (res.body?.feed?.length) {
+ data = res.ok ? await res.json() : null
+ if (data?.feed?.length) {
return {
success: true,
- data: res.body,
+ data,
}
}
diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts
index 12e30bf6c1..94c8869a10 100644
--- a/src/lib/api/index.ts
+++ b/src/lib/api/index.ts
@@ -3,22 +3,30 @@ import {
AppBskyEmbedImages,
AppBskyEmbedRecord,
AppBskyEmbedRecordWithMedia,
- AppBskyFeedThreadgate,
+ AppBskyFeedPostgate,
BskyAgent,
ComAtprotoLabelDefs,
- ComAtprotoRepoUploadBlob,
RichText,
} from '@atproto/api'
import {AtUri} from '@atproto/api'
import {logger} from '#/logger'
-import {ThreadgateSetting} from '#/state/queries/threadgate'
+import {writePostgateRecord} from '#/state/queries/postgate'
+import {
+ createThreadgateRecord,
+ ThreadgateAllowUISetting,
+ threadgateAllowUISettingToAllowRecordValue,
+ writeThreadgateRecord,
+} from '#/state/queries/threadgate'
import {isNetworkError} from 'lib/strings/errors'
import {shortenLinks, stripInvalidMentions} from 'lib/strings/rich-text-manip'
-import {isNative, isWeb} from 'platform/detection'
+import {isNative} from 'platform/detection'
import {ImageModel} from 'state/models/media/image'
import {LinkMeta} from '../link-meta/link-meta'
import {safeDeleteAsync} from '../media/manip'
+import {uploadBlob} from './upload-blob'
+
+export {uploadBlob}
export interface ExternalEmbedDraft {
uri: string
@@ -28,25 +36,6 @@ export interface ExternalEmbedDraft {
localThumb?: ImageModel
}
-export async function uploadBlob(
- agent: BskyAgent,
- blob: string,
- encoding: string,
-): Promise {
- if (isWeb) {
- // `blob` should be a data uri
- return agent.uploadBlob(convertDataURIToUint8Array(blob), {
- encoding,
- })
- } else {
- // `blob` should be a path to a file in the local FS
- return agent.uploadBlob(
- blob, // this will be special-cased by the fetch monkeypatch in /src/state/lib/api.ts
- {encoding},
- )
- }
-}
-
interface PostOpts {
rawText: string
replyTo?: string
@@ -61,7 +50,8 @@ interface PostOpts {
extLink?: ExternalEmbedDraft
images?: ImageModel[]
labels?: string[]
- threadgate?: ThreadgateSetting[]
+ threadgate: ThreadgateAllowUISetting[]
+ postgate: AppBskyFeedPostgate.Record
onStateChange?: (state: string) => void
langs?: string[]
}
@@ -249,7 +239,9 @@ export async function post(agent: BskyAgent, opts: PostOpts) {
labels,
})
} catch (e: any) {
- console.error(`Failed to create post: ${e.toString()}`)
+ logger.error(`Failed to create post`, {
+ safeMessage: e.message,
+ })
if (isNetworkError(e)) {
throw new Error(
'Post failed to upload. Please check your Internet connection and try again.',
@@ -259,68 +251,52 @@ export async function post(agent: BskyAgent, opts: PostOpts) {
}
}
- try {
- // TODO: this needs to be batch-created with the post!
- if (opts.threadgate?.length) {
- await createThreadgate(agent, res.uri, opts.threadgate)
+ if (opts.threadgate.some(tg => tg.type !== 'everybody')) {
+ try {
+ // TODO: this needs to be batch-created with the post!
+ await writeThreadgateRecord({
+ agent,
+ postUri: res.uri,
+ threadgate: createThreadgateRecord({
+ post: res.uri,
+ allow: threadgateAllowUISettingToAllowRecordValue(opts.threadgate),
+ }),
+ })
+ } catch (e: any) {
+ logger.error(`Failed to create threadgate`, {
+ context: 'composer',
+ safeMessage: e.message,
+ })
+ throw new Error(
+ 'Failed to save post interaction settings. Your post was created but users may be able to interact with it.',
+ )
+ }
+ }
+
+ if (
+ opts.postgate.embeddingRules?.length ||
+ opts.postgate.detachedEmbeddingUris?.length
+ ) {
+ try {
+ // TODO: this needs to be batch-created with the post!
+ await writePostgateRecord({
+ agent,
+ postUri: res.uri,
+ postgate: {
+ ...opts.postgate,
+ post: res.uri,
+ },
+ })
+ } catch (e: any) {
+ logger.error(`Failed to create postgate`, {
+ context: 'composer',
+ safeMessage: e.message,
+ })
+ throw new Error(
+ 'Failed to save post interaction settings. Your post was created but users may be able to interact with it.',
+ )
}
- } catch (e: any) {
- console.error(`Failed to create threadgate: ${e.toString()}`)
- throw new Error(
- 'Post reply-controls failed to be set. Your post was created but anyone can reply to it.',
- )
}
return res
}
-
-export async function createThreadgate(
- agent: BskyAgent,
- postUri: string,
- threadgate: ThreadgateSetting[],
-) {
- let allow: (
- | AppBskyFeedThreadgate.MentionRule
- | AppBskyFeedThreadgate.FollowingRule
- | AppBskyFeedThreadgate.ListRule
- )[] = []
- if (!threadgate.find(v => v.type === 'nobody')) {
- for (const rule of threadgate) {
- if (rule.type === 'mention') {
- allow.push({$type: 'app.bsky.feed.threadgate#mentionRule'})
- } else if (rule.type === 'following') {
- allow.push({$type: 'app.bsky.feed.threadgate#followingRule'})
- } else if (rule.type === 'list') {
- allow.push({
- $type: 'app.bsky.feed.threadgate#listRule',
- list: rule.list,
- })
- }
- }
- }
-
- const postUrip = new AtUri(postUri)
- await agent.api.com.atproto.repo.putRecord({
- repo: agent.session!.did,
- collection: 'app.bsky.feed.threadgate',
- rkey: postUrip.rkey,
- record: {
- $type: 'app.bsky.feed.threadgate',
- post: postUri,
- allow,
- createdAt: new Date().toISOString(),
- },
- })
-}
-
-// helpers
-// =
-
-function convertDataURIToUint8Array(uri: string): Uint8Array {
- var raw = window.atob(uri.substring(uri.indexOf(';base64,') + 8))
- var binary = new Uint8Array(new ArrayBuffer(raw.length))
- for (let i = 0; i < raw.length; i++) {
- binary[i] = raw.charCodeAt(i)
- }
- return binary
-}
diff --git a/src/lib/api/upload-blob.ts b/src/lib/api/upload-blob.ts
new file mode 100644
index 0000000000..0814d5185b
--- /dev/null
+++ b/src/lib/api/upload-blob.ts
@@ -0,0 +1,82 @@
+import RNFS from 'react-native-fs'
+import {BskyAgent, ComAtprotoRepoUploadBlob} from '@atproto/api'
+
+/**
+ * @param encoding Allows overriding the blob's type
+ */
+export async function uploadBlob(
+ agent: BskyAgent,
+ input: string | Blob,
+ encoding?: string,
+): Promise {
+ if (typeof input === 'string' && input.startsWith('file:')) {
+ const blob = await asBlob(input)
+ return agent.uploadBlob(blob, {encoding})
+ }
+
+ if (typeof input === 'string' && input.startsWith('/')) {
+ const blob = await asBlob(`file://${input}`)
+ return agent.uploadBlob(blob, {encoding})
+ }
+
+ if (typeof input === 'string' && input.startsWith('data:')) {
+ const blob = await fetch(input).then(r => r.blob())
+ return agent.uploadBlob(blob, {encoding})
+ }
+
+ if (input instanceof Blob) {
+ return agent.uploadBlob(input, {encoding})
+ }
+
+ throw new TypeError(`Invalid uploadBlob input: ${typeof input}`)
+}
+
+async function asBlob(uri: string): Promise {
+ return withSafeFile(uri, async safeUri => {
+ // Note
+ // Android does not support `fetch()` on `file://` URIs. for this reason, we
+ // use XMLHttpRequest instead of simply calling:
+
+ // return fetch(safeUri.replace('file:///', 'file:/')).then(r => r.blob())
+
+ return await new Promise((resolve, reject) => {
+ const xhr = new XMLHttpRequest()
+ xhr.onload = () => resolve(xhr.response)
+ xhr.onerror = () => reject(new Error('Failed to load blob'))
+ xhr.responseType = 'blob'
+ xhr.open('GET', safeUri, true)
+ xhr.send(null)
+ })
+ })
+}
+
+// HACK
+// React native has a bug that inflates the size of jpegs on upload
+// we get around that by renaming the file ext to .bin
+// see https://github.com/facebook/react-native/issues/27099
+// -prf
+async function withSafeFile(
+ uri: string,
+ fn: (path: string) => Promise,
+): Promise {
+ if (uri.endsWith('.jpeg') || uri.endsWith('.jpg')) {
+ // Since we don't "own" the file, we should avoid renaming or modifying it.
+ // Instead, let's copy it to a temporary file and use that (then remove the
+ // temporary file).
+ const newPath = uri.replace(/\.jpe?g$/, '.bin')
+ try {
+ await RNFS.copyFile(uri, newPath)
+ } catch {
+ // Failed to copy the file, just use the original
+ return await fn(uri)
+ }
+ try {
+ return await fn(newPath)
+ } finally {
+ // Remove the temporary file
+ await RNFS.unlink(newPath)
+ }
+ } else {
+ return fn(uri)
+ }
+}
diff --git a/src/lib/api/upload-blob.web.ts b/src/lib/api/upload-blob.web.ts
new file mode 100644
index 0000000000..d3c52190c1
--- /dev/null
+++ b/src/lib/api/upload-blob.web.ts
@@ -0,0 +1,26 @@
+import {BskyAgent, ComAtprotoRepoUploadBlob} from '@atproto/api'
+
+/**
+ * @note It is recommended, on web, to use the `file` instance of the file
+ * selector input element, rather than a `data:` URL, to avoid
+ * loading the file into memory. `File` extends `Blob` "file" instances can
+ * be passed directly to this function.
+ */
+export async function uploadBlob(
+ agent: BskyAgent,
+ input: string | Blob,
+ encoding?: string,
+): Promise {
+ if (typeof input === 'string' && input.startsWith('data:')) {
+ const blob = await fetch(input).then(r => r.blob())
+ return agent.uploadBlob(blob, {encoding})
+ }
+
+ if (input instanceof Blob) {
+ return agent.uploadBlob(input, {
+ encoding,
+ })
+ }
+
+ throw new TypeError(`Invalid uploadBlob input: ${typeof input}`)
+}
diff --git a/src/lib/constants.ts b/src/lib/constants.ts
index 45b3dfd950..ccd5f2deea 100644
--- a/src/lib/constants.ts
+++ b/src/lib/constants.ts
@@ -12,6 +12,7 @@ export const HELP_DESK_URL = `https://blueskyweb.zendesk.com/hc/${HELP_DESK_LANG
export const EMBED_SERVICE = 'https://embed.bsky.app'
export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js`
export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download'
+export const STARTER_PACK_MAX_SIZE = 150
// HACK
// Yes, this is exactly what it looks like. It's a hard-coded constant
@@ -20,7 +21,7 @@ export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download'
// code and update this number with each release until we can get the
// server route done.
// -prf
-export const JOINED_THIS_WEEK = 21797 // as of Jul5 2024
+export const JOINED_THIS_WEEK = 50676 // as of Aug 17, 2024
const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new`
export function FEEDBACK_FORM_URL({
diff --git a/src/lib/hooks/useGoBack.ts b/src/lib/hooks/useGoBack.ts
new file mode 100644
index 0000000000..59555bdac1
--- /dev/null
+++ b/src/lib/hooks/useGoBack.ts
@@ -0,0 +1,23 @@
+import {StackActions, useNavigation} from '@react-navigation/native'
+
+import {NavigationProp} from 'lib/routes/types'
+import {router} from '#/routes'
+
+export function useGoBack(onGoBack?: () => unknown) {
+ const navigation = useNavigation()
+ return () => {
+ onGoBack?.()
+ if (navigation.canGoBack()) {
+ navigation.goBack()
+ } else {
+ navigation.navigate('HomeTab')
+ // Checking the state for routes ensures that web doesn't encounter errors while going back
+ if (navigation.getState()?.routes) {
+ navigation.dispatch(StackActions.push(...router.matchPath('/')))
+ } else {
+ navigation.navigate('HomeTab')
+ navigation.dispatch(StackActions.popToTop())
+ }
+ }
+ }
+}
diff --git a/src/lib/hooks/useMinimalShellTransform.ts b/src/lib/hooks/useMinimalShellTransform.ts
index 9875840d65..6787767553 100644
--- a/src/lib/hooks/useMinimalShellTransform.ts
+++ b/src/lib/hooks/useMinimalShellTransform.ts
@@ -6,16 +6,20 @@ import {useShellLayout} from '#/state/shell/shell-layout'
// Keep these separated so that we only pay for useAnimatedStyle that gets used.
export function useMinimalShellHeaderTransform() {
- const mode = useMinimalShellMode()
+ const {headerMode} = useMinimalShellMode()
const {headerHeight} = useShellLayout()
const headerTransform = useAnimatedStyle(() => {
return {
- pointerEvents: mode.value === 0 ? 'auto' : 'none',
- opacity: Math.pow(1 - mode.value, 2),
+ pointerEvents: headerMode.value === 0 ? 'auto' : 'none',
+ opacity: Math.pow(1 - headerMode.value, 2),
transform: [
{
- translateY: interpolate(mode.value, [0, 1], [0, -headerHeight.value]),
+ translateY: interpolate(
+ headerMode.value,
+ [0, 1],
+ [0, -headerHeight.value],
+ ),
},
],
}
@@ -25,31 +29,36 @@ export function useMinimalShellHeaderTransform() {
}
export function useMinimalShellFooterTransform() {
- const mode = useMinimalShellMode()
+ const {footerMode} = useMinimalShellMode()
const {footerHeight} = useShellLayout()
const footerTransform = useAnimatedStyle(() => {
return {
- pointerEvents: mode.value === 0 ? 'auto' : 'none',
- opacity: Math.pow(1 - mode.value, 2),
+ pointerEvents: footerMode.value === 0 ? 'auto' : 'none',
+ opacity: Math.pow(1 - footerMode.value, 2),
transform: [
{
- translateY: interpolate(mode.value, [0, 1], [0, footerHeight.value]),
+ translateY: interpolate(
+ footerMode.value,
+ [0, 1],
+ [0, footerHeight.value],
+ ),
},
],
}
})
+
return footerTransform
}
export function useMinimalShellFabTransform() {
- const mode = useMinimalShellMode()
+ const {footerMode} = useMinimalShellMode()
const fabTransform = useAnimatedStyle(() => {
return {
transform: [
{
- translateY: interpolate(mode.value, [0, 1], [-44, 0]),
+ translateY: interpolate(footerMode.value, [0, 1], [-44, 0]),
},
],
}
diff --git a/src/lib/link-meta/bsky.ts b/src/lib/link-meta/bsky.ts
index e3b4ea0c9c..3d49f5237f 100644
--- a/src/lib/link-meta/bsky.ts
+++ b/src/lib/link-meta/bsky.ts
@@ -107,6 +107,11 @@ export async function extractBskyMeta(
return meta
}
+export class EmbeddingDisabledError extends Error {
+ constructor() {
+ super('Embedding is disabled for this record')
+ }
+}
export async function getPostAsQuote(
getPost: ReturnType,
url: string,
@@ -115,6 +120,9 @@ export async function getPostAsQuote(
const [_0, user, _1, rkey] = url.split('/').filter(Boolean)
const uri = makeRecordUri(user, 'app.bsky.feed.post', rkey)
const post = await getPost({uri: uri})
+ if (post.viewer?.embeddingDisabled) {
+ throw new EmbeddingDisabledError()
+ }
return {
uri: post.uri,
cid: post.cid,
diff --git a/src/lib/media/manip.ts b/src/lib/media/manip.ts
index 3e647004bb..3f01e98c5e 100644
--- a/src/lib/media/manip.ts
+++ b/src/lib/media/manip.ts
@@ -218,13 +218,7 @@ export async function safeDeleteAsync(path: string) {
// Normalize is necessary for Android, otherwise it doesn't delete.
const normalizedPath = normalizePath(path)
try {
- await Promise.allSettled([
- deleteAsync(normalizedPath, {idempotent: true}),
- // HACK: Try this one too. Might exist due to api-polyfill hack.
- deleteAsync(normalizedPath.replace(/\.jpe?g$/, '.bin'), {
- idempotent: true,
- }),
- ])
+ await deleteAsync(normalizedPath, {idempotent: true})
} catch (e) {
console.error('Failed to delete file', e)
}
diff --git a/src/lib/moderatePost_wrapped.ts b/src/lib/moderatePost_wrapped.ts
index 0ce01368af..f4c9d0aad2 100644
--- a/src/lib/moderatePost_wrapped.ts
+++ b/src/lib/moderatePost_wrapped.ts
@@ -1,4 +1,5 @@
-import {moderatePost, BSKY_LABELER_DID} from '@atproto/api'
+/* eslint-disable-next-line no-restricted-imports */
+import {BSKY_LABELER_DID, moderatePost} from '@atproto/api'
type ModeratePost = typeof moderatePost
type Options = Parameters[1]
diff --git a/src/lib/moderation.ts b/src/lib/moderation.ts
index 4105c2c2dd..3c96deecba 100644
--- a/src/lib/moderation.ts
+++ b/src/lib/moderation.ts
@@ -1,17 +1,20 @@
import {
- ModerationCause,
- ModerationUI,
- InterpretedLabelValueDefinition,
- LABELS,
AppBskyLabelerDefs,
BskyAgent,
+ InterpretedLabelValueDefinition,
+ LABELS,
+ ModerationCause,
ModerationOpts,
+ ModerationUI,
} from '@atproto/api'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {sanitizeHandle} from '#/lib/strings/handles'
+import {AppModerationCause} from '#/components/Pills'
-export function getModerationCauseKey(cause: ModerationCause): string {
+export function getModerationCauseKey(
+ cause: ModerationCause | AppModerationCause,
+): string {
const source =
cause.source.type === 'labeler'
? cause.source.did
diff --git a/src/lib/moderation/useModerationCauseDescription.ts b/src/lib/moderation/useModerationCauseDescription.ts
index 01ffbe5cf6..9dce0b5656 100644
--- a/src/lib/moderation/useModerationCauseDescription.ts
+++ b/src/lib/moderation/useModerationCauseDescription.ts
@@ -8,11 +8,13 @@ import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useLabelDefinitions} from '#/state/preferences'
+import {useSession} from '#/state/session'
import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/components/icons/CircleBanSign'
import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo'
import {Props as SVGIconProps} from '#/components/icons/common'
import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/EyeSlash'
import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning'
+import {AppModerationCause} from '#/components/Pills'
import {useGlobalLabelStrings} from './useGlobalLabelStrings'
import {getDefinition, getLabelStrings} from './useLabelInfo'
@@ -27,8 +29,9 @@ export interface ModerationCauseDescription {
}
export function useModerationCauseDescription(
- cause: ModerationCause | undefined,
+ cause: ModerationCause | AppModerationCause | undefined,
): ModerationCauseDescription {
+ const {currentAccount} = useSession()
const {_, i18n} = useLingui()
const {labelDefs, labelers} = useLabelDefinitions()
const globalLabelStrings = useGlobalLabelStrings()
@@ -111,6 +114,18 @@ export function useModerationCauseDescription(
description: _(msg`You have hidden this post`),
}
}
+ if (cause.type === 'reply-hidden') {
+ const isMe = currentAccount?.did === cause.source.did
+ return {
+ icon: EyeSlash,
+ name: isMe
+ ? _(msg`Reply Hidden by You`)
+ : _(msg`Reply Hidden by Thread Author`),
+ description: isMe
+ ? _(msg`You hid this reply.`)
+ : _(msg`The author of this thread has hidden this reply.`),
+ }
+ }
if (cause.type === 'label') {
const def = cause.labelDef || getDefinition(labelDefs, cause.label)
const strings = getLabelStrings(i18n.locale, globalLabelStrings, def)
@@ -150,5 +165,13 @@ export function useModerationCauseDescription(
name: '',
description: ``,
}
- }, [labelDefs, labelers, globalLabelStrings, cause, _, i18n.locale])
+ }, [
+ labelDefs,
+ labelers,
+ globalLabelStrings,
+ cause,
+ _,
+ i18n.locale,
+ currentAccount?.did,
+ ])
}
diff --git a/src/lib/react-query.tsx b/src/lib/react-query.tsx
index be507216aa..5abfccd7f6 100644
--- a/src/lib/react-query.tsx
+++ b/src/lib/react-query.tsx
@@ -2,18 +2,83 @@ import React, {useRef, useState} from 'react'
import {AppState, AppStateStatus} from 'react-native'
import AsyncStorage from '@react-native-async-storage/async-storage'
import {createAsyncStoragePersister} from '@tanstack/query-async-storage-persister'
-import {focusManager, QueryClient} from '@tanstack/react-query'
+import {focusManager, onlineManager, QueryClient} from '@tanstack/react-query'
import {
PersistQueryClientProvider,
PersistQueryClientProviderProps,
} from '@tanstack/react-query-persist-client'
import {isNative} from '#/platform/detection'
+import {listenNetworkConfirmed, listenNetworkLost} from '#/state/events'
// any query keys in this array will be persisted to AsyncStorage
export const labelersDetailedInfoQueryKeyRoot = 'labelers-detailed-info'
const STORED_CACHE_QUERY_KEY_ROOTS = [labelersDetailedInfoQueryKeyRoot]
+async function checkIsOnline(): Promise {
+ try {
+ const controller = new AbortController()
+ setTimeout(() => {
+ controller.abort()
+ }, 15e3)
+ const res = await fetch('https://public.api.bsky.app/xrpc/_health', {
+ cache: 'no-store',
+ signal: controller.signal,
+ })
+ const json = await res.json()
+ if (json.version) {
+ return true
+ } else {
+ return false
+ }
+ } catch (e) {
+ return false
+ }
+}
+
+let receivedNetworkLost = false
+let receivedNetworkConfirmed = false
+let isNetworkStateUnclear = false
+
+listenNetworkLost(() => {
+ receivedNetworkLost = true
+ onlineManager.setOnline(false)
+})
+
+listenNetworkConfirmed(() => {
+ receivedNetworkConfirmed = true
+ onlineManager.setOnline(true)
+})
+
+let checkPromise: Promise | undefined
+function checkIsOnlineIfNeeded() {
+ if (checkPromise) {
+ return
+ }
+ receivedNetworkLost = false
+ receivedNetworkConfirmed = false
+ checkPromise = checkIsOnline().then(nextIsOnline => {
+ checkPromise = undefined
+ if (nextIsOnline && receivedNetworkLost) {
+ isNetworkStateUnclear = true
+ }
+ if (!nextIsOnline && receivedNetworkConfirmed) {
+ isNetworkStateUnclear = true
+ }
+ if (!isNetworkStateUnclear) {
+ onlineManager.setOnline(nextIsOnline)
+ }
+ })
+}
+
+setInterval(() => {
+ if (AppState.currentState === 'active') {
+ if (!onlineManager.isOnline() || isNetworkStateUnclear) {
+ checkIsOnlineIfNeeded()
+ }
+ }
+}, 2000)
+
focusManager.setEventListener(onFocus => {
if (isNative) {
const subscription = AppState.addEventListener(
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts
index 0cc83b475a..426665d07d 100644
--- a/src/lib/routes/types.ts
+++ b/src/lib/routes/types.ts
@@ -20,6 +20,7 @@ export type CommonNavigatorParams = {
PostThread: {name: string; rkey: string}
PostLikedBy: {name: string; rkey: string}
PostRepostedBy: {name: string; rkey: string}
+ PostQuotes: {name: string; rkey: string}
ProfileFeed: {name: string; rkey: string}
ProfileFeedLikedBy: {name: string; rkey: string}
ProfileLabelerLikedBy: {name: string}
diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts
index 9a427ad40f..7ef0c9e2e6 100644
--- a/src/lib/statsig/events.ts
+++ b/src/lib/statsig/events.ts
@@ -14,6 +14,7 @@ export type LogEvents = {
}
'account:loggedOut': {
logContext: 'SwitchAccount' | 'Settings' | 'SignupQueued' | 'Deactivated'
+ scope: 'current' | 'every'
}
'notifications:openApp': {}
'notifications:request': {
diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts
index 5ae6bd5300..0f92cd14a2 100644
--- a/src/lib/statsig/gates.ts
+++ b/src/lib/statsig/gates.ts
@@ -1,9 +1,9 @@
export type Gate =
// Keep this alphabetic please.
| 'debug_show_feedcontext'
+ | 'fixed_bottom_bar'
| 'new_user_guided_tour'
| 'onboarding_minimum_interests'
- | 'session_withproxy_fix'
| 'show_follow_back_label_v2'
| 'suggested_feeds_interstitial'
| 'video_debug'
diff --git a/src/lib/strings/embed-player.ts b/src/lib/strings/embed-player.ts
index 44e42fae1c..3bae771c0a 100644
--- a/src/lib/strings/embed-player.ts
+++ b/src/lib/strings/embed-player.ts
@@ -103,16 +103,21 @@ export function parseEmbedPlayerFromUrl(
urlp.hostname === 'm.youtube.com' ||
urlp.hostname === 'music.youtube.com'
) {
- const [_, page, shortVideoId] = urlp.pathname.split('/')
+ const [_, page, shortOrLiveVideoId] = urlp.pathname.split('/')
+
+ const isShorts = page === 'shorts'
+ const isLive = page === 'live'
const videoId =
- page === 'shorts' ? shortVideoId : (urlp.searchParams.get('v') as string)
+ isShorts || isLive
+ ? shortOrLiveVideoId
+ : (urlp.searchParams.get('v') as string)
const seek = encodeURIComponent(urlp.searchParams.get('t') ?? 0)
if (videoId) {
return {
- type: page === 'shorts' ? 'youtube_short' : 'youtube_video',
- source: page === 'shorts' ? 'youtubeShorts' : 'youtube',
- hideDetails: page === 'shorts' ? true : undefined,
+ type: isShorts ? 'youtube_short' : 'youtube_video',
+ source: isShorts ? 'youtubeShorts' : 'youtube',
+ hideDetails: isShorts ? true : undefined,
playerUri: `${IFRAME_HOST}/iframe/youtube.html?videoId=${videoId}&start=${seek}`,
}
}
diff --git a/src/lib/styles.ts b/src/lib/styles.ts
index 263127440f..d0ea4cdc17 100644
--- a/src/lib/styles.ts
+++ b/src/lib/styles.ts
@@ -1,6 +1,7 @@
import {Dimensions, StyleProp, StyleSheet, TextStyle} from 'react-native'
-import {Theme, TypographyVariant} from './ThemeContext'
+
import {isWeb} from 'platform/detection'
+import {Theme, TypographyVariant} from './ThemeContext'
// 1 is lightest, 2 is light, 3 is mid, 4 is dark, 5 is darkest
export const colors = {
diff --git a/src/lib/themes.ts b/src/lib/themes.ts
index f3382fc438..9590f16596 100644
--- a/src/lib/themes.ts
+++ b/src/lib/themes.ts
@@ -295,9 +295,9 @@ export const darkTheme: Theme = {
...defaultTheme.palette,
default: {
background: darkPalette.black,
- backgroundLight: darkPalette.contrast_50,
+ backgroundLight: darkPalette.contrast_25,
text: darkPalette.white,
- textLight: darkPalette.contrast_700,
+ textLight: darkPalette.contrast_600,
textInverted: darkPalette.black,
link: darkPalette.primary_500,
border: darkPalette.contrast_100,
@@ -344,7 +344,7 @@ export const dimTheme: Theme = {
default: {
...darkTheme.palette.default,
background: dimPalette.black,
- backgroundLight: dimPalette.contrast_50,
+ backgroundLight: dimPalette.contrast_25,
text: dimPalette.white,
textLight: dimPalette.contrast_700,
textInverted: dimPalette.black,
diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po
index 39845771b9..c869ab1154 100644
--- a/src/locale/locales/ca/messages.po
+++ b/src/locale/locales/ca/messages.po
@@ -24,7 +24,8 @@ msgstr "(té contingut incrustat)"
msgid "(no email)"
msgstr "(sense correu)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
@@ -48,7 +49,7 @@ msgstr "{0, plural, one {# etiqueta s'ha aplicat a aquest compte} other {# etiqu
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {# etiqueta s'ha aplicat a aquest contingut} other {# etiquetes s'han aplicat a aquest contingut}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# republicació} other {# republicacions}}"
@@ -66,16 +67,16 @@ msgstr "{0, plural, one {seguidor} other {seguidors}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguint} other {seguint}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {Like (# m'agrada)} other {Like (# m'agrades)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {m'agrada} other {m'agrades}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}}"
@@ -83,15 +84,19 @@ msgstr "{0, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {publicació} other {publicacions}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {Resposta per (# reply)} other {Resposta per (# replies)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {republicació} other {republicacions}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (# likes)}}"
@@ -103,11 +108,21 @@ msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (#
#~ msgid "{0} {purposeLabel} List"
#~ msgstr "Llista {purposeLabel} {0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "{0} s'han unit aquesta setmana"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0} persones han utilitzat aquest starter pack"
@@ -115,7 +130,7 @@ msgstr "{0} persones han utilitzat aquest starter pack"
#~ msgid "{0} your feeds"
#~ msgstr "{0} els teus canals"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
@@ -151,7 +166,7 @@ msgstr "{diff, plural, one {mes} other {mesos}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, one {segon} other {segons}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "Starter Pack de {displayName}"
@@ -196,7 +211,7 @@ msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a
#~ msgid "{message}"
#~ msgstr "{missatge}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} no llegides"
@@ -209,12 +224,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} s'uní a Bluesky amb un starter pack, fa {0}"
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {Mostra totes les respostes} one {Mostra les respostes amb almenys # m'agrada} other {Mostra les respostes amb almenys # m'agrades}}"
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr "{value, plural, =0 {Mostra totes les respostes} one {Mostra les respostes amb almenys # m'agrada} other {Mostra les respostes amb almenys # m'agrades}}"
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> membres"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> membres"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -234,11 +249,11 @@ msgstr "<0>{0}, 0><1>{1}, 1>i {2, plural, one {# altre} other {# altres}} es
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr "<0>{0}, 0><1>{1}, 1>i {2} {3, plural, one {altre} other {altres}} estan inclosos al teu starter pack"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidors}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguint} other {seguint}}"
@@ -254,6 +269,10 @@ msgstr "<0>{0}0> i<1> 1><2>{1} 2>estan inclosos al teu starter pack"
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0> està inclòs al teu starter pack"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr "<0>{followers} 0><1>{pluralizedFollowers}1>"
@@ -287,23 +306,35 @@ msgstr "<0>Tu0> i<1> 1><2>{0} 2>esteu inclosos al teu starter pack"
msgid "⚠Invalid Handle"
msgstr "⚠Identificador invàlid"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Confirmació 2FA"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/view/com/util/moderation/LabelInfo.tsx:45
#~ msgid "A content warning has been applied to this {0}."
#~ msgstr "S'ha aplicat una advertència de contingut a {0}."
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
-msgstr ""
+msgstr "Una informació d'ajuda"
#: src/lib/hooks/useOTAUpdate.ts:16
#~ msgid "A new version of the app is available. Please update to continue using the app."
#~ msgstr "Hi ha una nova versió d'aquesta aplicació. Actualitza-la per a continuar."
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Accedeix als enllaços de navegació i configuració"
@@ -313,16 +344,16 @@ msgid "Access profile and other navigation links"
msgstr "Accedeix al perfil i altres enllaços de navegació"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Accessibilitat"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Configuració d'accessibilitat"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Configuració d'accessibilitat"
@@ -331,8 +362,8 @@ msgstr "Configuració d'accessibilitat"
#~ msgstr "compte"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Compte"
@@ -348,20 +379,20 @@ msgstr "Compte seguit"
msgid "Account muted"
msgstr "Compte silenciat"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Compte silenciat"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Compte silenciat per una llista"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Opcions del compte"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Compte eliminat de l'accés ràpid"
@@ -378,10 +409,10 @@ msgstr "Compte no seguit"
msgid "Account unmuted"
msgstr "Compte no silenciat"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Afegeix"
@@ -397,14 +428,14 @@ msgstr "Afegeix {displayName} al teu starter pack"
msgid "Add a content warning"
msgstr "Afegeix una advertència de contingut"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Afegeix un usuari a aquesta llista"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Afegeix un compte"
@@ -444,17 +475,17 @@ msgstr "Afegeix una contrasenya d'aplicació"
#~ msgid "Add link card:"
#~ msgstr "Afegeix una targeta a l'enllaç:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Afegeix paraula silenciada a la configuració"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Afegeix les paraules i etiquetes silenciades"
#: src/screens/StarterPack/Wizard/index.tsx:197
#~ msgid "Add people to your starter pack that you think others will enjoy following"
-#~ msgstr ""
+#~ msgstr "Afegeix gent que creus que als altres els agradaria seguir al teu starter pack"
#: src/screens/Home/NoFeedsPinned.tsx:99
msgid "Add recommended feeds"
@@ -472,7 +503,7 @@ msgstr "Afegeix el canal per defecte només de la gent que segueixes"
msgid "Add the following DNS record to your domain:"
msgstr "Afegeix el següent registre DNS al teu domini:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "Afegeix aquest canal als teus canals"
@@ -481,7 +512,7 @@ msgstr "Afegeix aquest canal als teus canals"
msgid "Add to Lists"
msgstr "Afegeix a les llistes"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Afegeix als meus canals"
@@ -490,19 +521,20 @@ msgstr "Afegeix als meus canals"
#~ msgstr "Afegit"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Afegit a la llista"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Afegit als meus canals"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per a aparèixer al teu canal."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per a aparèixer al teu canal."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Contingut per a adults"
@@ -511,7 +543,7 @@ msgstr "Contingut per a adults"
#~ msgid "Adult content can only be enabled via the Web at <0/>."
#~ msgstr "El contingut per a adults només es pot habilitar via web a <0/>."
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "El contingut per a adults només es pot activar a través del web a <0>bsky.app0>."
@@ -519,20 +551,20 @@ msgstr "El contingut per a adults només es pot activar a través del web a <0>b
msgid "Adult content is disabled."
msgstr "El contingut per a adults està deshabilitat."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Avançat"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
-msgstr ""
+msgstr "Entrenament de l'algorisme completat"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "S'han seguit tots els comptes!"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Tots els canals que has desat, en un sol lloc."
@@ -551,6 +583,14 @@ msgstr "Permet l'accés als teus missatges directes"
msgid "Allow new messages from"
msgstr "Permet missatges nou de"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -568,7 +608,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Text alternatiu"
@@ -589,14 +629,27 @@ msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'en
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "S'ha enviat un correu a la teva adreça prèvia, {0}. Inclou un codi de confirmació que has d'entrar aquí sota."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Hi ha hagut un error"
+#~ msgid "An error occured"
+#~ msgstr "Hi ha hagut un error"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a provar?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr "S'ha produït un error en desar la imatge."
@@ -610,39 +663,48 @@ msgstr "S'ha produït un error en desar el codi QR!"
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr "Hi ha hagut un error intentant esborrar el missatge. Torna-ho a provar."
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "S'ha produït un error en intentar seguir-ho tot"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema que no està inclòs en aquestes opcions"
#: src/components/dms/dialogs/NewChatDialog.tsx:36
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "Hi ha hagut un problema en inciar el xat"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "Hi ha hagut un problema en provar d'obrir el xat"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Hi ha hagut un problema, prova-ho de nou."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "hi ha hagut un problema desconegut"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "i"
@@ -659,6 +721,10 @@ msgstr "GIF animat"
msgid "Anti-Social Behavior"
msgstr "Comportament antisocial"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Idioma de l'aplicació"
@@ -675,7 +741,7 @@ msgstr "La contrasenya de l'aplicació només pot estar formada per lletres, nú
msgid "App Password names must be at least 4 characters long."
msgstr "La contrasenya de l'aplicació ha de ser d'almenys 4 caràcters."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Configuració de la contrasenya d'aplicació"
@@ -683,18 +749,18 @@ msgstr "Configuració de la contrasenya d'aplicació"
#~ msgid "App passwords"
#~ msgstr "Contrasenyes de l'aplicació"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Contrasenyes de l'aplicació"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Apel·la"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Apel·la \"{0}\" etiqueta"
@@ -710,7 +776,7 @@ msgstr "Apel·la \"{0}\" etiqueta"
#~ msgid "Appeal Decision"
#~ msgstr "Decisión de apelación"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Apel·lació enviada"
@@ -730,10 +796,19 @@ msgstr "Apel·la aquesta decisió"
#~ msgid "Appeal this decision."
#~ msgstr "Apel·la aquesta decisió."
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Aparença"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -755,9 +830,9 @@ msgstr "Confirmes que vols eliminar la contrasenya de l'aplicació \"{name}\"?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Estàs segur que vols esborrar aquest missatge? El missatge s'esborrarà per a tu, però no per als altres participants."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
-msgstr ""
+msgstr "Estàs segur que vols eliminar aquest starter pack?"
#: src/components/dms/ConvoMenu.tsx:189
#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants."
@@ -767,19 +842,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatge s'esborraran per a tu, però no per a l'altre participant."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Confirmes que vols eliminar {0} dels teus canals?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Segur que vols eliminar-ho dels teus canals?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Confirmes que vols descartar aquest esborrany?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Ho confirmes?"
@@ -800,13 +875,13 @@ msgstr "Art"
msgid "Artistic or non-erotic nudity."
msgstr "Nuesa artística o no eròtica."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Almenys 3 caràcters"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -819,8 +894,8 @@ msgstr "Almenys 3 caràcters"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Endarrere"
@@ -833,7 +908,7 @@ msgstr "Endarrere"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Segons els teus interessos en {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Conceptes bàsics"
@@ -841,7 +916,7 @@ msgstr "Conceptes bàsics"
msgid "Birthday"
msgstr "Aniversari"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Aniversari:"
@@ -864,15 +939,15 @@ msgstr "Bloqueja el compte"
msgid "Block Account?"
msgstr "Vols bloquejar el compte?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Bloqueja comptes"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Bloqueja una llista"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Vols bloquejar aquests comptes?"
@@ -880,16 +955,15 @@ msgstr "Vols bloquejar aquests comptes?"
#~ msgid "Block this List"
#~ msgstr "Bloqueja la llista"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Bloquejada"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Comptes bloquejats"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Comptes bloquejats"
@@ -902,7 +976,7 @@ msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera. No veuràs mai el seu contingut ni ells el teu."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Publicació bloquejada."
@@ -910,7 +984,7 @@ msgstr "Publicació bloquejada."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "El bloqueig no evita que aquest etiquetador apliqui etiquetes al teu compte."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "El bloqueig és públic. Els comptes bloquejats no poden respondre els teus fils, ni mencionar-te ni interactuar amb tu de cap manera."
@@ -918,7 +992,7 @@ msgstr "El bloqueig és públic. Els comptes bloquejats no poden respondre els t
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Bloquejar no evitarà que s'apliquin etiquetes al teu compte, però no deixarà que aquest compte respongui els teus fils ni interactuï amb tu."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -933,7 +1007,7 @@ msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotj
#: src/components/ProgressGuide/List.tsx:55
msgid "Bluesky is better with friends!"
-msgstr ""
+msgstr "Bluesky és millor amb col·legues!"
#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80
#: src/view/com/auth/onboarding/WelcomeMobile.tsx:82
@@ -958,7 +1032,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la teva xarxa."
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky no mostrarà el teu perfil ni les publicacions als usuaris que no estiguin registrats. Altres aplicacions poden no seguir aquesta demanda. Això no fa que el teu compte sigui privat."
@@ -979,23 +1053,25 @@ msgstr "Difumina les imatges i filtra-ho dels canals"
msgid "Books"
msgstr "Llibres"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
-msgstr ""
+msgstr "Explora més comptes a la pàgina Explora"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
-msgstr ""
+msgstr "Explora més canals a la pàgina Explora"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
-msgstr ""
+msgstr "Explora més recomanacions"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
-msgstr ""
+msgstr "Explora més recomancaions a la pàgina Explora"
#: src/screens/Home/NoFeedsPinned.tsx:103
#: src/screens/Home/NoFeedsPinned.tsx:109
@@ -1006,7 +1082,7 @@ msgstr "Explora altres canals"
#~ msgid "Build version {0} {1}"
#~ msgstr "Versió {0} {1}"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Negocis"
@@ -1014,7 +1090,7 @@ msgstr "Negocis"
#~ msgid "Button disabled. Input custom domain to proceed."
#~ msgstr "Botó deshabilitat. Entra el domini personalitzat per a continuar."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "per -"
@@ -1030,15 +1106,15 @@ msgstr "Per {0}"
#~ msgid "by @{0}"
#~ msgstr "per @{0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "per <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Creant el compte indiques que estàs d'acord amb {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "per tu"
@@ -1050,13 +1126,13 @@ msgstr "Càmera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Només pot tenir lletres, números, espais, guions i guions baixos. Ha de tenir almenys 4 caràcters i no més de 32."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -1072,9 +1148,8 @@ msgstr "Només pot tenir lletres, números, espais, guions i guions baixos. Ha d
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Cancel·la"
@@ -1106,7 +1181,7 @@ msgstr "Cancel·la la retallada de la imatge"
msgid "Cancel profile editing"
msgstr "Cancel·la l'edició del perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Cancel·la la citació de la publicació"
@@ -1115,7 +1190,6 @@ msgid "Cancel reactivation and log out"
msgstr "Cancel·la la reactivació i surt"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Cancel·la la cerca"
@@ -1131,17 +1205,17 @@ msgstr "Cancel·la obrir la web enllaçada"
msgid "Change"
msgstr "Canvia"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Canvia"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Canvia l'identificador"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Canvia l'identificador"
@@ -1149,12 +1223,12 @@ msgstr "Canvia l'identificador"
msgid "Change my email"
msgstr "Canvia el meu correu"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Canvia la contrasenya"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Canvia la contrasenya"
@@ -1170,7 +1244,7 @@ msgstr "Canvia l'idioma de la publicació a {0}"
msgid "Change Your Email"
msgstr "Canvia el teu correu"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1182,14 +1256,14 @@ msgstr "Xat silenciat"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Configuració del xat"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "Configuració del xat"
@@ -1226,19 +1300,19 @@ msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aqu
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Tria \"Tothom\" or \"Ningú\""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
-msgstr ""
+msgstr "Tria'n 3 o més:"
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Choose a new Bluesky username or create"
#~ msgstr "Tria un nou nom d'usuari de Bluesky o crea'l"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
-msgstr ""
+msgstr "Tria'n almenys {0} més"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "Tria els canals"
@@ -1246,7 +1320,7 @@ msgstr "Tria els canals"
msgid "Choose for me"
msgstr "Tria per mi"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "Tria les persones"
@@ -1254,7 +1328,7 @@ msgstr "Tria les persones"
msgid "Choose Service"
msgstr "Tria un servei"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Tria els algoritmes que alimentaran els teus canals personalitzats."
@@ -1269,8 +1343,8 @@ msgstr "Tria aquest color com el teu avatar"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "Tria qui pot respondre"
+#~ msgid "Choose who can reply"
+#~ msgstr "Tria qui pot respondre"
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1281,18 +1355,18 @@ msgid "Choose your password"
msgstr "Tria la teva contrasenya"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Esborra totes les dades antigues emmagatzemades"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Esborra totes les dades antigues emmagatzemades"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Esborra totes les dades antigues emmagatzemades (i després reinicia)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Esborra totes les dades antigues emmagatzemades (i després reinicia)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Esborra totes les dades emmagatzemades"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Esborra totes les dades emmagatzemades (i després reinicia)"
@@ -1302,10 +1376,10 @@ msgid "Clear search query"
msgstr "Esborra la cerca"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Esborra totes les dades antigues emmagatzemades"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Esborra totes les dades antigues emmagatzemades"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Esborra totes les dades emmagatzemades"
@@ -1325,7 +1399,7 @@ msgstr "Clica aquí per a més informació."
#~ msgid "Click here to add one."
#~ msgstr "Clica aquí per afegir-ne un."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Clica aquí per a obrir el menú d'etiquetes per {tag}"
@@ -1333,6 +1407,14 @@ msgstr "Clica aquí per a obrir el menú d'etiquetes per {tag}"
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr "Clica aquí per a obrir el menú d'etiquetes per #{tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "Clica aquí per provar d'enviar el missatge de nou"
@@ -1346,12 +1428,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "Clip 🐴 clop 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1372,7 +1454,7 @@ msgid "Close bottom drawer"
msgstr "Tanca el calaix inferior"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Tanca el diàleg"
@@ -1396,8 +1478,8 @@ msgstr "Tanca el modal"
msgid "Close navigation footer"
msgstr "Tanca el peu de la navegació"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Tanca aquest diàleg"
@@ -1409,7 +1491,7 @@ msgstr "Tanca la barra de navegació inferior"
msgid "Closes password update alert"
msgstr "Tanca l'alerta d'actualització de contrasenya"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Tanca l'editor de la publicació i descarta l'esborrany"
@@ -1417,11 +1499,11 @@ msgstr "Tanca l'editor de la publicació i descarta l'esborrany"
msgid "Closes viewer for header image"
msgstr "Tanca la visualització de la imatge de la capçalera"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "Plega la llista d'usuaris"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Plega la llista d'usuaris per una notificació concreta"
@@ -1435,27 +1517,31 @@ msgstr "Comèdia"
msgid "Comics"
msgstr "Còmics"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Directrius de la comunitat"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Finalitza el registre i comença a utilitzar el teu compte"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Completa la prova"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Crea publicacions de fins a {MAX_GRAPHEME_LENGTH} caràcters"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Redacta una resposta"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Configura els filtres de continguts per la categoria: {0}"
@@ -1501,11 +1587,11 @@ msgstr "Confirma l'eliminació del compte"
#~ msgid "Confirm your age to enable adult content."
#~ msgstr "Confirma la teva edat per a habilitar el contingut per a adults"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Confirma la teva edat:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Confirma la teva data de naixement"
@@ -1527,7 +1613,8 @@ msgstr "Codi de confirmació"
msgid "Connecting..."
msgstr "Connectant…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Contacta amb suport"
@@ -1547,24 +1634,24 @@ msgstr "Contingut bloquejat"
#~ msgid "Content Filtering"
#~ msgstr "Filtre de contingut"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Filtres de contingut"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Idiomes del contingut"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Contingut no disponible"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Advertència del contingut"
@@ -1576,7 +1663,7 @@ msgstr "Advertències del contingut"
msgid "Context menu backdrop, click to close the menu."
msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Continua"
@@ -1589,7 +1676,7 @@ msgstr "Continua com a {0} (sessió actual)"
msgid "Continue thread..."
msgstr "Continua el fil..."
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1616,7 +1703,7 @@ msgstr "Cuina"
msgid "Copied"
msgstr "Copiat"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Número de versió copiat en memòria"
@@ -1624,8 +1711,8 @@ msgstr "Número de versió copiat en memòria"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Copiat en memòria"
@@ -1659,12 +1746,12 @@ msgstr "Copia l'enllaç"
msgid "Copy Link"
msgstr "Copia l'enllaç"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Copia l'enllaç a la llista"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Copia l'enllaç a la publicació"
@@ -1677,8 +1764,8 @@ msgstr "Copia l'enllaç a la publicació"
msgid "Copy message text"
msgstr "Copia el text del missatge"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Copia el text de la publicació"
@@ -1686,14 +1773,14 @@ msgstr "Copia el text de la publicació"
msgid "Copy QR code"
msgstr "Copia el codi QR"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Política de drets d'autor"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr "No s'ha pogut comprimir el vídeo"
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1703,7 +1790,7 @@ msgstr "No s'ha pogut sortir del xat"
msgid "Could not load feed"
msgstr "No s'ha pogut carregar el canal"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "No s'ha pogut carregar la llista"
@@ -1732,7 +1819,7 @@ msgstr "Crea"
msgid "Create a new account"
msgstr "Crea un nou compte"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Crea un nou compte de Bluesky"
@@ -1742,7 +1829,7 @@ msgstr "Crea un codi QR per a un starter pack"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "Crea un starter pack"
@@ -1750,7 +1837,7 @@ msgstr "Crea un starter pack"
msgid "Create a starter pack for me"
msgstr "Crea un starter pack per a mi"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Crea un compte"
@@ -1814,46 +1901,58 @@ msgstr "Personalitzat"
msgid "Custom domain"
msgstr "Domini personalitzat"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Els canals personalitzats fets per la comunitat et porten noves experiències i t'ajuden a trobar contingut que t'agradarà."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Personalitza el contingut dels llocs externs."
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
#: src/view/screens/Settings.tsx:687
#~ msgid "Danger Zone"
#~ msgstr "Zona de perill"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Fosc"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Mode fosc"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Tema fosc"
+#~ msgid "Dark Theme"
+#~ msgstr "Tema fosc"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Data de naixement"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "Desactiva el compte"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "Desactiva el meu compte"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Moderació de depuració"
@@ -1862,16 +1961,16 @@ msgid "Debug panel"
msgstr "Panell de depuració"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Elimina"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Elimina el compte"
@@ -1891,8 +1990,8 @@ msgstr "Elimina la contrasenya d'aplicació"
msgid "Delete app password?"
msgstr "Vols eliminar la contrasenya d'aplicació?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "Suprimeix el registre de declaració de xat"
@@ -1900,7 +1999,7 @@ msgstr "Suprimeix el registre de declaració de xat"
msgid "Delete for me"
msgstr "Elimina-ho per mi"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Elimina la llista"
@@ -1920,41 +2019,41 @@ msgstr "Elimina el meu compte"
#~ msgid "Delete my account…"
#~ msgstr "Elimina el meu compte…"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Elimina el meu compte…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Elimina la publicació"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "Elimina l'starter pack"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "Vols eliminar l'starter pack?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Vols eliminar aquesta llista?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Vols eliminar aquesta publicació?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Eliminat"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Publicació eliminada."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "Suprimeix el registre de declaració de xat"
@@ -1969,6 +2068,15 @@ msgstr "Descripció"
msgid "Descriptive alt text"
msgstr "Text alternatiu descriptiu"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
#: src/view/com/auth/create/Step1.tsx:96
#~ msgid "Dev Server"
#~ msgstr "Servidor de desenvolupament"
@@ -1977,11 +2085,16 @@ msgstr "Text alternatiu descriptiu"
#~ msgid "Developer Tools"
#~ msgstr "Eines de desenvolupador"
-#: src/view/com/composer/Composer.tsx:295
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Vols dir alguna cosa?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Tènue"
@@ -1989,7 +2102,7 @@ msgstr "Tènue"
msgid "Direct messages are here!"
msgstr "Els missatges directes són aquí!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Desactiva la reproducció automàtica dels GIF"
@@ -1997,7 +2110,7 @@ msgstr "Desactiva la reproducció automàtica dels GIF"
msgid "Disable Email 2FA"
msgstr "Desactiva el correu 2FA"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Desactiva la retroalimentació hàptica"
@@ -2005,6 +2118,10 @@ msgstr "Desactiva la retroalimentació hàptica"
#~ msgid "Disable haptics"
#~ msgstr "Deshabilita l'hàptic"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr "Desabilita les vibracions"
@@ -2014,11 +2131,11 @@ msgstr "Desactiva la retroalimentació hàptica"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Deshabilitat"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Descarta"
@@ -2026,37 +2143,45 @@ msgstr "Descarta"
#~ msgid "Discard draft"
#~ msgstr "Descarta l'esborrany"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Vols descartar l'esborrany?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectats"
#: src/tours/HomeTour.tsx:70
msgid "Discover learns which posts you like as you browse."
-msgstr ""
+msgstr "Discover apren quines publicacions t'agraden mentre navegues."
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Descobreix nous canals personalitzats"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "Descobreix nous canals"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Descobreix nous canals"
-#: src/components/ProgressGuide/List.tsx:40
-msgid "Dismiss getting started guide"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:40
+msgid "Dismiss getting started guide"
+msgstr "Ignora la guia d'inici"
+
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "Mostra insígnies de text alternatiu més grans"
@@ -2072,11 +2197,15 @@ msgstr "Nom mostrat"
msgid "DNS Panel"
msgstr "Panell de DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "No inclou nuesa."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "No comença ni acaba amb un guionet"
@@ -2094,7 +2223,6 @@ msgstr "Domini verificat!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -2113,8 +2241,8 @@ msgstr "Fet"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Fet"
@@ -2127,7 +2255,7 @@ msgstr "Fet{extraText}"
#~ msgid "Double tap to sign in"
#~ msgstr "Fes doble toc per a iniciar la sessió"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "Descarrega Bluesky"
@@ -2148,6 +2276,10 @@ msgstr "Deixa anar a afegir imatges"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "A causa de les polítiques d'Apple, el contingut a adults només es pot habilitar a la web després de registrar-se."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "p. ex.jordi"
@@ -2188,11 +2320,11 @@ msgstr "p. ex.Usuaris que sempre responen amb anuncis"
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicament."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "Edita"
@@ -2201,12 +2333,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Edita"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Edita l'avatar"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "Edita els canals"
@@ -2215,7 +2347,12 @@ msgstr "Edita els canals"
msgid "Edit image"
msgstr "Edita la imatge"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Edita els detalls de la llista"
@@ -2223,10 +2360,10 @@ msgstr "Edita els detalls de la llista"
msgid "Edit Moderation List"
msgstr "Edita la llista de moderació"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Edita els meus canals"
@@ -2234,10 +2371,15 @@ msgstr "Edita els meus canals"
msgid "Edit my profile"
msgstr "Edita el meu perfil"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "Edita les persones"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2253,7 +2395,7 @@ msgstr "Edita el perfil"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Edita els meus canals guardats"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "Edita l'starter pack"
@@ -2261,7 +2403,7 @@ msgstr "Edita l'starter pack"
msgid "Edit User List"
msgstr "Edita la llista d'usuaris"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "Edita qui pot respondre"
@@ -2273,7 +2415,7 @@ msgstr "Edita el teu nom mostrat"
msgid "Edit your profile description"
msgstr "Edita la descripció del teu perfil"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "Edita el teu starter pack"
@@ -2283,8 +2425,8 @@ msgid "Education"
msgstr "Ensenyament"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "Tria \"Tothom\" o \"Ningú\""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr "Tria \"Tothom\" o \"Ningú\""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2312,7 +2454,7 @@ msgstr "Correu actualitzat"
msgid "Email verified"
msgstr "Correu verificat"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Correu:"
@@ -2321,8 +2463,8 @@ msgid "Embed HTML code"
msgstr "Incrusta el codi HTML"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Incrusta la publicació"
@@ -2334,7 +2476,7 @@ msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent
msgid "Enable {0} only"
msgstr "Habilita només {0}"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Habilita el contingut per a adults"
@@ -2356,18 +2498,22 @@ msgstr "Habilita els continguts externs"
#~ msgid "Enable External Media"
#~ msgstr "Habilita el contingut extern"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Habilita reproductors de contingut per"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
+msgstr "Activa les notificacions prioritàries"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Activa aquesta opció per a veure només les respostes entre els comptes que segueixes."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Activa aquesta opció per a veure només les respostes entre els comptes que segueixes."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2375,11 +2521,11 @@ msgstr "Habilita només per aquesta font"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Habilitat"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Fi del canal"
@@ -2389,7 +2535,7 @@ msgstr "Fi del canal"
#: src/tours/Tooltip.tsx:159
msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip."
-msgstr ""
+msgstr "Fi de la gira de benvinguda. No avancis. En comptes d'això, ves enrere per obtenir més opcions o prem per saltar."
#: src/view/com/modals/AddAppPasswords.tsx:161
msgid "Enter a name for this App Password"
@@ -2399,8 +2545,8 @@ msgstr "Posa un nom a aquesta contrasenya d'aplicació"
msgid "Enter a password"
msgstr "Introdueix una contrasenya"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Introdueix una lletra o etiqueta"
@@ -2457,25 +2603,27 @@ msgstr "Introdueix el teu usuari i contrasenya"
msgid "Error occurred while saving file"
msgstr "Ha ocorregut un error en desar el fitxer"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Error en rebre la resposta al captcha."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Error:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Tothom"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "Tothom pot respondre"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2491,6 +2639,14 @@ msgstr "Mencions o respostes excessives"
msgid "Excessive or unwanted messages"
msgstr "Missatges excessius o no desitjats"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Surt del procés d'eliminació del compte"
@@ -2508,7 +2664,6 @@ msgid "Exits image view"
msgstr "Surt de la visualització de la imatge"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Surt de la cerca"
@@ -2520,7 +2675,7 @@ msgstr "Surt de la cerca"
msgid "Expand alt text"
msgstr "Expandeix el text alternatiu"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "Expandeix la llista d'usuaris"
@@ -2531,6 +2686,14 @@ msgstr "Expandeix o replega la publicació completa a la qual estàs responent"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
+msgstr "Experimental: quan aquesta preferència està activada, només rebràs notificacions de respostes i citacions dels usuaris que segueixes. Continuarem afegint més controls aquí amb el temps."
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:47
@@ -2541,12 +2704,12 @@ msgstr "Contingut explícit o potencialment pertorbador."
msgid "Explicit sexual images."
msgstr "Imatges sexuals explícites."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Exporta les meves dades"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Exporta les meves dades"
@@ -2556,17 +2719,17 @@ msgid "External Media"
msgstr "Contingut extern"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "El contingut extern pot permetre que algunes webs recullin informació sobre tu i el teu dispositiu. No s'envia ni es demana cap informació fins que premis el botó \"reproduir\"."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Preferència del contingut extern"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Configuració del contingut extern"
@@ -2575,8 +2738,8 @@ msgstr "Configuració del contingut extern"
msgid "Failed to create app password."
msgstr "No s'ha pogut crear la contrasenya d'aplicació."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "No s'ha pogut crear l'starter pack"
@@ -2588,16 +2751,16 @@ msgstr "No s'ha pogut crear la llista. Comprova la teva connexió a internet i t
msgid "Failed to delete message"
msgstr "No s'ha pogut esborrar el missatge"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "No s'ha pogut eliminar l'starter pack"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "No s'han pogut carregar les preferències dels canals"
@@ -2619,12 +2782,12 @@ msgstr "No s'han pogut carregar els missatges anteriors"
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Error en carregar els canals recomanats"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "No s'han pogut carregar els canals suggerits"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "No s'han pogut carregar els comptes suggerits"
@@ -2634,7 +2797,7 @@ msgstr "Error en desar la imatge: {0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "Error en desar les preferències de les notificacions, torna-ho a provar"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
@@ -2644,16 +2807,16 @@ msgstr "No s'ha pogut enviar"
#~ msgid "Failed to send message(s)."
#~ msgstr "Error en enviar missatge(s)."
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "No s'han pogut actualitzar els canals"
@@ -2662,12 +2825,12 @@ msgstr "No s'han pogut actualitzar els canals"
msgid "Failed to update settings"
msgstr "No s'ha pogut actualitzar la configuració"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Canal"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Canal per {0}"
@@ -2684,19 +2847,19 @@ msgid "Feed toggle"
msgstr "Alterna el canal"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Comentaris"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Canals"
@@ -2704,7 +2867,7 @@ msgstr "Canals"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "Els canals són creats pels usuaris per a curar contingut. Tria els canals que trobis interessants."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixen una mica de codi. <0/> per a més informació."
@@ -2712,7 +2875,7 @@ msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixe
#~ msgid "Feeds can be topical as well!"
#~ msgstr "Els canals també poden ser d'actualitat!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "Canals actualitzats!"
@@ -2728,7 +2891,7 @@ msgstr "Fitxer desat amb èxit"
msgid "Filter from feeds"
msgstr "Filtra-ho dels canals"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Finalitzant"
@@ -2740,7 +2903,7 @@ msgstr "Troba comptes per a seguir"
#: src/tours/HomeTour.tsx:88
msgid "Find more feeds and accounts to follow in the Explore page."
-msgstr ""
+msgstr "Troba més canals i comptes per seguir a la pàgina Explora."
#: src/view/screens/Search/Search.tsx:439
msgid "Find posts and users on Bluesky"
@@ -2758,7 +2921,7 @@ msgstr "Troba publicacions i usuaris a Bluesky"
#~ msgid "Finding similar accounts..."
#~ msgstr "Troba comptes similars…"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Ajusta el contingut que veus al teu canal Seguint."
@@ -2770,19 +2933,19 @@ msgstr "Ajusta el contingut que veus al teu canal Seguint."
msgid "Fine-tune the discussion threads."
msgstr "Ajusta els fils de debat."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "Finalitza"
#: src/tours/Tooltip.tsx:149
msgid "Finish tour and begin using the application"
-msgstr ""
+msgstr "Acaba la visita guiada i comença a utilitzar l'aplicació"
#: src/screens/Onboarding/index.tsx:35
msgid "Fitness"
msgstr "Exercici"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Flexible"
@@ -2796,12 +2959,11 @@ msgid "Flip vertically"
msgstr "Gira verticalment"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Segueix"
@@ -2815,21 +2977,21 @@ msgstr "Segueix"
msgid "Follow {0}"
msgstr "Segueix {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "Segueix a {name}"
#: src/components/ProgressGuide/List.tsx:54
msgid "Follow 7 accounts"
-msgstr ""
+msgstr "Segueix 7 comptes"
#: src/view/com/profile/ProfileMenu.tsx:246
#: src/view/com/profile/ProfileMenu.tsx:257
msgid "Follow Account"
msgstr "Segueix el compte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "Segueix-los a tots"
@@ -2841,7 +3003,7 @@ msgstr "Segueix-los a tots"
msgid "Follow Back"
msgstr "Segueix"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Segueix més comptes per connectar-te als teus interessos i construir la teva xarxa."
@@ -2877,28 +3039,28 @@ msgstr "Seguit per <0>{0}0> i <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguit per <0>{0}0>, <1>{1}1>, i {2, plural, one {# altre} other {# altres}}"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Usuaris seguits"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Només els usuaris seguits"
+#~ msgid "Followed users only"
+#~ msgstr "Només els usuaris seguits"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "et segueix"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
-msgstr ""
+msgstr "també et segueix"
#: src/view/com/profile/ProfileFollowers.tsx:104
#: src/view/screens/ProfileFollowers.tsx:25
msgid "Followers"
msgstr "Seguidors"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "Seguidors de @{0} que coneixes"
@@ -2912,46 +3074,46 @@ msgstr "Seguidors que coneixes"
#~ msgstr "seguint"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Seguint"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Seguint {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "Seguint a {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Preferències del canal Seguint"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Preferències del canal Seguint"
#: src/tours/HomeTour.tsx:59
msgid "Following shows the latest posts from people you follow."
-msgstr ""
+msgstr "Seguint mostra les últimes publicacions de la gent que segueixes."
#: src/screens/Profile/Header/Handle.tsx:31
msgid "Follows you"
msgstr "Et segueix"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Et segueix"
@@ -2968,6 +3130,10 @@ msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmació al
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Per motius de seguretat no podràs tornar-la a veure. Si perds aquesta contrasenya necessitaràs generar-ne una de nova."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/view/com/auth/login/LoginForm.tsx:244
#~ msgid "Forgot"
#~ msgstr "L'he oblidat"
@@ -2997,7 +3163,7 @@ msgstr "Publica contingut no desitjat freqüentment"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "De <0/>"
@@ -3010,9 +3176,9 @@ msgstr "Galeria"
msgid "Generate a starter pack"
msgstr "Genera un starter pack"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
-msgstr ""
+msgstr "Aconsegueix ajuda"
#: src/components/dms/MessagesNUX.tsx:168
msgid "Get started"
@@ -3025,7 +3191,7 @@ msgstr "Comença"
#: src/components/ProgressGuide/List.tsx:33
msgid "Getting started"
-msgstr ""
+msgstr "Començant"
#: src/view/com/util/images/ImageHorzList.tsx:35
msgid "GIF"
@@ -3039,41 +3205,42 @@ msgstr "Posa una cara al teu perfil"
msgid "Glaring violations of law or terms of service"
msgstr "Infraccions flagrants de la llei o les condicions del servei"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Ves enrere"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Ves enrere"
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189
#~ msgid "Go back to previous screen"
-#~ msgstr ""
+#~ msgstr "ves a la pantalla anterior"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Ves al pas anterior"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "Ves al pas anterior"
@@ -3105,7 +3272,7 @@ msgstr "Ves al perfil"
#: src/tours/Tooltip.tsx:138
msgid "Go to the next step of the tour"
-msgstr ""
+msgstr "ves al següent pas de la visita guiada"
#: src/components/dms/ConvoMenu.tsx:164
msgid "Go to user's profile"
@@ -3115,15 +3282,15 @@ msgstr "Ves al perfil de l'usuari"
msgid "Graphic Media"
msgstr "Mitjans gràfics"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
-msgstr ""
+msgstr "Ja ets a mig camí!"
#: src/view/com/modals/ChangeHandle.tsx:260
msgid "Handle"
msgstr "Identificador"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Hàptics"
@@ -3131,7 +3298,7 @@ msgstr "Hàptics"
msgid "Harassment, trolling, or intolerance"
msgstr "Assetjament, troleig o intolerància"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Etiqueta"
@@ -3143,12 +3310,12 @@ msgstr "Etiqueta"
msgid "Hashtag: #{tag}"
msgstr "Etiqueta: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Tens problemes?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Ajuda"
@@ -3172,6 +3339,10 @@ msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un a
msgid "Here is your app password."
msgstr "Aquí tens la teva contrasenya d'aplicació."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -3179,30 +3350,50 @@ msgstr "Aquí tens la teva contrasenya d'aplicació."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Amaga"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Amaga"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Amaga l'entrada"
+#~ msgid "Hide post"
+#~ msgstr "Amaga l'entrada"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Amaga el contingut"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Vols amagar aquesta entrada?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Amaga la llista d'usuaris"
@@ -3238,12 +3429,12 @@ msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "No podem carregar el servei de moderació."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Inici"
@@ -3288,7 +3479,7 @@ msgstr "Tinc un codi de confirmació"
msgid "I have my own domain"
msgstr "Tinc el meu propi domini"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "Ho entenc"
@@ -3301,15 +3492,15 @@ msgstr "Si el text alternatiu és llarg, canvia l'estat expandit del text altern
msgid "If none are selected, suitable for all ages."
msgstr "Si no en selecciones cap, és apropiat per a totes les edats."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Si encara no ets un adult segons les lleis del teu país, el teu tutor legal haurà de llegir aquests Termes en el teu lloc."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Si esborres aquesta llista no la podràs recuperar."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si esborres aquesta publicació no la podràs recuperar."
@@ -3410,10 +3601,14 @@ msgstr "Introdueix la teva contrasenya"
msgid "Input your preferred hosting provider"
msgstr "Introdueix el teu proveïdor d'allotjament preferit"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Introdueix el teu identificador d'usuari"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "Presentació dels missatges directes"
@@ -3423,7 +3618,7 @@ msgstr "Presentació dels missatges directes"
msgid "Invalid 2FA confirmation code."
msgstr "El codi de confirmació 2FA no és vàlid."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Registre de publicació no vàlid o no admès"
@@ -3443,7 +3638,7 @@ msgstr "Convida un amic"
msgid "Invite code"
msgstr "Codi d'invitació"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Codi d'invitació rebutjat. Comprova que l'has entrat correctament i torna-ho a provar."
@@ -3479,14 +3674,14 @@ msgstr "Convida a Bluesky de manera més personalitzada"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt."
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Feines"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "Uneix-te a Bluesky"
@@ -3536,11 +3731,11 @@ msgstr "Les etiquetes són anotacions sobre els usuaris i el contingut. Poden se
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr "S'han posat etiquetes a aquest {labelTarget}"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Etiquetes al teu compte"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Etiquetes al teu contingut"
@@ -3548,16 +3743,16 @@ msgstr "Etiquetes al teu contingut"
msgid "Language selection"
msgstr "Tria l'idioma"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Configuració d'idioma"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Configuració d'idioma"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Idiomes"
@@ -3574,21 +3769,26 @@ msgstr "El més recent"
#~ msgid "Learn more"
#~ msgstr "Més informació"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Més informació"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "Més informació sobre la moderació que s'ha aplicat a aquest contingut."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Més informació d'aquesta advertència"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Més informació sobre què és públic a Bluesky."
@@ -3626,8 +3826,8 @@ msgid "left to go."
msgstr "queda."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3638,7 +3838,7 @@ msgstr "Deixa'm triar"
msgid "Let's get your password reset!"
msgstr "Restablirem la teva contrasenya!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Som-hi!"
@@ -3648,7 +3848,8 @@ msgstr "Som-hi!"
#~ msgid "Library"
#~ msgstr "Biblioteca"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Clar"
@@ -3658,12 +3859,12 @@ msgstr "Clar"
#: src/components/ProgressGuide/List.tsx:48
msgid "Like 10 posts"
-msgstr ""
+msgstr "Fes m'agrada a 10 publicacions"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
-msgstr ""
+msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover"
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267
#: src/view/screens/ProfileFeed.tsx:575
@@ -3671,14 +3872,15 @@ msgid "Like this feed"
msgstr "Fes m'agrada a aquest canal"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Li ha agradat a"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Li ha agradat a"
@@ -3696,7 +3898,7 @@ msgstr "Li ha agradat a"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Li ha agradat a {likeCount} {0}"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "els ha agradat el teu canal personalitzat"
@@ -3704,7 +3906,7 @@ msgstr "els ha agradat el teu canal personalitzat"
#~ msgid "liked your custom feed{0}"
#~ msgstr "i ha agradat el teu canal personalitzat{0}"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "li ha agradat la teva publicació"
@@ -3712,11 +3914,11 @@ msgstr "li ha agradat la teva publicació"
msgid "Likes"
msgstr "M'agrades"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "M'agrades a aquesta publicació"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Llista"
@@ -3724,20 +3926,28 @@ msgstr "Llista"
msgid "List Avatar"
msgstr "Avatar de la llista"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Llista bloquejada"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Llista per {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Llista eliminada"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Llista silenciada"
@@ -3745,20 +3955,20 @@ msgstr "Llista silenciada"
msgid "List Name"
msgstr "Nom de la llista"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Llista desbloquejada"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Llista no silenciada"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Llistes"
@@ -3787,10 +3997,10 @@ msgstr "Carrega més suggerencies d'usuaris per seguir"
msgid "Load new notifications"
msgstr "Carrega noves notificacions"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Carrega noves publicacions"
@@ -3802,7 +4012,7 @@ msgstr "Carregant…"
#~ msgid "Local dev server"
#~ msgstr "Servidor de desenvolupament local"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Registre"
@@ -3818,7 +4028,7 @@ msgstr "Inicia sessió o registra't"
msgid "Log out"
msgstr "Desconnecta"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Visibilitat pels usuaris no connectats"
@@ -3861,7 +4071,7 @@ msgstr "Fes-ne un per mi"
msgid "Make sure this is where you intend to go!"
msgstr "Assegura't que és aquí on vols anar!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gestiona les teves etiquetes i paraules silenciades"
@@ -3878,20 +4088,20 @@ msgstr "Marca com a llegit"
#~ msgid "May only contain letters and numbers"
#~ msgstr "Només pot tenir lletres i números"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Contingut"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "usuaris mencionats"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Usuaris mencionats"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menú"
@@ -3926,7 +4136,7 @@ msgstr "El missatge és massa llarg"
msgid "Message settings"
msgstr "Configuració dels missatges"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3941,29 +4151,31 @@ msgstr "Missatges"
msgid "Misleading Account"
msgstr "Compte enganyós"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderació"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Detalls de la moderació"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Llista de moderació per {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Llista de moderació per <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Llista de moderació teva"
@@ -3975,20 +4187,24 @@ msgstr "S'ha creat la llista de moderació"
msgid "Moderation list updated"
msgstr "S'ha actualitzat la llista de moderació"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Llistes de moderació"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Llistes de moderació"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Configuració de moderació"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "Estats de moderació"
@@ -3996,12 +4212,12 @@ msgstr "Estats de moderació"
msgid "Moderation tools"
msgstr "Eines de moderació"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "El moderador ha decidit establir un advertiment general sobre el contingut."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Més"
@@ -4009,7 +4225,7 @@ msgstr "Més"
msgid "More feeds"
msgstr "Més canals"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Més opcions"
@@ -4027,17 +4243,19 @@ msgstr "Pel·lícules"
#: src/screens/Onboarding/state.ts:91
msgid "Music"
-msgstr ""
+msgstr "Música"
#: src/view/com/auth/create/Step2.tsx:122
#~ msgid "Must be at least 3 characters"
#~ msgstr "Ha de tenir almenys 3 caràcters"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Silencia"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Silencia {truncatedTag}"
@@ -4046,11 +4264,11 @@ msgstr "Silencia {truncatedTag}"
msgid "Mute Account"
msgstr "Silenciar el compte"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Silencia els comptes"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Silencia totes les publicacions {displayTag}"
@@ -4064,14 +4282,18 @@ msgid "Mute conversation"
msgstr "Silencia la conversa"
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Silencia només a les etiquetes"
+#~ msgid "Mute in tags only"
+#~ msgstr "Silencia només a les etiquetes"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Silencia a les etiquetes i al text"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Silencia a les etiquetes i al text"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Silencia la llista"
@@ -4080,7 +4302,7 @@ msgstr "Silencia la llista"
#~ msgid "Mute notifications"
#~ msgstr "Silencia les notificacions"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Vols silenciar aquests comptes?"
@@ -4088,33 +4310,49 @@ msgstr "Vols silenciar aquests comptes?"
#~ msgid "Mute this List"
#~ msgstr "Silencia aquesta llista"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Silencia aquesta paraula en el text de les publicacions i a les etiquetes"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Silencia aquesta paraula només a les etiquetes"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Silencia el fil de debat"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Silencia paraules i etiquetes"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Silenciada"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Comptes silenciats"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Comptes silenciats"
@@ -4123,7 +4361,7 @@ msgstr "Comptes silenciats"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i de les teves notificacions. Silenciar comptes és completament privat."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Silenciat per \"{0}\""
@@ -4131,7 +4369,7 @@ msgstr "Silenciat per \"{0}\""
msgid "Muted words & tags"
msgstr "Paraules i etiquetes silenciades"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, però tu no veuràs les seves publicacions ni rebràs notificacions seves."
@@ -4140,7 +4378,7 @@ msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, p
msgid "My Birthday"
msgstr "El meu aniversari"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Els meus canals"
@@ -4148,11 +4386,11 @@ msgstr "Els meus canals"
msgid "My Profile"
msgstr "El meu perfil"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Els meus canals desats"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Els meus canals desats"
@@ -4181,13 +4419,13 @@ msgstr "El nom o la descripció infringeixen els estàndards comunitaris"
msgid "Nature"
msgstr "Natura"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
-msgstr ""
+msgstr "ves a {0}"
#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73
msgid "Navigate to starter pack"
-msgstr "Vés a l'starter pack"
+msgstr "ves a l'starter pack"
#: src/screens/Login/ForgotPasswordForm.tsx:173
#: src/screens/Login/LoginForm.tsx:332
@@ -4195,7 +4433,7 @@ msgstr "Vés a l'starter pack"
msgid "Navigates to the next screen"
msgstr "Navega a la pantalla següent"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Navega al teu perfil"
@@ -4213,7 +4451,7 @@ msgstr "Necessites informar d'una infracció dels drets d'autor?"
#~ msgid "Never lose access to your followers and data."
#~ msgstr "No perdis mai accés als teus seguidors ni a les teves dades."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "No perdis mai accés als teus seguidors i les teves dades."
@@ -4225,7 +4463,7 @@ msgstr "No perdis mai accés als teus seguidors i les teves dades."
msgid "Nevermind, create a handle for me"
msgstr "Tant hi fa, crea'm un identificador"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Nova"
@@ -4261,12 +4499,12 @@ msgctxt "action"
msgid "New post"
msgstr "Nova publicació"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Nova publicació"
@@ -4304,10 +4542,10 @@ msgstr "Notícies"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -4323,17 +4561,17 @@ msgstr "Següent"
msgid "Next image"
msgstr "Següent imatge"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "No"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Cap descripció"
@@ -4350,12 +4588,12 @@ msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "No s'han trobat canals. Intenta cercar una altra cosa."
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Ja no segueixes a {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "No pot tenir més de 253 caràcters"
@@ -4367,7 +4605,7 @@ msgstr "Encara no tens cap missatge"
msgid "No more conversations to show"
msgstr "No hi ha més converses per a mostrar"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Encara no tens cap notificació"
@@ -4378,6 +4616,10 @@ msgstr "Encara no tens cap notificació"
msgid "No one"
msgstr "Ningú"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr "Encara no hi ha publicacions."
@@ -4391,11 +4633,11 @@ msgstr "Cap resultat"
msgid "No results"
msgstr "Cap resultat"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "No s'han trobat resultats"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "No s'han trobat resultats per \"{query}\""
@@ -4420,13 +4662,13 @@ msgstr "No s'han trobat resultats de cerca per a \"{search}\"."
msgid "No thanks"
msgstr "No, gràcies"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Ningú"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "Ningú pot respondre"
+#~ msgid "Nobody can reply"
+#~ msgstr "Ningú pot respondre"
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4445,7 +4687,7 @@ msgstr "Nuesa no sexual"
#~ msgid "Not Applicable."
#~ msgstr "No aplicable."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "No s'ha trobat"
@@ -4456,12 +4698,12 @@ msgid "Not right now"
msgstr "Ara mateix no"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Nota sobre compartir"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nota: Bluesky és una xarxa oberta i pública. Aquesta configuració tan sols limita el teu contingut a l'aplicació de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs."
@@ -4471,16 +4713,16 @@ msgstr "Aquí no hi ha res"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "Filtres de les notificacions"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "Configuració de les notificacions"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "Configuració de les notificacions"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -4490,14 +4732,14 @@ msgstr "Sons de les notificacions"
msgid "Notification Sounds"
msgstr "Sons de les notificacions"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Notificacions"
@@ -4530,12 +4772,12 @@ msgid "Off"
msgstr "Apagat"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Ostres!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Ostres! Alguna cosa ha fallat."
@@ -4559,15 +4801,15 @@ msgstr "en"
msgid "on {str}"
msgstr "en {str}"
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Restableix la incorporació"
#: src/tours/Tooltip.tsx:118
msgid "Onboarding tour step {0}: {1}"
-msgstr ""
+msgstr "Visita guiada, pas {0}: {1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Falta el text alternatiu a una o més imatges."
@@ -4576,14 +4818,14 @@ msgid "Only .jpg and .png files are supported"
msgstr "Només s'accepten fitxers .jpg i .png"
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "Només {0} pot respondre"
+#~ msgid "Only {0} can reply"
+#~ msgstr "Només {0} pot respondre"
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Només {0} poden respondre."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Només {0} poden respondre."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Només pot tenir lletres, nombres i guionets"
@@ -4591,7 +4833,7 @@ msgstr "Només pot tenir lletres, nombres i guionets"
msgid "Oops, something went wrong!"
msgstr "Ostres, alguna cosa ha anat malament!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4600,11 +4842,11 @@ msgstr "Ostres, alguna cosa ha anat malament!"
msgid "Oops!"
msgstr "Ostres!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Obre"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "Obre el menú de drecera del perfil {name}"
@@ -4621,8 +4863,8 @@ msgstr "Obre el creador d'avatars"
msgid "Open conversation options"
msgstr "Obre les opcions de les converses"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Obre el selector d'emojis"
@@ -4630,7 +4872,7 @@ msgstr "Obre el selector d'emojis"
msgid "Open feed options menu"
msgstr "Obre el menú de les opcions del canal"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Obre els enllaços al navegador de l'aplicació"
@@ -4650,20 +4892,20 @@ msgstr "Obre la configuració de les paraules i etiquetes silenciades"
msgid "Open navigation"
msgstr "Obre la navegació"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Obre el menú de les opcions de publicació"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "Obre el menú de l'starter pack"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Obre la pàgina d'historial"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Obre el registre del sistema"
@@ -4671,11 +4913,11 @@ msgstr "Obre el registre del sistema"
msgid "Opens {numItems} options"
msgstr "Obre {numItems} opcions"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "Obre un diàleg per triar qui pot respondre a aquest fil"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Obre la configuració d'accessibilitat"
@@ -4687,19 +4929,23 @@ msgstr "Obre detalls addicionals per una entrada de depuració"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Obre una llista expandida d'usuaris en aquesta notificació"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Obre la càmera del dispositiu"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "Obre la configuració del xat"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Obre el compositor"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Obre la configuració d'idioma"
@@ -4711,7 +4957,7 @@ msgstr "Obre la galeria fotogràfica del dispositiu"
#~ msgid "Opens editor for profile display name, avatar, background image, and description"
#~ msgstr "Obre l'editor del perfil per a editar el nom, avatar, imatge de fons i descripció"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Obre la configuració per les incrustacions externes"
@@ -4745,11 +4991,11 @@ msgstr "Obre el diàleg per a triar GIF"
msgid "Opens list of invite codes"
msgstr "Obre la llista de codis d'invitació"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "Obre el modal per a la confirmació de la desactivació del compte"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Obre el modal per a la confirmació de l'eliminació del compte. Requereix codi de correu electrònic"
@@ -4757,19 +5003,19 @@ msgstr "Obre el modal per a la confirmació de l'eliminació del compte. Requere
#~ msgid "Opens modal for account deletion confirmation. Requires email code."
#~ msgstr "Obre el modal per a confirmar l'eliminació del compte. Requereix un codi de correu"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Obre el modal per a canviar la contrasenya de Bluesky"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Obre el modal per a triar un nou identificador de Bluesky"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Obre el modal per a baixar les dades del vostre compte Bluesky (repositori)"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Obre el modal per a verificar el correu"
@@ -4777,7 +5023,7 @@ msgstr "Obre el modal per a verificar el correu"
msgid "Opens modal for using custom domain"
msgstr "Obre el modal per a utilitzar un domini personalitzat"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Obre la configuració de la moderació"
@@ -4790,11 +5036,11 @@ msgstr "Obre el formulari de restabliment de la contrasenya"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Obre pantalla per a editar els canals desats"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Obre la pantalla amb tots els canals desats"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Obre la configuració de les contrasenyes d'aplicació"
@@ -4802,7 +5048,7 @@ msgstr "Obre la configuració de les contrasenyes d'aplicació"
#~ msgid "Opens the app password settings page"
#~ msgstr "Obre la pàgina de configuració de les contrasenyes d'aplicació"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Obre les preferències del canal de Seguint"
@@ -4818,38 +5064,42 @@ msgstr "Obre la web enllaçada"
#~ msgid "Opens the message settings page"
#~ msgstr "Obre la pàgina de configuració dels missatges"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Obre la pàgina de l'historial"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Obre la pàgina de registres del sistema"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Obre les preferències dels fils de debat"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "Obre aquest perfil"
#: src/view/com/composer/videos/SelectVideoBtn.tsx:54
msgid "Opens video picker"
-msgstr ""
+msgstr "Obre el selector de vídeos"
#: src/view/com/util/forms/DropdownButton.tsx:293
msgid "Option {0} of {numItems}"
msgstr "Opció {0} de {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Opcionalment, proporciona informació addicional a continuació:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "O combina aquestes opcions:"
@@ -4869,6 +5119,10 @@ msgstr "Un altre"
msgid "Other account"
msgstr "Un altre compte"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/modals/ServerInput.tsx:88
#~ msgid "Other service"
#~ msgstr "Un altre servei"
@@ -4881,7 +5135,7 @@ msgstr "Un altre…"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Els nostres moderadors han revisat els informes i han decidit desactivar el teu accés als xats a Bluesky."
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Pàgina no trobada"
@@ -4910,19 +5164,24 @@ msgid "Password updated!"
msgstr "Contrasenya actualitzada!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Posa en pausa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Gent"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Persones seguides per @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Persones seguint a @{0}"
@@ -4956,7 +5215,7 @@ msgid "Pictures meant for adults."
msgstr "Imatges destinades a adults."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Fixa a l'inici"
@@ -4968,11 +5227,12 @@ msgstr "Fixa a l'Inici"
msgid "Pinned Feeds"
msgstr "Canals de notícies fixats"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "Fixat als teus canals"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Reprodueix"
@@ -4989,6 +5249,11 @@ msgstr "Reprodueix {0}"
msgid "Play or pause the GIF"
msgstr "Reprodueix o posa en pausa el GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4998,16 +5263,16 @@ msgstr "Reprodueix el vídeo"
msgid "Plays the GIF"
msgstr "Reprodueix el GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Tria el teu identificador."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Tria la teva contrasenya."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Completa el captcha de verificació."
@@ -5027,7 +5292,7 @@ msgstr "Introdueix un nom per a la contrasenya de la vostra aplicació. No es pe
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Introdueix un nom únic per aquesta contrasenya d'aplicació o fes servir un nom generat aleatòriament."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Introdueix una paraula, una etiqueta o una frase vàlida per a silenciar"
@@ -5039,20 +5304,20 @@ msgstr "Introdueix una paraula, una etiqueta o una frase vàlida per a silenciar
#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}."
#~ msgstr "Introdueix el codi de verificació enviat a {phoneNumberFormatted}"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Introdueix el teu correu."
#: src/screens/Signup/StepInfo/index.tsx:63
msgid "Please enter your invite code."
-msgstr ""
+msgstr "Entra el teu codi d'invitació."
#: src/view/com/modals/DeleteAccount.tsx:253
msgid "Please enter your password as well:"
msgstr "Introdueix la teva contrasenya també:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Explica per què creieu que aquesta etiqueta ha estat aplicada incorrectament per {0}"
@@ -5077,7 +5342,7 @@ msgstr "Inicia sessió com a @{0}"
msgid "Please Verify Your Email"
msgstr "Verifica el teu correu"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Espera que es generi la targeta de l'enllaç"
@@ -5094,13 +5359,13 @@ msgstr "Pornografia"
#~ msgid "Pornography"
#~ msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Publica"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Publicació"
@@ -5111,34 +5376,39 @@ msgstr "Publicació"
#~ msgid "Post"
#~ msgstr "Publicació"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Publicació per {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Publicació per @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Publicació eliminada"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Publicació oculta"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Publicació amagada per una paraula silenciada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Publicació amagada per tu"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Idioma de la publicació"
@@ -5147,23 +5417,27 @@ msgstr "Idioma de la publicació"
msgid "Post Languages"
msgstr "Idiomes de les publicacions"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Publicació no trobada"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "publicacions"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Publicacions"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Les publicacions es poder silenciar segons el seu text, etiquetes o ambdues."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Les publicacions es poder silenciar segons el seu text, etiquetes o ambdues."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -5175,7 +5449,7 @@ msgstr "Enllaç potencialment enganyós"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "Preferència desada"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -5185,7 +5459,7 @@ msgstr "Prem per provar de connectar de nou"
msgid "Press to change hosting provider"
msgstr "Prem per canviar el proveïdor d'allotjament"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -5205,7 +5479,7 @@ msgstr "Prem per veure els seguidors d'aquest compte que també segueixes"
msgid "Previous image"
msgstr "Imatge anterior"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Idioma principal"
@@ -5215,18 +5489,18 @@ msgstr "Prioritza els usuaris que segueixes"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "Notificacions prioritàries"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Privacitat"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Política de privacitat"
@@ -5238,16 +5512,16 @@ msgstr "Xateja en privat amb altres usuaris."
msgid "Processing..."
msgstr "Processant…"
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "perfil"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Perfil"
@@ -5255,11 +5529,11 @@ msgstr "Perfil"
msgid "Profile updated"
msgstr "Perfil actualitzat"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Protegeix el teu compte verificant el teu correu."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Públic"
@@ -5267,15 +5541,15 @@ msgstr "Públic"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Llistes d'usuaris per a silenciar o bloquejar en massa, públiques i per a compartir."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Llistes que poden nodrir canals, públiques i per a compartir."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Publica"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Publica la resposta"
@@ -5293,12 +5567,12 @@ msgstr "Codi QR desat a la teva galeria"
#: src/tours/Tooltip.tsx:111
msgid "Quick tip"
-msgstr ""
+msgstr "Consell ràpid"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Cita la publicació"
@@ -5316,6 +5590,39 @@ msgstr "Cita la publicació"
#~ msgid "Quote Post"
#~ msgstr "Cita la publicació"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aleatori (també conegut com a \"Poster's Roulette\")"
@@ -5324,10 +5631,27 @@ msgstr "Aleatori (també conegut com a \"Poster's Roulette\")"
msgid "Ratios"
msgstr "Proporcions"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "Torna a activar el teu compte"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "Raó:"
@@ -5336,7 +5660,7 @@ msgstr "Raó:"
#~ msgid "Reason: {0}"
#~ msgstr "Raó: {0}"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Cerques recents"
@@ -5354,21 +5678,22 @@ msgstr "Torna a connectar"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "Refresca les notificacions"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "Carrega les converses de nou"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Elimina"
@@ -5380,11 +5705,11 @@ msgstr "Elimina"
msgid "Remove {displayName} from starter pack"
msgstr "Elimina a {displayName} de l'starter pack"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Elimina el compte"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Elimina l'avatar"
@@ -5397,8 +5722,8 @@ msgid "Remove embed"
msgstr "Elimina l'incrustat"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Elimina el canal"
@@ -5406,19 +5731,27 @@ msgstr "Elimina el canal"
msgid "Remove feed?"
msgstr "Vols eliminar el canal?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Elimina dels meus canals"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Vols eliminar-lo dels teus canals?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Elimina la imatge"
@@ -5427,24 +5760,24 @@ msgstr "Elimina la imatge"
msgid "Remove image preview"
msgstr "Elimina la visualització prèvia de la imatge"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Elimina la paraula silenciada de la teva llista"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "Elimina el perfil"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "Elimina el perfil de l'historial de cerca"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "Elimina la citació"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Elimina la republicació"
@@ -5460,18 +5793,31 @@ msgstr "Elimina aquest canal dels meus canals"
#~ msgid "Remove this feed from your saved feeds?"
#~ msgstr "Vols eliminar aquest canal dels teus canals desats?"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Elimina de la llista"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Eliminat dels meus canals"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Eliminat dels teus canals"
@@ -5479,16 +5825,16 @@ msgstr "Eliminat dels teus canals"
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Elimina la miniatura per defecte de {0}"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "Elimina la publicació amb la citació"
#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29
msgid "Removes the image preview"
-msgstr ""
+msgstr "Elimina la previsualització de la imatge"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Canvia amb Discover"
@@ -5496,7 +5842,7 @@ msgstr "Canvia amb Discover"
msgid "Replies"
msgstr "Respostes"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "Respostes deshabilitades"
@@ -5504,18 +5850,40 @@ msgstr "Respostes deshabilitades"
#~ msgid "Replies on this thread are disabled"
#~ msgstr "Les respostes a aquest fil de debat estan deshabilitades"
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Les respostes a aquest fil de debat estan deshabilitades"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Les respostes a aquest fil de debat estan deshabilitades"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Respon"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Filtres de resposta"
+#~ msgid "Reply Filters"
+#~ msgstr "Filtres de resposta"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -5523,21 +5891,34 @@ msgstr "Filtres de resposta"
#~ msgid "Reply to <0/>"
#~ msgstr "Resposta a <0/>"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Resposta a <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Respon a una publicació bloquejada"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
+msgstr "Resposta a tu mateix"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
msgstr ""
#: src/components/dms/MessageMenu.tsx:132
@@ -5575,7 +5956,7 @@ msgstr "Diàleg de l'informe"
msgid "Report feed"
msgstr "Informa del canal"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Informa de la llista"
@@ -5583,13 +5964,13 @@ msgstr "Informa de la llista"
msgid "Report message"
msgstr "Informa del missatge"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Informa de la publicació"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "Informa sobre l'starter pack"
@@ -5623,22 +6004,22 @@ msgstr "Informa sobre aquest starter pack"
msgid "Report this user"
msgstr "Informa d'aquest usuari"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Republica"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Republica"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Republica o cita la publicació"
@@ -5646,11 +6027,12 @@ msgstr "Republica o cita la publicació"
#~ msgid "Reposted by"
#~ msgstr "Republicada per"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Republicat per"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Republicat per {0}"
@@ -5662,20 +6044,20 @@ msgstr "Republicat per {0}"
#~ msgid "Reposted by <0/>"
#~ msgstr "Republicada per <0/>"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Republicat per <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
-msgstr ""
+msgstr "Republicat per tu"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "ha republicat la teva publicació"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Republicacions d'aquesta publicació"
@@ -5693,7 +6075,7 @@ msgstr "Demana un canvi"
msgid "Request Code"
msgstr "Demana un codi"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Requereix un text alternatiu abans de publicar"
@@ -5722,8 +6104,8 @@ msgstr "Codi de restabliment"
#~ msgid "Reset onboarding"
#~ msgstr "Restableix la incorporació"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Restableix l'estat de la incorporació"
@@ -5735,16 +6117,16 @@ msgstr "Restableix la contrasenya"
#~ msgid "Reset preferences"
#~ msgstr "Restableix les preferències"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Restableix l'estat de les preferències"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Restableix l'estat de la incorporació"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Restableix l'estat de les preferències"
@@ -5758,17 +6140,19 @@ msgid "Retries the last action, which errored out"
msgstr "Torna a intentar l'última acció, que ha donat error"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Torna-ho a provar"
@@ -5776,9 +6160,10 @@ msgstr "Torna-ho a provar"
#~ msgid "Retry."
#~ msgstr "Torna-ho a provar"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Torna a la pàgina anterior"
@@ -5796,7 +6181,8 @@ msgstr "Torna a la pàgina anterior"
#~ msgstr "ENTORN DE PROVES. Les publicacions i els comptes no són permanents."
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5846,7 +6232,7 @@ msgstr "Desa el codi QR"
msgid "Save to my feeds"
msgstr "Desa-ho als meus canals"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Canals desats"
@@ -5859,7 +6245,7 @@ msgstr "S'ha desat a la teva galeria d'imatges"
#~ msgstr "S'ha desat a la teva galeria d'imatges."
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "S'ha desat als teus canals."
@@ -5877,8 +6263,8 @@ msgstr "Desa la configuració de retall d'imatges"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "Digues hola!"
@@ -5887,13 +6273,12 @@ msgstr "Digues hola!"
msgid "Science"
msgstr "Ciència"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Desplaça't cap a dalt"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5902,14 +6287,12 @@ msgstr "Desplaça't cap a dalt"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Cerca"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Cerca per \"{query}\""
@@ -5917,7 +6300,7 @@ msgstr "Cerca per \"{query}\""
msgid "Search for \"{searchText}\""
msgstr "Cerca per \"{searchText}\""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Cerca totes les publicacions de @{authorHandle} amb l'etiqueta {displayTag}"
@@ -5925,7 +6308,7 @@ msgstr "Cerca totes les publicacions de @{authorHandle} amb l'etiqueta {displayT
#~ msgid "Search for all posts by @{authorHandle} with tag {tag}"
#~ msgstr "Cerca totes les publicacions de @{authorHandle} amb l'etiqueta {tag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Cerca totes les publicacions amb l'etiqueta {displayTag}"
@@ -5941,8 +6324,6 @@ msgstr "Cerca canals que vulgueu suggerir als altres."
#~ msgid "Search for someone to start a conversation with."
#~ msgstr "Cerca algú amb qui començar una conversa."
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Cerca usuaris"
@@ -5966,19 +6347,19 @@ msgstr "Cerca Tenor"
msgid "Security Step Required"
msgstr "Es requereix un pas de seguretat"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Mostra les publicacions amb {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Mostra les publicacions amb {truncatedTag} per usuari"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Mostra les publicacions amb <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Mostra les publicacions amb <0>{displayTag}0> d'aquest usuari"
@@ -5990,12 +6371,16 @@ msgstr "Mostra les publicacions amb <0>{displayTag}0> d'aquest usuari"
#~ msgid "See <0>{tag}0> posts by this user"
#~ msgstr "Mostra les publicacions amb <0>{tag}0> d'aquest usuari"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr "Mostra el perfil"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Consulta aquesta guia"
@@ -6039,7 +6424,11 @@ msgstr "Selecciona GIF"
msgid "Select GIF \"{0}\""
msgstr "Selecciona GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Selecciona els idiomes"
@@ -6064,7 +6453,7 @@ msgstr "Selecciona l'opció {i} de {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selecciona el {emojiName} emoji com al teu avatar"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Selecciona els serveis de moderació als quals voleu informar"
@@ -6078,13 +6467,17 @@ msgstr "Selecciona el servei que allotja les teves dades."
#: src/view/com/composer/videos/SelectVideoBtn.tsx:53
msgid "Select video"
+msgstr "Selecciona el vídeo"
+
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
msgstr ""
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Selecciona què vols veure (o què no vols veure) i nosaltres farem la resta."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Selecciona quins idiomes vols que incloguin els canals a què estàs subscrit. Si no en selecciones cap, es mostraran tots."
@@ -6100,7 +6493,7 @@ msgstr "Selecciona l'idioma de l'aplicació perquè el text predeterminat es mos
msgid "Select your date of birth"
msgstr "Selecciona la teva data de naixement"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Selecciona els teus interessos d'entre aquestes opcions"
@@ -6108,7 +6501,7 @@ msgstr "Selecciona els teus interessos d'entre aquestes opcions"
#~ msgid "Select your phone's country"
#~ msgstr "Selecciona el país del teu telèfon"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal."
@@ -6142,7 +6535,7 @@ msgstr "Envia correu"
#~ msgid "Send Email"
#~ msgstr "Envia correu"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Envia comentari"
@@ -6157,8 +6550,8 @@ msgstr "Envia el missatge a..."
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Envia informe"
@@ -6175,8 +6568,8 @@ msgstr "Envia informe a {0}"
msgid "Send verification email"
msgstr "Envia un correu de verificació"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "Envia per missatge directe"
@@ -6198,7 +6591,7 @@ msgstr "Adreça del servidor"
#~ msgid "Set Age"
#~ msgstr "Estableix l'edat"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Estableix la data de naixement"
@@ -6230,15 +6623,15 @@ msgstr "Estableix una nova contrasenya"
#~ msgid "Set password"
#~ msgstr "Estableix una contrasenya"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Posa \"No\" a aquesta opció per a amagar totes les publicacions citades del teu canal. Les republicacions encara seran visibles."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Posa \"No\" a aquesta opció per a amagar totes les respostes del teu canal."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Posa \"No\" a aquesta opció per a amagar totes les republicacions del teu canal."
@@ -6250,7 +6643,7 @@ msgstr "Posa \"Sí\" a aquesta opció per a mostrar les respostes en vista de fi
#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature."
#~ msgstr "Posa \"Sí\" a aquesta opció per a mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta és una opció experimental."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Estableix aquesta configuració a \"Sí\" per a mostrar mostres dels teus canals desats al teu canal Seguint. Aquesta és una característica experimental."
@@ -6263,24 +6656,24 @@ msgid "Sets Bluesky username"
msgstr "Estableix un nom d'usuari de Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Estableix el tema a fosc"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Estableix el tema a fosc"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Estableix el tema a clar"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Estableix el tema a clar"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Estableix el tema a la configuració del sistema"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Estableix el tema a la configuració del sistema"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Estableix el tema fosc al tema fosc"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Estableix el tema fosc al tema fosc"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Estableix el tema fosc al tema atenuat"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Estableix el tema fosc al tema atenuat"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -6307,11 +6700,11 @@ msgstr "Estableix la relació d'aspecte de la imatge com a ampla"
#~ msgid "Sets server for the Bluesky client"
#~ msgstr "Estableix el servidor pel cient de Bluesky"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Configuració"
@@ -6324,14 +6717,14 @@ msgid "Sexually Suggestive"
msgstr "Suggerent sexualment"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Comparteix"
@@ -6349,8 +6742,8 @@ msgid "Share a fun fact!"
msgstr "Comparteix una dada divertida!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Comparteix de totes maneres"
@@ -6361,7 +6754,7 @@ msgstr "Comparteix el canal"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "Comparteix l'enllaç"
@@ -6379,7 +6772,7 @@ msgstr "Diàleg de compartició de l'enllaç"
msgid "Share QR code"
msgstr "Comparteix el codi QR"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "Comparteix aquets starter pack"
@@ -6391,9 +6784,9 @@ msgstr "Comparteix aquets starter pack i ajuda a la gent de la teva comunitat a
msgid "Share your favorite feed!"
msgstr "Comparteix el teu canal preferit!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
-msgstr ""
+msgstr "Comprovador de preferències compartides"
#: src/view/com/modals/LinkWarning.tsx:92
msgid "Shares the linked website"
@@ -6402,7 +6795,7 @@ msgstr "Comparteix la web enllaçada"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Mostra"
@@ -6414,8 +6807,9 @@ msgstr "Mostra"
msgid "Show alt text"
msgstr "Mostra el text alternatiu"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Mostra igualment"
@@ -6440,19 +6834,23 @@ msgstr "Mostra seguidors semblants a {0}"
msgid "Show hidden replies"
msgstr "Mostra les respostes ocultes"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "Mostra'n menys com aquest"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Mostra més"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "Mostra'n més com aquest"
@@ -6460,11 +6858,11 @@ msgstr "Mostra'n més com aquest"
msgid "Show muted replies"
msgstr "Mostra les respostes silenciades"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Mostra les publicacions dels meus canals"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Mostra les publicacions citades"
@@ -6480,7 +6878,7 @@ msgstr "Mostra les publicacions citades"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Mostra les republicacions al canal Seguint"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Mostra les respostes"
@@ -6500,7 +6898,12 @@ msgstr "Mostra les respostes dels comptes que segueixes abans que les altres."
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "Mostra respostes amb almenys {value} {0}"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Mostra republicacions"
@@ -6580,11 +6983,15 @@ msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa"
msgid "Sign into Bluesky or create a new account"
msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Tanca sessió"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6606,7 +7013,7 @@ msgstr "Registra't o inicia sessió per a unir-te a la conversa"
msgid "Sign-in Required"
msgstr "Es requereix iniciar sessió"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "S'ha iniciat sessió com a"
@@ -6615,7 +7022,7 @@ msgstr "S'ha iniciat sessió com a"
msgid "Signed in as @{0}"
msgstr "S'ha iniciat sessió com a @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "s'ha registrat amb el vostre starter pack"
@@ -6623,17 +7030,21 @@ msgstr "s'ha registrat amb el vostre starter pack"
#~ msgid "Signs {0} out of Bluesky"
#~ msgstr "Tanca la sessió de Bluesky de {0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "S'ha registrat sense cap starter pack"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Salta aquest pas"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Salta aquest flux"
@@ -6646,12 +7057,11 @@ msgstr "Salta aquest flux"
msgid "Software Dev"
msgstr "Desenvolupament de programari"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
-msgstr ""
+msgstr "Alguns altres canals que potser t'agradaran"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "Algunes persones poden respondre"
@@ -6678,7 +7088,7 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar"
msgid "Something went wrong, please try again."
msgstr "Alguna cosa ha fallat, torna-ho a provar."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr "Alguna cosa ha fallat."
@@ -6687,8 +7097,8 @@ msgstr "Alguna cosa ha fallat."
#~ msgid "Something went wrong. Check your email and try again."
#~ msgstr "Alguna cosa ha fallat. Comprova el teu correu i torna-ho a provar."
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "La teva sessió ha caducat. Torna a iniciar-la."
@@ -6705,8 +7115,12 @@ msgstr "Ordena les respostes a la mateixa publicació per:"
#~ msgstr "Font:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "Font: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr "Font: <0>{0}0>"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -6744,20 +7158,20 @@ msgstr "Comença a xatejar"
#: src/tours/Tooltip.tsx:99
msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip."
-msgstr ""
+msgstr "Inici de la visita guiada inicial. No vagis enrere. En comptes d'això, seguiex endavant per obtenir més opcions o prem per saltar-lo."
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "Starter pack"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "Starter pack de {0}"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "Aquest starter pack és invàlid"
@@ -6773,7 +7187,7 @@ msgstr "Els starter packs et permeten compartir els teus canals i persones prefe
#~ msgid "Status page"
#~ msgstr "Pàgina d'estat"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "Pàgina d'estat"
@@ -6781,7 +7195,7 @@ msgstr "Pàgina d'estat"
#~ msgid "Step"
#~ msgstr "Pas"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Pas {0} de {1}"
@@ -6789,23 +7203,23 @@ msgstr "Pas {0} de {1}"
#~ msgid "Step {0} of {numSteps}"
#~ msgstr "Pas {0} de {numSteps}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Historial"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Envia"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Subscriure's"
@@ -6826,11 +7240,11 @@ msgstr "Subscriu-te a l'etiquetador"
msgid "Subscribe to this labeler"
msgstr "Subscriu-te a aquest etiquetador"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Subscriure's a la llista"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "Comptes suggerits"
@@ -6838,8 +7252,7 @@ msgstr "Comptes suggerits"
#~ msgid "Suggested Follows"
#~ msgstr "Usuaris suggerits per a seguir"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Suggeriments per tu"
@@ -6847,7 +7260,7 @@ msgstr "Suggeriments per tu"
msgid "Suggestive"
msgstr "Suggerent"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6864,29 +7277,30 @@ msgstr "Canvia el compte"
#: src/tours/HomeTour.tsx:48
msgid "Switch between feeds to control your experience."
-msgstr ""
+msgstr "Canvia entre canals per controlar la teva experiència."
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Canvia a {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Canvia en compte amb el que tens iniciada la sessió"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Sistema"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Registres del sistema"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "etiqueta"
+#~ msgid "tag"
+#~ msgstr "etiqueta"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Menú d'etiquetes: {displayTag}"
@@ -6894,25 +7308,37 @@ msgstr "Menú d'etiquetes: {displayTag}"
#~ msgid "Tag menu: {tag}"
#~ msgstr "Menú d'etiquetes: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Alt"
#: src/components/ProgressGuide/Toast.tsx:150
msgid "Tap to dismiss"
+msgstr "Toca per a ignorar"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
msgstr ""
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Toca per a veure-ho completament"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
-msgstr ""
+msgstr "Tasca completa - 10 m'agrades!"
#: src/components/ProgressGuide/List.tsx:49
msgid "Teach our algorithm what you like"
-msgstr ""
+msgstr "Ensenya el que t'agrada al nostre algorisme"
#: src/screens/Onboarding/index.tsx:36
#: src/screens/Onboarding/state.ts:99
@@ -6931,11 +7357,11 @@ msgstr "Explica'ns una mica més"
msgid "Terms"
msgstr "Condicions"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Condicions del servei"
@@ -6947,16 +7373,20 @@ msgid "Terms used violate community standards"
msgstr "Els termes utilitzats infringeixen els estàndards de la comunitat"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "text"
+#~ msgid "text"
+#~ msgstr "text"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Camp d'introducció de text"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Gràcies. El teu informe s'ha enviat."
@@ -6964,19 +7394,23 @@ msgstr "Gràcies. El teu informe s'ha enviat."
msgid "That contains the following:"
msgstr "Això conté els següents:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Aquest identificador ja està agafat."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "No s'ha pogut trobar aquest starter pack."
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6986,6 +7420,15 @@ msgstr "El compte podrà interactuar amb tu després del desbloqueig."
#~ msgid "the author"
#~ msgstr "l'autor"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Les directrius de la comunitat han estat traslladades a <0/>"
@@ -6994,12 +7437,16 @@ msgstr "Les directrius de la comunitat han estat traslladades a <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "La política de drets d'autoria ha estat traslladada a <0/>"
-#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
-msgid "The Discover feed now knows what you like"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/state/shell/progress-guide.tsx:167
+#: src/state/shell/progress-guide.tsx:172
+msgid "The Discover feed now knows what you like"
+msgstr "El canal Discover ara sap el que t'agrada"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "L'experiència és millor a l'aplicació. Baixa Bluesky ara i tornarem a començar on ho vas deixar."
@@ -7007,11 +7454,11 @@ msgstr "L'experiència és millor a l'aplicació. Baixa Bluesky ara i tornarem a
msgid "The feed has been replaced with Discover."
msgstr "S'ha canviat el canal per Discover."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Les següents etiquetes s'han aplicat al teu compte."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Les següents etiquetes s'han aplicat als teus continguts."
@@ -7019,8 +7466,8 @@ msgstr "Les següents etiquetes s'han aplicat als teus continguts."
msgid "The following steps will help customize your Bluesky experience."
msgstr "Els següents passos t'ajudaran a personalitzar la teva experiència a Bluesky."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "És possible que la publicació s'hagi esborrat."
@@ -7028,7 +7475,11 @@ msgstr "És possible que la publicació s'hagi esborrat."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La política de privacitat ha estat traslladada a <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "L'starter pack que estàs provant de veure no és vàlid. En lloc d'això, podeu suprimir-lo."
@@ -7077,24 +7528,24 @@ msgstr "Hi ha hagut un problema per a connectar amb Tenor."
#~ msgstr "Hi ha hagut un problema per a connectar al xat."
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Hi ha hagut un problema per a contactar amb el servidor"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Hi ha hagut un problema per a contactar amb el teu servidor"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
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/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
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."
@@ -7102,13 +7553,13 @@ msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a t
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Hi ha hagut un problema en obtenir la llista. Toca aquí per a tornar-ho a provar."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Hi ha hagut un problema en obtenir les teves llistes. Toca aquí per a tornar-ho a provar."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "S'ha produït un problema en enviar el teu informe. Comprova la teva connexió a Internet."
@@ -7134,16 +7585,19 @@ msgstr "Hi ha hagut un problema en obtenir les teves contrasenyes d'aplicació"
msgid "There was an issue! {0}"
msgstr "Hi ha hagut un problema! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Hi ha hagut un problema. Comprova la teva connexió a internet i torna-ho a provar."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "S'ha produït un problema inesperat a l'aplicació. Fes-nos saber si això t'ha passat a tu!"
@@ -7163,11 +7617,11 @@ msgstr "Hi ha hagut una gran quantitat d'usuaris nous a Bluesky! Activarem el te
#~ msgid "This {0} has been labeled."
#~ msgstr "Aquest {0} ha estat etiquetat."
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Aquesta {screenDescription} ha estat etiquetada:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Aquest compte ha sol·licitat que els usuaris estiguin registrats per a veure el seu perfil."
@@ -7176,8 +7630,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr "Aquest compte està bloquejat per una o més de les teves llistes de moderació. Per desbloquejar-lo, visita les llistes directament i elimina aquest usuari."
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Aquesta apel·lació s'enviarà a <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Aquesta apel·lació s'enviarà a <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -7203,8 +7661,8 @@ msgstr "Aquest contingut ha rebut una advertència general dels moderadors."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Aquest contingut està allotjat a {0}. Vols habilitat els continguts externs?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Aquest contingut no està disponible per culpa de que un dels usuaris involucrats ha bloquejat a l'altre."
@@ -7240,7 +7698,7 @@ msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la t
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "Aquest canal és buit."
@@ -7264,11 +7722,11 @@ msgstr "Això és important si mai necessites canviar el teu correu o restablir
#~ msgid "This label was applied by {0}."
#~ msgstr "Aquesta etiqueta l'ha aplicat {0}."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "Aquesta etiqueta ha estat aplicada per <0>{0}0>."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "Aquesta etiqueta ha estat aplicada per l'autor."
@@ -7276,7 +7734,7 @@ msgstr "Aquesta etiqueta ha estat aplicada per l'autor."
#~ msgid "This label was applied by you"
#~ msgstr "Aquesta etiqueta ha estat aplicada per tu"
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "Aquesta etiqueta ha estat aplicada per tu."
@@ -7288,7 +7746,11 @@ msgstr "Aquest etiquetador no ha declarat quines etiquetes publica i pot ser que
msgid "This link is taking you to the following website:"
msgstr "Aquest enllaç et porta a la web:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Aquesta llista està buida!"
@@ -7300,23 +7762,35 @@ msgstr "Aquest servei de moderació no està disponible. Mira a continuació per
msgid "This name is already in use"
msgstr "Aquest nom ja està en ús"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Aquesta publicació ha estat esborrada."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Aquesta publicació només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Aquesta publicació no es mostrarà als canals."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Aquesta publicació no es mostrarà als canals."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Aquest perfil només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Aquest servei no ha proporcionat termes de servei ni una política de privadesa."
@@ -7333,8 +7807,8 @@ msgstr "Aquest usuari no té cap seguidor."
msgid "This user has blocked you"
msgstr "Aquest usuari t'ha bloquejat"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Aquest usuari t'ha bloquejat. No pots veure les seves publicacions."
@@ -7350,11 +7824,11 @@ msgstr "Aquest usuari ha sol·licitat que el seu contingut només es mostri als
#~ msgid "This user is included in the <0/> list which you have muted."
#~ msgstr "Aquest usuari està inclòs a la llista <0/> que has silenciat."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Aquest usuari està inclòs a la llista <0>{0}0> que has bloquejat."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Aquest usuari està inclòs a la llista <0>{0}0> que has silenciat."
@@ -7374,32 +7848,44 @@ msgstr "Aquest usuari no segueix a ningú."
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Aquesta advertència només està disponible per publicacions amb contingut adjuntat."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Això suprimirà {0} de les teves paraules silenciades. Sempre la pots tornar a afegir més tard."
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Això suprimirà {0} de les teves paraules silenciades. Sempre la pots tornar a afegir més tard."
#: src/view/com/util/forms/PostDropdownBtn.tsx:282
#~ msgid "This will hide this post from your feeds."
#~ msgstr "Això amagarà aquesta publicació dels teus canals."
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Preferències dels fils de debat"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Preferències dels fils de debat"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "Preferències dels fils de debat actualitzades"
+#~ msgid "Thread settings updated"
+#~ msgstr "Preferències dels fils de debat actualitzades"
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Mode fils de debat"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Preferències dels fils de debat"
@@ -7416,14 +7902,14 @@ msgid "To whom would you like to send this report?"
msgstr "A qui vols enviar aquest informe?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Commuta entre les opcions de paraules silenciades."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Commuta entre les opcions de paraules silenciades."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Commuta el menú desplegable"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults"
@@ -7438,10 +7924,10 @@ msgstr "Transformacions"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Tradueix"
@@ -7458,7 +7944,7 @@ msgstr "Torna-ho a provar"
msgid "TV"
msgstr "TV"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Autenticació de dos factors"
@@ -7470,11 +7956,11 @@ msgstr "Escriu aquí el teu missatge"
msgid "Type:"
msgstr "Tipus:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Desbloqueja la llista"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Deixa de silenciar la llista"
@@ -7482,12 +7968,12 @@ msgstr "Deixa de silenciar la llista"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "No s'ha pogut eliminar"
@@ -7498,7 +7984,7 @@ msgstr "No s'ha pogut eliminar"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Desbloqueja"
@@ -7522,9 +8008,9 @@ msgstr "Desbloqueja el compte"
msgid "Unblock Account?"
msgstr "Vols desbloquejar el compte?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Desfés la republicació"
@@ -7534,8 +8020,8 @@ msgid "Unfollow"
msgstr "Deixa de seguir"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Deixa de seguir"
+#~ msgid "Unfollow"
+#~ msgstr "Deixa de seguir"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -7558,12 +8044,14 @@ msgstr "Deixa de seguir el compte"
msgid "Unlike this feed"
msgstr "Desfés el m'agrada a aquest canal"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Deixa de silenciar"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Deixa de silenciar {truncatedTag}"
@@ -7572,7 +8060,7 @@ msgstr "Deixa de silenciar {truncatedTag}"
msgid "Unmute Account"
msgstr "Deixa de silenciar el compte"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Deixa de silenciar totes les publicacions amb {displayTag}"
@@ -7588,13 +8076,21 @@ msgstr "Deixa de silenciar la conversa"
#~ msgid "Unmute notifications"
#~ msgstr "Deixa de silenciar les notificacions"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Deixa de silenciar el fil de debat"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Deixa de fixar"
@@ -7602,11 +8098,11 @@ msgstr "Deixa de fixar"
msgid "Unpin from home"
msgstr "Deixa de fixar a l'inici"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Desancora la llista de moderació"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "Ja no està fix als teus canals"
@@ -7618,10 +8114,19 @@ msgstr "Ja no està fix als teus canals"
msgid "Unsubscribe"
msgstr "Dona't de baixa"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Dona't de baixa d'aquest etiquetador"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr "Contingut sexual no desitjat"
@@ -7631,7 +8136,7 @@ msgstr "Dona't de baixa d'aquest etiquetador"
msgid "Unwanted Sexual Content"
msgstr "Contingut sexual no desitjat"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Actualitza {displayName} a les Llistes"
@@ -7643,6 +8148,14 @@ msgstr "Actualitza {displayName} a les Llistes"
msgid "Update to {handle}"
msgstr "Actualitza a {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Actualitzant…"
@@ -7655,20 +8168,20 @@ msgstr "Enlloc d'això, penja una foto"
msgid "Upload a text file to:"
msgstr "Puja un fitxer de text a:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Puja de la càmera"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Puja dels Arxius"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7720,12 +8233,12 @@ msgstr "Utilitza-ho per a iniciar sessió a l'altra aplicació, juntament amb el
msgid "Used by:"
msgstr "Utilitzat per:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Usuari bloquejat"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Usuari bloquejat per \"{0}\""
@@ -7733,15 +8246,15 @@ msgstr "Usuari bloquejat per \"{0}\""
msgid "User blocked by list"
msgstr "Usuari bloquejat per una llista"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Usuari bloquejat per una llista"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "L'usuari t'ha bloquejat"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "L'usuari t'ha bloquejat"
@@ -7749,18 +8262,16 @@ msgstr "L'usuari t'ha bloquejat"
#~ msgid "User handle"
#~ msgstr "Identificador d'usuari"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Llista d'usuaris per {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Llista d'usuaris feta per <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Llista d'usuaris feta per tu"
@@ -7772,7 +8283,7 @@ msgstr "Llista d'usuaris creada"
msgid "User list updated"
msgstr "Llista d'usuaris actualitzada"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Llistes d'usuaris"
@@ -7780,13 +8291,17 @@ msgstr "Llistes d'usuaris"
msgid "Username or email address"
msgstr "Nom d'usuari o correu"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Usuaris"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "usuaris seguits per <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "usuaris seguits per <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7795,7 +8310,7 @@ msgstr "usuaris seguits per <0/>"
msgid "Users I follow"
msgstr "Els usuaris als que segueixo"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Usuaris a \"{0}\""
@@ -7819,15 +8334,15 @@ msgstr "Valor:"
msgid "Verify DNS Record"
msgstr "Verifica els registres de DNS"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Verifica el correu"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Verifica el meu correu"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Verifica el meu correu"
@@ -7848,31 +8363,44 @@ msgstr "Verifica el teu correu"
#~ msgid "Version {0}"
#~ msgstr "Versió {0}"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "Versió {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Videojocs"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr "Els vídeos no poder ser de més de 100MB"
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Veure l'avatar de {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "Veure el perfil de {0}"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "Veure el perfil de l'usuari bloquejat"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Veure el registre de depuració"
@@ -7885,7 +8413,7 @@ msgstr "Veure els detalls"
msgid "View details for reporting a copyright violation"
msgstr "Veure els detalls per a informar d'una infracció dels drets d'autor"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Veure el fil de debat complet"
@@ -7896,12 +8424,12 @@ msgstr "Mostra informació sobre aquestes etiquetes"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Veure el perfil"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Veure l'avatar"
@@ -7913,11 +8441,23 @@ msgstr "Veure el servei d'etiquetatge proporcionat per @{0}"
msgid "View users who like this feed"
msgstr "Veure els usuaris a qui els agrada aquest canal"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr "Veure el teus canals i descobreix-ne més"
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7953,7 +8493,7 @@ msgstr "No hem pogut carregar aquesta conversa"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Calculem {estimatedTime} fins que el teu compte estigui llest."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Esperem que t'ho passis pipa. Recorda que Bluesky és:"
@@ -7962,8 +8502,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Ja no hi ha més publicacions dels usuaris que segueixes. Aquí n'hi ha altres de <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Recomanem evitar les paraules habituals que apareixen en moltes publicacions, ja que pot provocar que no es mostri cap publicació."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Recomanem evitar les paraules habituals que apareixen en moltes publicacions, ja que pot provocar que no es mostri cap publicació."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7973,11 +8513,11 @@ msgstr "Recomanem evitar les paraules habituals que apareixen en moltes publicac
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "No hem pogut carregar les teves preferències de data de naixement. Torna-ho a provar."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "En aquest moment no hem pogut carregar els teus etiquetadors configurats."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configurant el teu compte. Si continua fallant, pots ometre aquest flux."
@@ -7989,7 +8529,7 @@ msgstr "T'informarem quan el teu compte estigui llest."
#~ msgid "We'll look into your appeal promptly."
#~ msgstr "Analitzarem la teva apel·lació ràpidament."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Ho farem servir per a personalitzar la teva experiència."
@@ -7997,15 +8537,15 @@ msgstr "Ho farem servir per a personalitzar la teva experiència."
msgid "We're having network issues, try again"
msgstr "Tenim problemes de xarxa, torna-ho a provar"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Ens fa molta il·lusió que t'uneixis a nosaltres!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua, posa't en contacte amb el creador de la llista, @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Ho sentim, però no hem pogut carregar les teves paraules silenciades en aquest moment. Torna-ho a provar."
@@ -8013,11 +8553,11 @@ msgstr "Ho sentim, però no hem pogut carregar les teves paraules silenciades en
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí una estona."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit."
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant."
@@ -8042,7 +8582,7 @@ msgstr "Bentornat!"
msgid "Welcome, friend!"
msgstr "Benvingut, col·lega!"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Quins són els teus interessos?"
@@ -8059,7 +8599,7 @@ msgstr "Com vols anomenar al teu starter pack?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Què hi ha de nou"
@@ -8071,22 +8611,26 @@ msgstr "En quins idiomes està aquesta publicació?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Quins idiomes t'agradaria veure en els teus canals algorítmics?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "Qui et pot enviar missatges?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Qui hi pot respondre"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "Diàleg de qui pot respondre"
+#~ msgid "Who can reply dialog"
+#~ msgstr "Diàleg de qui pot respondre"
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "Qui pot respondre?"
+#~ msgid "Who can reply?"
+#~ msgstr "Qui pot respondre?"
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -8130,12 +8674,12 @@ msgstr "Amplada"
msgid "Write a message"
msgstr "Escriu un missatge"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Escriu una publicació"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Escriu la teva resposta"
@@ -8149,10 +8693,10 @@ msgstr "Escriptors"
#~ msgstr "XXXXXX"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -8163,10 +8707,18 @@ msgstr "Sí"
msgid "Yes, deactivate"
msgstr "Sí, desactiva'l"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr "Sí, elimina aquest starter pack"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "Sí, torna a activar el meu compte"
@@ -8175,7 +8727,8 @@ msgstr "Sí, torna a activar el meu compte"
msgid "Yesterday, {time}"
msgstr "Ahir, {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "tu"
@@ -8245,11 +8798,11 @@ msgstr "No tens cap canal fixat."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "No tens cap canal desat!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "No tens cap canal desat."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Has bloquejat l'autor o has estat bloquejat per ell."
@@ -8257,9 +8810,9 @@ msgstr "Has bloquejat l'autor o has estat bloquejat per ell."
msgid "You have blocked this user"
msgstr "Has bloquejat aquest usuari"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Has bloquejat aquest usuari. No pots veure el seu contingut."
@@ -8270,20 +8823,20 @@ msgstr "Has bloquejat aquest usuari. No pots veure el seu contingut."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Has entrat un codi invàlid. Hauria de ser tipus XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Has amagat aquesta publicació"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Has amagat aquesta publicació."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Has silenciat aquest compte."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Has silenciat aquest usuari"
@@ -8295,12 +8848,12 @@ msgstr "Has silenciat aquest usuari"
msgid "You have no conversations yet. Start one!"
msgstr "Encara no tens cap conversa. Comença'n una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "No tens canals."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "No tens llistes."
@@ -8336,27 +8889,40 @@ msgstr "Has arribat al final"
msgid "You haven't created a starter pack yet!"
msgstr "Encara no has creat cap starter pack!"
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Encara no has silenciat cap paraula ni etiqueta"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "Pots apel·lar les etiquetes que no són pròpies si creus que s'han col·locat per error."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Pots apel·lar aquestes etiquetes si creus que s'han col·locat per error."
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "Només pots afegir 50 canals"
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr "Només pots afegir 50 canals"
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "Només pots afegir 50 perfils"
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr "Només pots afegir 50 perfils"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Has de tenir 13 anys o més per a registrar-te"
@@ -8380,7 +8946,7 @@ msgstr "Has de concedir accés a la teva galeria per desar un codi QR"
msgid "You must grant access to your photo library to save the image."
msgstr "Has de concedir accés a la teva galeria per desar la imatge."
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "Has d'escollir almenys un etiquetador per a un informe"
@@ -8388,11 +8954,11 @@ msgstr "Has d'escollir almenys un etiquetador per a un informe"
msgid "You previously deactivated @{0}."
msgstr "Abans has desactivat @{0}."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Ja no rebràs més notificacions d'aquest debat"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Ara rebràs notificacions d'aquest debat"
@@ -8412,23 +8978,23 @@ msgstr "Tu: {defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "Tu: {short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!"
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Seguiràs els usuaris suggerits un cop hagis acabat de crear el teu compte!"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "Seguiràs aquestes persones i {0} altres"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "Seguiràs a aquesta gent de seguida"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "Estaràs al dia amb aquests canals"
@@ -8447,12 +9013,12 @@ msgstr "Estàs a la cua"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Has iniciat sessió amb una contrasenya d'aplicació. Inicia sessió amb la teva contrasenya principal per continuar la desactivació del teu compte."
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Ja està tot llest!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Has triat amagar una paraula o una etiqueta d'aquesta publicació."
@@ -8460,7 +9026,7 @@ msgstr "Has triat amagar una paraula o una etiqueta d'aquesta publicació."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Has arribat al final del vostre cabal! Cerca alguns comptes més per a seguir."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "El teu compte"
@@ -8476,6 +9042,10 @@ msgstr "El repositori del teu compte, que conté tots els registres de dades pú
msgid "Your birth date"
msgstr "La teva data de naixement"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "Els teus xats s'han desactivat"
@@ -8489,7 +9059,7 @@ msgstr "La teva elecció es desarà, però es pot canviar més endavant a la con
#~ msgstr "El teu canal per defecte és \"Seguint\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -8507,15 +9077,15 @@ msgstr "El teu correu s'ha actualitzat, però no ha estat verificat. En el pas s
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "El teu correu encara no s'ha verificat. Et recomanem fer-ho per seguretat."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
-msgstr ""
+msgstr "El teu primer m'agrada!"
#: src/view/com/posts/FollowingEmptyState.tsx:43
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "El teu canal de seguint està buit! Segueix a més usuaris per a saber què està passant."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "El teu identificador complet serà"
@@ -8533,7 +9103,7 @@ msgstr "El teu identificador complet serà <0>@{0}0>"
#~ msgid "Your invite codes are hidden when logged in using an App Password"
#~ msgstr "Els teus codis d'invitació no es mostren quan has iniciat sessió amb una contrasenya d'aplicació"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Les teves paraules silenciades"
@@ -8541,15 +9111,15 @@ msgstr "Les teves paraules silenciades"
msgid "Your password has been changed successfully!"
msgstr "S'ha canviat la teva contrasenya!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "S'ha publicat"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Les teves publicacions, m'agrades i bloquejos són públics. Els comptes silenciats són privats."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "El teu perfil"
@@ -8557,7 +9127,7 @@ msgstr "El teu perfil"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "El teu perfil, publicacions, fonts i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessió."
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "S'ha publicat la teva resposta"
@@ -8565,6 +9135,6 @@ msgstr "S'ha publicat la teva resposta"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "El teu informe s'enviarà al servei de moderació de Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "El teu identificador d'usuari"
diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po
index 23cd6f692d..8c34db3e1a 100644
--- a/src/locale/locales/de/messages.po
+++ b/src/locale/locales/de/messages.po
@@ -21,7 +21,8 @@ msgstr "(enthält eingebettete Inhalte)"
msgid "(no email)"
msgstr "(keine E-Mail)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {{formattedCount} anderer} other {{formattedCount} andere}}"
@@ -33,7 +34,7 @@ msgstr "{0, plural, one {# Label wurde auf dieses Konto platziert} other {# Labe
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {# Label wurde auf diesen Inhalt gesetzt} other {# Labels wurden auf diesen Inhalt gesetzt}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# Repost} other {# Reposts}}"
@@ -47,16 +48,16 @@ msgstr "{0, plural, one {Follower} other {Follower}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {Folge ich} other {Folge ich}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {Liken (# Like)} other {Liken (# Likes)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {Like} other {Likes}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, one {Von # Konto geliked} other {Von # Konten geliked}}"
@@ -64,27 +65,41 @@ msgstr "{0, plural, one {Von # Konto geliked} other {Von # Konten geliked}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {Beitrag} other {Beiträge}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {Antworten (# Antwort)} other {Antworten (# Antworten)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {Repost} other {Reposts}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {Like aufheben (# Like)} other {Like aufheben (# Likes)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "{0} sind diese Woche beigetreten"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0} Personen haben dieses Startpaket bereits verwendet!"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "Der Avatar von {0}"
@@ -120,7 +135,7 @@ msgstr "{diff, plural, one {Monat} other {Monate}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, one {Sekunde} other {Sekunden}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "Startpaket von {displayName}"
@@ -147,7 +162,7 @@ msgstr "{handle} kann keine Nachricht gesendet werden"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, one {Geliked von # Konto} other {Geliked von # Konten}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} ungelesen"
@@ -160,12 +175,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} ist vor {0} Bluesky mit einem Startpaket beigetreten"
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {Alle Antworten anzeigen} one {Antworten mit mindestens # Like anzeigen} other {Antworten mit mindestens # Likes anzeigen}}"
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr "{value, plural, =0 {Alle Antworten anzeigen} one {Antworten mit mindestens # Like anzeigen} other {Antworten mit mindestens # Likes anzeigen}}"
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> Mitglieder"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> Mitglieder"
#: src/screens/StarterPack/Wizard/index.tsx:466
msgctxt "profiles"
@@ -177,11 +192,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>und {2, plural, one {# weiterer Feed} other {# weitere Feeds}} sind in deinem Startpaket enthalten"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {Follower} other {Follower}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {Folge ich} other {Folge ich}}"
@@ -193,6 +208,10 @@ msgstr "<0>{0}0> und<1> 1><2>{1} 2>sind in deinem Startpaket enthalten"
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0> ist in deinem Startpaket enthalten"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/view/com/modals/SelfLabel.tsx:135
msgid "<0>Not Applicable.0> This warning is only available for posts with media attached."
msgstr "<0>Unzutreffend.0> Diese Warnung ist nur für Beiträge mit angehängten Medien verfügbar."
@@ -205,15 +224,27 @@ msgstr "<0>Du0> und<1> 1><2>{0} 2>seid in deinem Startpaket enthalten"
msgid "⚠Invalid Handle"
msgstr "⚠Ungültiger Handle"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "2FA Bestätigung"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr "Ein Hilfe-Tooltip"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Zugriff auf Navigationslinks und Einstellungen"
@@ -223,22 +254,22 @@ msgid "Access profile and other navigation links"
msgstr "Zugang zum Profil und anderen Navigationslinks"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Barrierefreiheit"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Einstellungen für Barrierefreiheit"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Einstellungen für Barrierefreiheit"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Konto"
@@ -254,20 +285,20 @@ msgstr "Konto gefolgt"
msgid "Account muted"
msgstr "Konto stummgeschaltet"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Konto stummgeschaltet"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Konto stummgeschaltet gemäß Liste"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Kontoeinstellungen"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Konto aus dem Schnellzugriff entfernt"
@@ -284,10 +315,10 @@ msgstr "Konto entfolgt"
msgid "Account unmuted"
msgstr "Stummschaltung für Konto aufgehoben"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Hinzufügen"
@@ -303,14 +334,14 @@ msgstr "Füge {displayName} zum Startpaket hinzu"
msgid "Add a content warning"
msgstr "Inhaltswarnung hinzufügen"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Einen Benutzer zu dieser Liste hinzufügen"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Konto hinzufügen"
@@ -329,11 +360,11 @@ msgstr "Alt-Text hinzufügen"
msgid "Add App Password"
msgstr "App-Passwort hinzufügen"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Stummgeschaltetes Wort für konfigurierte Einstellungen hinzufügen"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Stummgeschaltete Wörter und Tags hinzufügen"
@@ -353,7 +384,7 @@ msgstr "Füge den Standard-Feed nur von Personen, denen du folgst, hinzu"
msgid "Add the following DNS record to your domain:"
msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "Füge diesen Feed zu deinen Feeds hinzu"
@@ -362,29 +393,30 @@ msgstr "Füge diesen Feed zu deinen Feeds hinzu"
msgid "Add to Lists"
msgstr "Zu Listen hinzufügen"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Zu meinen Feeds hinzufügen"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Zur Liste hinzugefügt"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Zu meinen Feeds hinzugefügt"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem Feed angezeigt zu werden."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem Feed angezeigt zu werden."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Inhalt für Erwachsene"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Inhalte für Erwachsene können nur über das Web unter <0>bsky.app0> aktiviert werden."
@@ -392,20 +424,20 @@ msgstr "Inhalte für Erwachsene können nur über das Web unter <0>bsky.app0>
msgid "Adult content is disabled."
msgstr "Inhalte für Erwachsene sind deaktiviert."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Erweitert"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr "Das Trainieren des Algorithmus ist abgeschlossen!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "Allen Konten wurden gefolgt!"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "All deine gespeicherten Feeds an einem Ort."
@@ -419,6 +451,14 @@ msgstr "Erlaube den Zugriff auf deine Direktnachrichten"
msgid "Allow new messages from"
msgstr "Erlaube neue Nachrichten von"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -436,7 +476,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Alt-Text"
@@ -457,23 +497,41 @@ msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode,
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Eine E-Mail wurde an deine vorherige Adresse, {0}, gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Ein Fehler ist aufgetreten"
+#~ msgid "An error occured"
+#~ msgstr "Ein Fehler ist aufgetreten"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:71
#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten."
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Ein Problem, das hier nicht aufgelistet ist"
@@ -488,21 +546,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "Ein unbekannter Fehler ist aufgetreten"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "und"
@@ -519,6 +581,10 @@ msgstr "Animiertes GIF"
msgid "Anti-Social Behavior"
msgstr "Asoziales Verhalten"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "App-Sprache"
@@ -535,26 +601,26 @@ msgstr "App-Passwortnamen dürfen nur Buchstaben, Zahlen, Leerzeichen, Bindestri
msgid "App Password names must be at least 4 characters long."
msgstr "App-Passwortnamen müssen mindestens 4 Zeichen lang sein."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "App-Passwort-Einstellungen"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "App-Passwörter"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Anfechten"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Kennzeichnung „{0}” anfechten"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Anfechtung gesendet"
@@ -566,10 +632,19 @@ msgstr "Anfechtung gesendet"
msgid "Appeal this decision"
msgstr "Einspruch gegen diese Entscheidung"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Erscheinungsbild"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -583,7 +658,7 @@ msgstr "Bist du sicher, dass du das App-Passwort „{name}” löschen möchtest
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Möchtest du diese Nachricht wirklich löschen? Die Nachricht wird für dich gelöscht, nicht jedoch für den anderen Teilnehmer."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr "Möchtest du dieses Startpaket wirklich löschen?"
@@ -591,19 +666,19 @@ msgstr "Möchtest du dieses Startpaket wirklich löschen?"
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, nicht jedoch für den anderen Teilnehmer."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Bist du sicher?"
@@ -620,13 +695,13 @@ msgstr "Kunst"
msgid "Artistic or non-erotic nudity."
msgstr "Künstlerische oder nicht-erotische Nacktheit."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Mindestens 3 Zeichen"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -639,12 +714,12 @@ msgstr "Mindestens 3 Zeichen"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Zurück"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Grundlagen"
@@ -652,7 +727,7 @@ msgstr "Grundlagen"
msgid "Birthday"
msgstr "Geburtstag"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Geburtstag:"
@@ -675,28 +750,27 @@ msgstr "Konto blockieren"
msgid "Block Account?"
msgstr "Konto blockieren?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Konten blockieren"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Blockliste"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Diese Konten blockieren?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Blockiert"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Blockierte Konten"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Blockierte Konten"
@@ -709,7 +783,7 @@ msgstr "Blockierte Konten können nicht in deinen Threads antworten, dich erwäh
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Blockierte Konten können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren. Du wirst ihre Inhalte nicht sehen und sie werden daran gehindert, deine zu sehen."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Blockierter Beitrag."
@@ -717,7 +791,7 @@ msgstr "Blockierter Beitrag."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnungen zu deinem Konto hinzuzufügen."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Die Blockierung ist öffentlich. Blockierte Konten können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren."
@@ -725,7 +799,7 @@ msgstr "Die Blockierung ist öffentlich. Blockierte Konten können nicht in dein
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Blockieren verhindert nicht, dass Kennzeichnungen zu deinem Konto hinzugefügt werden, verhindert aber, dass dieses Konto in deinen Threads antworten oder interagieren kann."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -746,7 +820,7 @@ msgstr "Mit Freunden ist Bluesky besser!"
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky wählt eine Reihe von empfohlenen Konten von Personen in deinem Netzwerk aus."
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky zeigt dein Profil und deine Beiträge nicht für abgemeldete Benutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach."
@@ -763,21 +837,23 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern"
msgid "Books"
msgstr "Bücher"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr "Stöbere auf der Seite „Explore” nach weiteren Konten"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr "Weitere Vorschläge anzeigen"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen"
@@ -786,11 +862,11 @@ msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen"
msgid "Browse other feeds"
msgstr "Andere Feeds durchsuchen"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Business"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "von —"
@@ -798,15 +874,15 @@ msgstr "von —"
msgid "By {0}"
msgstr "Von {0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "von <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Mit dem Erstellen des Kontos akzeptierst du die {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "von dir"
@@ -818,13 +894,13 @@ msgstr "Kamera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten. Muss mindestens 4 Zeichen lang sein, darf aber nicht länger als 32 Zeichen sein."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -840,9 +916,8 @@ msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Abbrechen"
@@ -870,7 +945,7 @@ msgstr "Bildbeschneidung abbrechen"
msgid "Cancel profile editing"
msgstr "Profilbearbeitung abbrechen"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Beitrag zitieren abbrechen"
@@ -879,7 +954,6 @@ msgid "Cancel reactivation and log out"
msgstr "Reaktivierung abbrechen und abmelden"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Suche abbrechen"
@@ -891,17 +965,17 @@ msgstr "Bricht das Öffnen der verlinkten Website ab"
msgid "Change"
msgstr "Ändern"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Ändern"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Handle ändern"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Handle ändern"
@@ -909,12 +983,12 @@ msgstr "Handle ändern"
msgid "Change my email"
msgstr "Meine E-Mail ändern"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Passwort ändern"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Passwort ändern"
@@ -926,7 +1000,7 @@ msgstr "Beitragssprache auf {0} ändern"
msgid "Change Your Email"
msgstr "Deine E-Mail ändern"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -938,14 +1012,14 @@ msgstr "Chat stummgeschaltet"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Chat-Einstellungen"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "Chat-Einstellungen"
@@ -966,15 +1040,15 @@ msgstr "Schau in deinem E-Mail-Postfach nach einem Anmeldecode und gib ihn hier
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Überprüfe deinen Posteingang auf eine E-Mail mit dem Bestätigungscode, den du unten eingeben musst:"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr "Wähle 3 oder mehr aus:"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr "Wähle mindestens {0} weitere aus"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "Feeds wählen"
@@ -982,7 +1056,7 @@ msgstr "Feeds wählen"
msgid "Choose for me"
msgstr "Wähle für mich"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "Menschen auswählen"
@@ -990,7 +1064,7 @@ msgstr "Menschen auswählen"
msgid "Choose Service"
msgstr "Service wählen"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Wähle die Algorithmen aus, welche deine benutzerdefinierten Feeds generieren."
@@ -1000,26 +1074,26 @@ msgstr "Wähle diese Farbe als Avatar"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "Wähle aus, wer antworten darf"
+#~ msgid "Choose who can reply"
+#~ msgstr "Wähle aus, wer antworten darf"
#: src/screens/Signup/StepInfo/index.tsx:171
msgid "Choose your password"
msgstr "Wähle dein Passwort"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Alle alten Speicherdaten löschen"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Alle alten Speicherdaten löschen"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Alle alten Speicherdaten löschen (danach neu starten)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Alle alten Speicherdaten löschen (danach neu starten)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Alle Speicherdaten löschen"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Alle Speicherdaten löschen (danach neu starten)"
@@ -1029,10 +1103,10 @@ msgid "Clear search query"
msgstr "Suchanfrage löschen"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Löscht alle veralteten Speicherdaten"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Löscht alle veralteten Speicherdaten"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Löscht alle Speicherdaten"
@@ -1048,10 +1122,18 @@ msgstr "Klicke hier, um weitere Informationen zur Deaktivierung deines Kontos zu
msgid "Click here for more information."
msgstr "Klicke hier für weitere Informationen."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Klicke hier, um das Tag-Menü für {tag} zu öffnen"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden"
@@ -1065,12 +1147,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "Klipp 🐴 klapp 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1091,7 +1173,7 @@ msgid "Close bottom drawer"
msgstr "Untere Schublade schließen"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Dialog schließen"
@@ -1115,8 +1197,8 @@ msgstr "Modalfenster schließen"
msgid "Close navigation footer"
msgstr "Fußzeile der Navigation schließen"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Diesen Dialog schließen"
@@ -1128,7 +1210,7 @@ msgstr "Schließt die untere Navigationsleiste"
msgid "Closes password update alert"
msgstr "Schließt die Kennwortaktualisierungsmeldung"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Schließt den Beitragsverfasser und verwirft den Beitragsentwurf"
@@ -1136,11 +1218,11 @@ msgstr "Schließt den Beitragsverfasser und verwirft den Beitragsentwurf"
msgid "Closes viewer for header image"
msgstr "Schließt den Betrachter für das Banner"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "Liste der Benutzer einklappen"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen"
@@ -1154,27 +1236,31 @@ msgstr "Komödie"
msgid "Comics"
msgstr "Comics"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Community-Richtlinien"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Schließe das Onboarding ab und nutze dein Konto"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Schließe die Herausforderung ab"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Verfasse Beiträge mit einer Länge von bis zu {MAX_GRAPHEME_LENGTH} Zeichen"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Antwort verfassen"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/components/moderation/LabelPreference.tsx:81
msgid "Configure content filtering setting for category: {name}"
msgstr "Konfiguriere die Inhaltsfilterung für die Kategorie: {name}"
@@ -1206,11 +1292,11 @@ msgstr "Bestätige die Spracheinstellungen für den Inhalt"
msgid "Confirm delete account"
msgstr "Bestätige das Löschen des Kontos"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Bestätige dein Alter:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Bestätige dein Geburtsdatum"
@@ -1228,7 +1314,8 @@ msgstr "Bestätigungscode"
msgid "Connecting..."
msgstr "Verbinden…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Support kontaktieren"
@@ -1236,24 +1323,24 @@ msgstr "Support kontaktieren"
msgid "Content Blocked"
msgstr "Inhalt blockiert"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Inhaltsfilterung"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Inhaltssprachen"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Inhalt nicht verfügbar"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Inhaltswarnung"
@@ -1265,7 +1352,7 @@ msgstr "Inhaltswarnungen"
msgid "Context menu backdrop, click to close the menu."
msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen"
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Fortfahren"
@@ -1278,7 +1365,7 @@ msgstr "Fortfahren als {0} (noch angemeldet)"
msgid "Continue thread..."
msgstr "Thread fortsetzen…"
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1297,7 +1384,7 @@ msgstr "Kochen"
msgid "Copied"
msgstr "Kopiert"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Die Build-Version wurde in die Zwischenablage kopiert"
@@ -1305,8 +1392,8 @@ msgstr "Die Build-Version wurde in die Zwischenablage kopiert"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "In die Zwischenablage kopiert"
@@ -1340,12 +1427,12 @@ msgstr "Link kopieren"
msgid "Copy Link"
msgstr "Link kopieren"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Link zur Liste kopieren"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Link zum Beitrag kopieren"
@@ -1354,8 +1441,8 @@ msgstr "Link zum Beitrag kopieren"
msgid "Copy message text"
msgstr "Nachrichtentext kopieren"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Beitragstext kopieren"
@@ -1363,14 +1450,14 @@ msgstr "Beitragstext kopieren"
msgid "Copy QR code"
msgstr "QR-Code kopieren"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Urheberrechtsbestimmungen"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1380,7 +1467,7 @@ msgstr "Du konntest den Chat nicht verlassen"
msgid "Could not load feed"
msgstr "Feed konnte nicht geladen werden"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Liste konnte nicht geladen werden"
@@ -1397,7 +1484,7 @@ msgstr "Erstellen"
msgid "Create a new account"
msgstr "Neues Konto erstellen"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Neues Bluesky-Konto erstellen"
@@ -1407,7 +1494,7 @@ msgstr "QR-Code für ein Startpaket erstellen"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "Ein Startpaket erstellen"
@@ -1415,7 +1502,7 @@ msgstr "Ein Startpaket erstellen"
msgid "Create a starter pack for me"
msgstr "Ein Startpaket für mich erstellen"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Konto erstellen"
@@ -1463,42 +1550,54 @@ msgstr "Benutzerdefiniert"
msgid "Custom domain"
msgstr "Benutzerdefinierte Domain"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Benutzerdefinierte Feeds, die von der Community erstellt wurden, bringen dir neue Erfahrungen und helfen dir, die Inhalte zu finden, die du liebst."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Passe die Einstellungen für Medien von externen Websites an."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Dunkel"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Dunkelmodus"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Dunkelmodus"
+#~ msgid "Dark Theme"
+#~ msgstr "Dunkelmodus"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Geburtsdatum"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "Konto deaktivieren"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "Mein Konto deaktivieren"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Debug-Moderation"
@@ -1507,16 +1606,16 @@ msgid "Debug panel"
msgstr "Debug-Panel"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Löschen"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Konto löschen"
@@ -1532,8 +1631,8 @@ msgstr "App-Passwort löschen"
msgid "Delete app password?"
msgstr "App-Passwort löschen?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "Datensatz für die Chat-Erklärung löschen"
@@ -1541,7 +1640,7 @@ msgstr "Datensatz für die Chat-Erklärung löschen"
msgid "Delete for me"
msgstr "Für mich löschen"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Liste löschen"
@@ -1557,41 +1656,41 @@ msgstr "Nachricht für mich löschen"
msgid "Delete my account"
msgstr "Mein Konto löschen"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Mein Konto löschen…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Beitrag löschen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "Startpaket löschen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "Startpaket löschen?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Diese Liste löschen?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Diesen Beitrag löschen?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Gelöscht"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Gelöschter Beitrag."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "Löscht den Datensatz für die Chat-Erklärung"
@@ -1606,11 +1705,25 @@ msgstr "Beschreibung"
msgid "Descriptive alt text"
msgstr "Beschreibender Alt-Text"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Wolltest du etwas sagen?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Gedimmt"
@@ -1618,7 +1731,7 @@ msgstr "Gedimmt"
msgid "Direct messages are here!"
msgstr "Direktnachrichten sind da!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Automatische Wiedergabe für GIFs deaktivieren"
@@ -1626,29 +1739,33 @@ msgstr "Automatische Wiedergabe für GIFs deaktivieren"
msgid "Disable Email 2FA"
msgstr "Zwei-Faktor-Authentifizierung per E-Mail deaktivieren"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Haptische Rückmeldung deaktivieren"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Deaktiviert"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Verwerfen"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Entwurf verwerfen?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Apps daran hindern, abgemeldeten Nutzern mein Konto zu zeigen"
@@ -1661,19 +1778,27 @@ msgstr "„Discover” lernt beim Browsen, welche Beiträge dir gefallen."
msgid "Discover new custom feeds"
msgstr "Entdecke neue benutzerdefinierte Feeds"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "Entdecke neue Feeds"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Entdecke neue Feeds"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr "Anleitung zum Einstieg schließen"
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "Größere Alt-Text-Badges zeigen"
@@ -1689,11 +1814,15 @@ msgstr "Anzeigename"
msgid "DNS Panel"
msgstr "DNS-Panel"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Beinhaltet keine Nacktheit."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Beginnt oder endet nicht mit einem Bindestrich"
@@ -1707,7 +1836,6 @@ msgstr "Domain verifiziert!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1726,8 +1854,8 @@ msgstr "Fertig"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Fertig"
@@ -1736,7 +1864,7 @@ msgstr "Fertig"
msgid "Done{extraText}"
msgstr "Fertig{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "Bluesky herunterladen"
@@ -1753,6 +1881,10 @@ msgstr "CAR-Datei herunterladen"
msgid "Drop to add images"
msgstr "Zum Hinzufügen Bilder ablegen"
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "z. B. alice"
@@ -1793,11 +1925,11 @@ msgstr "z. B. Benutzer, die wiederholt mit Werbung antworten."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladungscodes."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "Bearbeiten"
@@ -1806,12 +1938,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Bearbeiten"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Avatar bearbeiten"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "Feeds bearbeiten"
@@ -1820,7 +1952,12 @@ msgstr "Feeds bearbeiten"
msgid "Edit image"
msgstr "Bild bearbeiten"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Details der Liste bearbeiten"
@@ -1828,10 +1965,10 @@ msgstr "Details der Liste bearbeiten"
msgid "Edit Moderation List"
msgstr "Moderationsliste bearbeiten"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Meine Feeds bearbeiten"
@@ -1839,10 +1976,15 @@ msgstr "Meine Feeds bearbeiten"
msgid "Edit my profile"
msgstr "Mein Profil bearbeiten"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "Personen bearbeiten"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1853,7 +1995,7 @@ msgstr "Profil bearbeiten"
msgid "Edit Profile"
msgstr "Profil bearbeiten"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "Startpaket bearbeiten"
@@ -1861,7 +2003,7 @@ msgstr "Startpaket bearbeiten"
msgid "Edit User List"
msgstr "Benutzerliste bearbeiten"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "Bearbeiten, wer antworten kann"
@@ -1873,7 +2015,7 @@ msgstr "Bearbeite deinen Anzeigenamen"
msgid "Edit your profile description"
msgstr "Bearbeite deine Profilbeschreibung"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "Dein Startpaket bearbeiten"
@@ -1883,8 +2025,8 @@ msgid "Education"
msgstr "Bildung"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "Wähle entweder „Alle” oder „Niemand” aus"
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr "Wähle entweder „Alle” oder „Niemand” aus"
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -1912,7 +2054,7 @@ msgstr "E-Mail aktualisiert"
msgid "Email verified"
msgstr "E-Mail verifiziert"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "E-Mail:"
@@ -1921,8 +2063,8 @@ msgid "Embed HTML code"
msgstr "HTML-Code einbetten"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Beitrag einbetten"
@@ -1934,7 +2076,7 @@ msgstr "Bette diesen Beitrag in deine Website ein. Kopiere einfach den folgenden
msgid "Enable {0} only"
msgstr "Nur {0} aktivieren"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Inhalte für Erwachsene aktivieren"
@@ -1943,7 +2085,7 @@ msgstr "Inhalte für Erwachsene aktivieren"
msgid "Enable external media"
msgstr "Externe Medien aktivieren"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Medienplayer aktivieren für"
@@ -1952,9 +2094,13 @@ msgstr "Medienplayer aktivieren für"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Aktiviere diese Einstellung, um nur Antworten von Personen zu sehen, denen du folgst."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Aktiviere diese Einstellung, um nur Antworten von Personen zu sehen, denen du folgst."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -1962,11 +2108,11 @@ msgstr "Nur von dieser Seite erlauben"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Aktiviert"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Ende des Feeds"
@@ -1982,8 +2128,8 @@ msgstr "Gib einen Namen für dieses App-Passwort ein"
msgid "Enter a password"
msgstr "Gib ein Passwort ein"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Gib ein Wort oder einen Tag ein"
@@ -2028,25 +2174,27 @@ msgstr "Gib deinen Benutzernamen und dein Passwort ein"
msgid "Error occurred while saving file"
msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Fehler beim Empfang der Captcha-Antwort."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Fehler:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Alle"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "Alle können antworten"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2062,6 +2210,14 @@ msgstr "Übermäßig viele Erwähnungen oder Antworten"
msgid "Excessive or unwanted messages"
msgstr "Übermäßige oder unerwünschte Nachrichten"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Verlässt den Vorgang der Accountlöschung"
@@ -2079,7 +2235,6 @@ msgid "Exits image view"
msgstr "Verlässt die Bildansicht"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Verlässt die Eingabe der Suchanfrage"
@@ -2087,7 +2242,7 @@ msgstr "Verlässt die Eingabe der Suchanfrage"
msgid "Expand alt text"
msgstr "Alt-Text erweitern"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "Liste der Benutzer erweitern"
@@ -2100,6 +2255,14 @@ msgstr "Erweitere oder reduziere den gesamten Beitrag, auf den du antwortest"
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr "Explizite oder potenziell verstörende Medien."
@@ -2108,12 +2271,12 @@ msgstr "Explizite oder potenziell verstörende Medien."
msgid "Explicit sexual images."
msgstr "Explizite sexuelle Bilder."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Meine Daten exportieren"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Meine Daten exportieren"
@@ -2123,17 +2286,17 @@ msgid "External Media"
msgstr "Externe Medien"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Externe Medien können es Websites ermöglichen, Informationen über dich und dein Gerät zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltfläche \"Abspielen\" drückst."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Externe Medienpräferenzen"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Externe Medienpräferenzen"
@@ -2142,8 +2305,8 @@ msgstr "Externe Medienpräferenzen"
msgid "Failed to create app password."
msgstr "Das App-Passwort konnte nicht erstellt werden."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "Startpaket konnte nicht erstellt werden"
@@ -2155,16 +2318,16 @@ msgstr "Die Liste konnte nicht erstellt werden. Überprüfe deine Internetverbin
msgid "Failed to delete message"
msgstr "Nachricht konnte nicht gelöscht werden"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "Startpaket konnte nicht gelöscht werden"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "Fehler beim Laden der Einstellungen für Feeds"
@@ -2177,12 +2340,12 @@ msgstr "GIFs konnten nicht geladen werden"
msgid "Failed to load past messages"
msgstr "Es konnten keine vorherigen Nachrichten geladen werden"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden."
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "Die vorgeschlagenen Konten, denen du folgen solltest, konnten nicht geladen werden"
@@ -2198,16 +2361,16 @@ msgstr ""
msgid "Failed to send"
msgstr "Konnte nicht gesendet werden"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Anfechtung nicht eingereicht. Bitte versuche es erneut."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "Aktualisierung der Feeds fehlgeschlagen"
@@ -2216,12 +2379,12 @@ msgstr "Aktualisierung der Feeds fehlgeschlagen"
msgid "Failed to update settings"
msgstr "Einstellungen konnten nicht aktualisiert werden"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Feed von {0}"
@@ -2230,27 +2393,27 @@ msgid "Feed toggle"
msgstr "Feed-Umschalter"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Feedback"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Feeds"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Feeds sind benutzerdefinierte Algorithmen, die Benutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen."
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "Feeds aktualisiert!"
@@ -2266,7 +2429,7 @@ msgstr "Datei erfolgreich gespeichert!"
msgid "Filter from feeds"
msgstr "Aus Feeds filtern"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Abschließen"
@@ -2284,7 +2447,7 @@ msgstr "Finde weitere Feeds und Konten, denen du folgen kannst, auf der „Explo
msgid "Find posts and users on Bluesky"
msgstr "Finde Beiträge und Nutzer auf Bluesky"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Passe die Inhalte deines Following-Feeds an."
@@ -2292,7 +2455,7 @@ msgstr "Passe die Inhalte deines Following-Feeds an."
msgid "Fine-tune the discussion threads."
msgstr "Passe die Diskussions-Threads an."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "Beenden"
@@ -2304,7 +2467,7 @@ msgstr "Tour beenden und mit der Nutzung der Anwendung beginnen"
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Flexibel"
@@ -2318,12 +2481,11 @@ msgid "Flip vertically"
msgstr "Vertikal drehen"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Folgen"
@@ -2337,7 +2499,7 @@ msgstr "Folgen"
msgid "Follow {0}"
msgstr "{0} folgen"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "{name} folgen"
@@ -2350,8 +2512,8 @@ msgstr "Folge 7 Konten"
msgid "Follow Account"
msgstr "Konto folgen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "Allen folgen"
@@ -2359,7 +2521,7 @@ msgstr "Allen folgen"
msgid "Follow Back"
msgstr "Zurückfolgen"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Folge weiteren Konten, um dich mit deinen Interessen zu verbinden und dein Netzwerk aufzubauen."
@@ -2383,19 +2545,19 @@ msgstr "Gefolgt von <0>{0}0> und <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Gefolgt von <0>{0}0>, <1>{1}1> und {1, plural, one {# anderer} other {# andere}}"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Benutzer, denen ich folge"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Nur Benutzer, denen ich folge"
+#~ msgid "Followed users only"
+#~ msgstr "Nur Benutzer, denen ich folge"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "folgte dir"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr "ist dir gefolgt"
@@ -2404,7 +2566,7 @@ msgstr "ist dir gefolgt"
msgid "Followers"
msgstr "Follower"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "Follower von @{0}, die du kennst"
@@ -2414,34 +2576,34 @@ msgid "Followers you know"
msgstr "Follower, die du kennst"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Folge ich"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Ich folge {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "Ich folge {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Following-Feed-Einstellungen"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Following-Feed-Einstellungen"
@@ -2453,7 +2615,7 @@ msgstr "„Following” zeigt die neuesten Beiträge von Personen, denen du folg
msgid "Follows you"
msgstr "Folgt dir"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Folgt dir"
@@ -2470,6 +2632,10 @@ msgstr "Aus Sicherheitsgründen müssen wir dir einen Bestätigungscode an deine
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Wenn du dieses Passwort verlierst, musst du ein neues generieren."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2491,7 +2657,7 @@ msgstr "Postet oft unerwünschte Inhalte"
msgid "From @{sanitizedAuthor}"
msgstr "Von @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Von <0/>"
@@ -2504,7 +2670,7 @@ msgstr "Galerie"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2533,24 +2699,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Zurückgehen"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Zurückgehen"
@@ -2560,14 +2727,14 @@ msgstr "Zurückgehen"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Zum vorherigen Schritt zurückgehen"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2609,7 +2776,7 @@ msgstr ""
msgid "Graphic Media"
msgstr ""
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2617,7 +2784,7 @@ msgstr ""
msgid "Handle"
msgstr "Handle"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr ""
@@ -2625,7 +2792,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr ""
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Hashtag"
@@ -2633,12 +2800,12 @@ msgstr "Hashtag"
msgid "Hashtag: #{tag}"
msgstr "Hashtag: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Hast du Probleme?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Hilfe"
@@ -2662,6 +2829,10 @@ msgstr ""
msgid "Here is your app password."
msgstr "Hier ist dein App-Passwort."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2669,30 +2840,50 @@ msgstr "Hier ist dein App-Passwort."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Ausblenden"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Ausblenden"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Beitrag ausblenden"
+#~ msgid "Hide post"
+#~ msgstr "Beitrag ausblenden"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Den Inhalt ausblenden"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Diesen Beitrag ausblenden?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Benutzerliste ausblenden"
@@ -2728,12 +2919,12 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Home"
@@ -2766,7 +2957,7 @@ msgstr "Ich habe einen Bestätigungscode"
msgid "I have my own domain"
msgstr "Ich habe meine eigene Domain"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -2779,15 +2970,15 @@ msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist"
msgid "If none are selected, suitable for all ages."
msgstr "Wenn keine ausgewählt werden, sind sie für alle Altersgruppen geeignet."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Wenn du diese Liste löschst, kannst du sie nicht wiederherstellen."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Wenn du diesen Post löschst, kannst du ihn nicht wiederherstellen."
@@ -2876,10 +3067,14 @@ msgstr "Gib dein Passwort ein"
msgid "Input your preferred hosting provider"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Gib deinen Handle ein"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -2889,7 +3084,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Ungültiger oder nicht unterstützter Beitragrekord"
@@ -2905,7 +3100,7 @@ msgstr "Einen Freund einladen"
msgid "Invite code"
msgstr "Einladungscode"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Einladungscode nicht akzeptiert. Überprüfe, ob du ihn richtig eingegeben hast und versuche es erneut."
@@ -2937,14 +3132,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Jobs"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -2981,11 +3176,11 @@ msgstr ""
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr ""
@@ -2993,16 +3188,16 @@ msgstr ""
msgid "Language selection"
msgstr "Sprachauswahl"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Spracheinstellungen"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Spracheinstellungen"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Sprachen"
@@ -3019,21 +3214,26 @@ msgstr ""
#~ msgid "Learn more"
#~ msgstr "Mehr erfahren"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Mehr erfahren"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr ""
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Erfahre mehr über diese Warnung"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist."
@@ -3071,8 +3271,8 @@ msgid "left to go."
msgstr "noch übrig."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Der Legacy-Speicher wurde gelöscht, du musst die App jetzt neu starten."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Der Legacy-Speicher wurde gelöscht, du musst die App jetzt neu starten."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3083,7 +3283,7 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Lass uns dein Passwort zurücksetzen!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Los geht's!"
@@ -3093,7 +3293,8 @@ msgstr "Los geht's!"
#~ msgid "Library"
#~ msgstr "Bibliothek"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Hell"
@@ -3105,8 +3306,8 @@ msgstr "Hell"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3116,14 +3317,15 @@ msgid "Like this feed"
msgstr "Diesen Feed liken"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Geliked von"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Geliked von"
@@ -3141,11 +3343,11 @@ msgstr "Geliked von"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Von {likeCount} {0} geliked"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "hat deinen benutzerdefinierten Feed geliked"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "hat deinen Beitrag geliked"
@@ -3153,11 +3355,11 @@ msgstr "hat deinen Beitrag geliked"
msgid "Likes"
msgstr "Likes"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Likes für diesen Beitrag"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Liste"
@@ -3165,20 +3367,28 @@ msgstr "Liste"
msgid "List Avatar"
msgstr "Listenbild"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Liste blockiert"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Liste von {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Liste gelöscht"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Liste stummgeschaltet"
@@ -3186,20 +3396,20 @@ msgstr "Liste stummgeschaltet"
msgid "List Name"
msgstr "Name der Liste"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Liste entblockiert"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Listenstummschaltung aufgehoben"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Listen"
@@ -3228,10 +3438,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Neue Mitteilungen laden"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Neue Beiträge laden"
@@ -3239,7 +3449,7 @@ msgstr "Neue Beiträge laden"
msgid "Loading..."
msgstr "Wird geladen..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Systemprotokoll"
@@ -3255,7 +3465,7 @@ msgstr ""
msgid "Log out"
msgstr "Abmelden"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Sichtbarkeit für abgemeldete Benutzer"
@@ -3295,7 +3505,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Vergewissere dich, dass du auch wirklich dorthin gehen willst!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Verwalte deine stummgeschalteten Wörter und Tags"
@@ -3312,20 +3522,20 @@ msgstr ""
#~ msgid "May only contain letters and numbers"
#~ msgstr "Darf nur Buchstaben und Zahlen enthalten"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Medien"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "erwähnte Benutzer"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Erwähnte Benutzer"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menü"
@@ -3356,7 +3566,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3371,29 +3581,31 @@ msgstr ""
msgid "Misleading Account"
msgstr "Irreführender Account"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderation"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr ""
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Moderationsliste von {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Moderationsliste von <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Moderationsliste von dir"
@@ -3405,20 +3617,24 @@ msgstr "Moderationsliste erstellt"
msgid "Moderation list updated"
msgstr "Moderationsliste aktualisiert"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Moderationslisten"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Moderationslisten"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Moderationseinstellungen"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr ""
@@ -3426,12 +3642,12 @@ msgstr ""
msgid "Moderation tools"
msgstr "Moderationswerkzeuge"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Der Moderator hat beschlossen, eine allgemeine Warnung vor dem Inhalt auszusprechen."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Mehr"
@@ -3439,7 +3655,7 @@ msgstr "Mehr"
msgid "More feeds"
msgstr "Mehr Feeds"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Mehr Optionen"
@@ -3459,11 +3675,13 @@ msgstr ""
#~ msgid "Must be at least 3 characters"
#~ msgstr "Muss mindestens 3 Zeichen lang sein"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Stummschalten"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "{truncatedTag} stummschalten"
@@ -3472,11 +3690,11 @@ msgstr "{truncatedTag} stummschalten"
msgid "Mute Account"
msgstr "Konto stummschalten"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Konten stummschalten"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Alle {displayTag}-Beiträge stummschalten"
@@ -3486,14 +3704,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Nur in Tags stummschalten"
+#~ msgid "Mute in tags only"
+#~ msgstr "Nur in Tags stummschalten"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "In Text und Tags stummschalten"
+#~ msgid "Mute in text & tags"
+#~ msgstr "In Text und Tags stummschalten"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Liste stummschalten"
@@ -3502,7 +3724,7 @@ msgstr "Liste stummschalten"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Diese Konten stummschalten?"
@@ -3510,33 +3732,49 @@ msgstr "Diese Konten stummschalten?"
#~ msgid "Mute this List"
#~ msgstr "Diese Liste stummschalten"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Dieses Wort in Beitragstexten und Tags stummschalten"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Dieses Wort nur in Tags stummschalten"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Thread stummschalten"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Wörter und Tags stummschalten"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Stummgeschaltet"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Stummgeschaltete Konten"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Stummgeschaltete Konten"
@@ -3545,7 +3783,7 @@ msgstr "Stummgeschaltete Konten"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Bei stummgeschalteten Konten werden dazugehörige Beiträge aus deinem Feed und deinen Mitteilungen entfernt. Stummschaltungen sind völlig privat."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Stummgeschaltet über \"{0}\""
@@ -3553,7 +3791,7 @@ msgstr "Stummgeschaltet über \"{0}\""
msgid "Muted words & tags"
msgstr "Stummgeschaltete Wörter und Tags"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Stummschaltung ist privat. Stummgeschaltete Konten können mit dir interagieren, aber du siehst ihre Beiträge nicht und erhältst keine Mitteilungen von ihnen."
@@ -3562,7 +3800,7 @@ msgstr "Stummschaltung ist privat. Stummgeschaltete Konten können mit dir inter
msgid "My Birthday"
msgstr "Mein Geburtstag"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Meine Feeds"
@@ -3570,11 +3808,11 @@ msgstr "Meine Feeds"
msgid "My Profile"
msgstr "Mein Profil"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Meine gespeicherten Feeds"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Meine gespeicherten Feeds"
@@ -3603,7 +3841,7 @@ msgstr ""
msgid "Nature"
msgstr "Natur"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3617,7 +3855,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Navigiert zum nächsten Bildschirm"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Navigiert zu deinem Profil"
@@ -3635,7 +3873,7 @@ msgstr ""
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Verliere nie den Zugriff auf deine Follower und Daten."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Verliere nie den Zugriff auf deine Follower oder Daten."
@@ -3647,7 +3885,7 @@ msgstr "Verliere nie den Zugriff auf deine Follower oder Daten."
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Neu"
@@ -3683,12 +3921,12 @@ msgctxt "action"
msgid "New post"
msgstr "Neuer Beitrag"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Neuer Beitrag"
@@ -3722,10 +3960,10 @@ msgstr "Aktuelles"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3741,17 +3979,17 @@ msgstr "Weiter"
msgid "Next image"
msgstr "Nächstes Bild"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Nein"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Keine Beschreibung"
@@ -3768,12 +4006,12 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "{0} wird nicht mehr gefolgt"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Nicht länger als 253 Zeichen"
@@ -3785,7 +4023,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Noch keine Mitteilungen!"
@@ -3796,6 +4034,10 @@ msgstr "Noch keine Mitteilungen!"
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -3809,11 +4051,11 @@ msgstr "Kein Ergebnis"
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Keine Ergebnisse für \"{query}\" gefunden"
@@ -3838,13 +4080,13 @@ msgstr ""
msgid "No thanks"
msgstr "Nein danke"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Niemand"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -3863,7 +4105,7 @@ msgstr "Nicht-sexuelle Nacktheit"
#~ msgid "Not Applicable."
#~ msgstr "Unzutreffend."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -3874,12 +4116,12 @@ msgid "Not right now"
msgstr "Nicht jetzt"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr ""
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Hinweis: Bluesky ist ein offenes und öffentliches Netzwerk. Diese Einstellung schränkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung möglicherweise nicht. Deine Inhalte werden abgemeldeten Nutzern möglicherweise weiterhin in anderen Apps und Websites angezeigt."
@@ -3891,7 +4133,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -3908,14 +4150,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Mitteilungen"
@@ -3948,12 +4190,12 @@ msgid "Off"
msgstr "Aus"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Oh nein!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Oh nein, da ist etwas schief gelaufen."
@@ -3977,7 +4219,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Onboarding zurücksetzen"
@@ -3985,7 +4227,7 @@ msgstr "Onboarding zurücksetzen"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text."
@@ -3994,14 +4236,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Nur {0} kann antworten."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Nur {0} kann antworten."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Enthält nur Buchstaben, Nummern und Bindestriche"
@@ -4009,7 +4251,7 @@ msgstr "Enthält nur Buchstaben, Nummern und Bindestriche"
msgid "Oops, something went wrong!"
msgstr "Huch, da ist etwas schief gelaufen!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4018,11 +4260,11 @@ msgstr "Huch, da ist etwas schief gelaufen!"
msgid "Oops!"
msgstr "Huch!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Öffnen"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4039,8 +4281,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Emoji-Picker öffnen"
@@ -4048,7 +4290,7 @@ msgstr "Emoji-Picker öffnen"
msgid "Open feed options menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Links mit In-App-Browser öffnen"
@@ -4068,20 +4310,20 @@ msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen"
msgid "Open navigation"
msgstr "Navigation öffnen"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Beitragsoptionsmenü öffnen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Storybook öffnen"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr ""
@@ -4089,11 +4331,11 @@ msgstr ""
msgid "Opens {numItems} options"
msgstr "Öffnet {numItems} Optionen"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr ""
@@ -4105,19 +4347,23 @@ msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Öffnet eine erweiterte Liste der Benutzer in dieser Mitteilung"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Öffnet die Kamera auf dem Gerät"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Öffnet den Beitragsverfasser"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Öffnet die konfigurierbaren Spracheinstellungen"
@@ -4129,7 +4375,7 @@ msgstr "Öffnet die Gerätefotogalerie"
#~ msgid "Opens editor for profile display name, avatar, background image, and description"
#~ msgstr "Öffnet den Editor für Anzeigename, Avatar, Hintergrundbild und Beschreibung"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Öffnet die Einstellungen für externe eingebettete Medien"
@@ -4159,11 +4405,11 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Öffnet die Liste der Einladungscodes"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr ""
@@ -4171,19 +4417,19 @@ msgstr ""
#~ msgid "Opens modal for account deletion confirmation. Requires email code."
#~ msgstr "Öffnet ein Modal, um die Löschung des Kontos zu bestätigen. Erfordert einen E-Mail-Code."
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr ""
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr ""
@@ -4191,7 +4437,7 @@ msgstr ""
msgid "Opens modal for using custom domain"
msgstr "Öffnet das Modal für die Verwendung einer benutzerdefinierten Domain"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Öffnet die Moderationseinstellungen"
@@ -4204,11 +4450,11 @@ msgstr "Öffnet das Formular zum Zurücksetzen des Passworts"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Öffnet den Bildschirm zum Bearbeiten gespeicherten Feeds"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Öffnet den Bildschirm mit allen gespeicherten Feeds"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr ""
@@ -4216,7 +4462,7 @@ msgstr ""
#~ msgid "Opens the app password settings page"
#~ msgstr "Öffnet die Einstellungsseite für das App-Passwort"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr ""
@@ -4232,21 +4478,21 @@ msgstr ""
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Öffnet die Storybook-Seite"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Öffnet die Systemprotokollseite"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Öffnet die Thread-Einstellungen"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4259,11 +4505,15 @@ msgid "Option {0} of {numItems}"
msgstr "Option {0} von {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Oder kombiniere diese Optionen:"
@@ -4283,6 +4533,10 @@ msgstr ""
msgid "Other account"
msgstr "Anderes Konto"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Andere..."
@@ -4291,7 +4545,7 @@ msgstr "Andere..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Seite nicht gefunden"
@@ -4320,19 +4574,24 @@ msgid "Password updated!"
msgstr "Passwort aktualisiert!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Personen gefolgt von @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Personen, die @{0} folgen"
@@ -4362,7 +4621,7 @@ msgid "Pictures meant for adults."
msgstr "Bilder, die für Erwachsene bestimmt sind."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "An die Startseite anheften"
@@ -4374,11 +4633,12 @@ msgstr ""
msgid "Pinned Feeds"
msgstr "Angeheftete Feeds"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr ""
@@ -4395,6 +4655,11 @@ msgstr "{0} abspielen"
msgid "Play or pause the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4404,16 +4669,16 @@ msgstr "Video abspielen"
msgid "Plays the GIF"
msgstr "Spielt das GIF ab"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Bitte wähle deinen Handle."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Bitte wähle dein Passwort."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Bitte fülle das Verifizierungs-Captcha aus."
@@ -4429,11 +4694,11 @@ msgstr "Bitte gib einen Namen für dein App-Passwort ein. Nur Leerzeichen sind n
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Bitte gib einen eindeutigen Namen für dieses App-Passwort ein oder verwende unseren zufällig generierten Namen."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Bitte gib ein gültiges Wort, einen Tag oder eine Phrase zum Stummschalten ein"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Bitte gib deine E-Mail ein."
@@ -4446,7 +4711,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Bitte gib auch dein Passwort ein:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -4468,7 +4733,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr "Bitte verifiziere deine E-Mail"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Bitte warte, bis deine Link-karte vollständig geladen ist"
@@ -4485,45 +4750,50 @@ msgstr "Porno"
#~ msgid "Pornography"
#~ msgstr ""
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Beitrag"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Beitrag"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Beitrag von {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Beitrag von @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Beitrag gelöscht"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Beitrag ausgeblendet"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Beitragssprache"
@@ -4532,23 +4802,27 @@ msgstr "Beitragssprache"
msgid "Post Languages"
msgstr "Beitragssprachen"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Beitrag nicht gefunden"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "Beiträge"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Beiträge"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Beiträge können basierend auf ihrem Text, ihren Tags oder beidem stummgeschaltet werden."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Beiträge können basierend auf ihrem Text, ihren Tags oder beidem stummgeschaltet werden."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4570,7 +4844,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr ""
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4590,7 +4864,7 @@ msgstr ""
msgid "Previous image"
msgstr "Vorheriges Bild"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Primäre Sprache"
@@ -4602,16 +4876,16 @@ msgstr "Priorisiere deine Follower"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Privatsphäre"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Datenschutzerklärung"
@@ -4623,16 +4897,16 @@ msgstr ""
msgid "Processing..."
msgstr "Wird bearbeitet..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr ""
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Profil"
@@ -4640,11 +4914,11 @@ msgstr "Profil"
msgid "Profile updated"
msgstr "Profil aktualisiert"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Schütze dein Konto, indem du deine E-Mail bestätigst."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Öffentlich"
@@ -4652,15 +4926,15 @@ msgstr "Öffentlich"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Öffentliche, gemeinsam nutzbare Listen von Nutzern, die du stapelweise stummschalten oder blockieren kannst."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Öffentliche, gemeinsam nutzbare Listen, die Feeds steuern können."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Beitrag veröffentlichen"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Antwort veröffentlichen"
@@ -4680,10 +4954,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Beitrag zitieren"
@@ -4697,6 +4971,39 @@ msgstr "Beitrag zitieren"
#~ msgid "Quote Post"
#~ msgstr "Beitrag zitieren"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Zufällig (\"Poster's Roulette\")"
@@ -4705,10 +5012,27 @@ msgstr "Zufällig (\"Poster's Roulette\")"
msgid "Ratios"
msgstr "Verhältnisse"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -4717,7 +5041,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr ""
@@ -4741,15 +5065,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Entfernen"
@@ -4761,11 +5086,11 @@ msgstr "Entfernen"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Konto entfernen"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr ""
@@ -4778,8 +5103,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Feed entfernen"
@@ -4787,19 +5112,27 @@ msgstr "Feed entfernen"
msgid "Remove feed?"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Aus meinen Feeds entfernen"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr ""
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Bild entfernen"
@@ -4808,24 +5141,24 @@ msgstr "Bild entfernen"
msgid "Remove image preview"
msgstr "Bildvorschau entfernen"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Stummgeschaltetes Wort aus deiner Liste entfernen"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Repost entfernen"
@@ -4841,18 +5174,31 @@ msgstr ""
#~ msgid "Remove this feed from your saved feeds?"
#~ msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen?"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Aus der Liste entfernt"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Aus meinen Feeds entfernt"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr ""
@@ -4860,7 +5206,7 @@ msgstr ""
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Entfernt Standard-Miniaturansicht von {0}"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -4868,8 +5214,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -4877,7 +5223,7 @@ msgstr ""
msgid "Replies"
msgstr "Antworten"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -4885,18 +5231,40 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Antworten auf diesen Thread sind deaktiviert"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Antworten auf diesen Thread sind deaktiviert"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Antworten"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Antwortfilter"
+#~ msgid "Reply Filters"
+#~ msgstr "Antwortfilter"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -4904,23 +5272,36 @@ msgstr "Antwortfilter"
#~ msgid "Reply to <0/>"
#~ msgstr "Antwort an <0/>"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -4956,7 +5337,7 @@ msgstr ""
msgid "Report feed"
msgstr "Feed melden"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Liste melden"
@@ -4964,13 +5345,13 @@ msgstr "Liste melden"
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Beitrag melden"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5004,30 +5385,31 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Repost"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Erneut veröffentlichen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Reposten oder Beitrag zitieren"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Repostet von"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Repostet von {0}"
@@ -5035,20 +5417,20 @@ msgstr "Repostet von {0}"
#~ msgid "Reposted by <0/>"
#~ msgstr "Repostet von <0/>"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "hat deinen Beitrag repostet"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Reposts von diesem Beitrag"
@@ -5062,7 +5444,7 @@ msgstr "Änderung anfordern"
msgid "Request Code"
msgstr "Code anfordern"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Alt-Text vor der Beitragsveröffentlichung erforderlich machen"
@@ -5091,8 +5473,8 @@ msgstr "Code zurücksetzen"
#~ msgid "Reset onboarding"
#~ msgstr "Onboarding zurücksetzen"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Onboardingstatus zurücksetzen"
@@ -5104,16 +5486,16 @@ msgstr "Passwort zurücksetzen"
#~ msgid "Reset preferences"
#~ msgstr "Einstellungen zurücksetzen"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Einstellungen zurücksetzen"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Setzt den Onboardingstatus zurück"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Einstellungen zurücksetzen"
@@ -5127,17 +5509,19 @@ msgid "Retries the last action, which errored out"
msgstr "Wiederholung der letzten Aktion, bei der ein Fehler aufgetreten ist"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Wiederholen"
@@ -5145,9 +5529,10 @@ msgstr "Wiederholen"
#~ msgid "Retry."
#~ msgstr ""
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Zurück zur vorherigen Seite"
@@ -5161,7 +5546,8 @@ msgid "Returns to previous page"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5211,7 +5597,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr ""
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Gespeicherte Feeds"
@@ -5224,7 +5610,7 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr ""
@@ -5242,8 +5628,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5252,13 +5638,12 @@ msgstr ""
msgid "Science"
msgstr "Wissenschaft"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Zum Anfang blättern"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5267,14 +5652,12 @@ msgstr "Zum Anfang blättern"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Suche"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Nach \"{query}\" suchen"
@@ -5282,11 +5665,11 @@ msgstr "Nach \"{query}\" suchen"
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Nach allen Beiträgen von @{authorHandle} mit dem Tag {displayTag} suchen"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Nach allen Beiträgen mit dem Tag {displayTag} suchen"
@@ -5298,8 +5681,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Nach Nutzern suchen"
@@ -5323,28 +5704,32 @@ msgstr ""
msgid "Security Step Required"
msgstr "Sicherheitsschritt erforderlich"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Siehe {truncatedTag}-Beiträge"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Siehe {truncatedTag}-Beiträge des Benutzers"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Siehe <0>{displayTag}0>-Beiträge"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Siehe <0>{displayTag}0>-Beiträge von diesem Benutzer"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Siehe diesen Leitfaden"
@@ -5384,7 +5769,11 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr ""
@@ -5409,7 +5798,7 @@ msgstr "Wähle Option {i} von {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr ""
@@ -5425,11 +5814,15 @@ msgstr "Wähle den Dienst aus, der deine Daten hostet."
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Wähle aus, was du sehen (oder nicht sehen) möchtest, und wir kümmern uns um den Rest."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Wähle aus, welche Sprachen deine abonnierten Feeds enthalten sollen. Wenn du keine Sprachen auswählst, werden alle Sprachen angezeigt."
@@ -5445,11 +5838,11 @@ msgstr ""
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Wähle aus den folgenden Optionen deine Interessen aus"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus."
@@ -5479,7 +5872,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-Mail senden"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Feedback senden"
@@ -5494,8 +5887,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr ""
@@ -5512,8 +5905,8 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5535,7 +5928,7 @@ msgstr "Server-Adresse"
#~ msgid "Set Age"
#~ msgstr "Alter festlegen"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr ""
@@ -5567,15 +5960,15 @@ msgstr "Neues Passwort festlegen"
#~ msgid "Set password"
#~ msgstr "Passwort festlegen"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Setze diese Einstellung auf \"Nein\", um alle Zitatbeiträge aus deinem Feed auszublenden. Reposts sind weiterhin sichtbar."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Setze diese Einstellung auf \"Nein\", um alle Antworten aus deinem Feed auszublenden."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Setze diese Einstellung auf \"Nein\", um alle Reposts aus deinem Feed auszublenden."
@@ -5583,7 +5976,7 @@ msgstr "Setze diese Einstellung auf \"Nein\", um alle Reposts aus deinem Feed au
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Setze diese Einstellung auf \"Ja\", um Antworten in einer Thread-Ansicht anzuzeigen. Dies ist eine experimentelle Funktion."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem Following-Feed anzuzeigen. Dies ist eine experimentelle Funktion."
@@ -5596,24 +5989,24 @@ msgid "Sets Bluesky username"
msgstr "Legt deinen Bluesky-Benutzernamen fest"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr ""
+#~ msgid "Sets color theme to dark"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr ""
+#~ msgid "Sets color theme to light"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr ""
+#~ msgid "Sets color theme to system setting"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5640,11 +6033,11 @@ msgstr ""
#~ msgid "Sets server for the Bluesky client"
#~ msgstr "Setzt den Server für den Bluesky-Client"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Einstellungen"
@@ -5657,14 +6050,14 @@ msgid "Sexually Suggestive"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Teilen"
@@ -5682,8 +6075,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr ""
@@ -5694,7 +6087,7 @@ msgstr "Feed teilen"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5712,7 +6105,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5724,7 +6117,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5735,7 +6128,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Anzeigen"
@@ -5743,8 +6136,9 @@ msgstr "Anzeigen"
msgid "Show alt text"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Trotzdem anzeigen"
@@ -5769,19 +6163,23 @@ msgstr "Zeige ähnliche Konten wie {0}"
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Mehr anzeigen"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -5789,11 +6187,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Beiträge aus meinen Feeds anzeigen"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Zitatbeiträge anzeigen"
@@ -5809,7 +6207,7 @@ msgstr "Zitatbeiträge anzeigen"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Reposts im Following-Feed anzeigen"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Antworten anzeigen"
@@ -5825,7 +6223,12 @@ msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antwort
#~ msgid "Show replies in Following feed"
#~ msgstr "Antworten in folgendem Feed anzeigen"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Reposts anzeigen"
@@ -5905,11 +6308,15 @@ msgstr ""
msgid "Sign into Bluesky or create a new account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Abmelden"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5931,7 +6338,7 @@ msgstr "Registriere dich oder melden dich an, um an der Diskussion teilzunehmen"
msgid "Sign-in Required"
msgstr "Anmelden erforderlich"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Angemeldet als"
@@ -5940,7 +6347,7 @@ msgstr "Angemeldet als"
msgid "Signed in as @{0}"
msgstr "Angemeldet als @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
@@ -5948,17 +6355,21 @@ msgstr ""
#~ msgid "Signs {0} out of Bluesky"
#~ msgstr "Meldet {0} von Bluesky ab"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Überspringen"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Diesen Schritt überspringen"
@@ -5967,12 +6378,11 @@ msgstr "Diesen Schritt überspringen"
msgid "Software Dev"
msgstr "Software-Entwicklung"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -5995,13 +6405,13 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr ""
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr "Es ist ein Fehler aufgetreten."
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Entschuldigung! Deine Sitzung ist abgelaufen. Bitte logge dich erneut ein."
@@ -6018,7 +6428,11 @@ msgstr "Antworten auf denselben Beitrag sortieren nach:"
#~ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6056,17 +6470,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6082,7 +6496,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Status-Seite"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6090,7 +6504,7 @@ msgstr ""
#~ msgid "Step"
#~ msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr ""
@@ -6098,23 +6512,23 @@ msgstr ""
#~ msgid "Step {0} of {numSteps}"
#~ msgstr "Schritt {0} von {numSteps}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Einreichen"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Abonnieren"
@@ -6135,11 +6549,11 @@ msgstr ""
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Abonniere diese Liste"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6147,8 +6561,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Vorgeschlagene Follower"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Vorgeschlagen für dich"
@@ -6156,7 +6569,7 @@ msgstr "Vorgeschlagen für dich"
msgid "Suggestive"
msgstr "Suggestiv"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6171,30 +6584,35 @@ msgstr "Konto wechseln"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Wechseln zu {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Wechselt das Konto, in das du eingeloggt bist"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "System"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Systemprotokoll"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "Tag"
+#~ msgid "tag"
+#~ msgstr "Tag"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Tag-Menü: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Groß"
@@ -6203,11 +6621,19 @@ msgstr "Groß"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Tippe, um die vollständige Ansicht anzuzeigen"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6232,11 +6658,11 @@ msgstr ""
msgid "Terms"
msgstr "Bedingungen"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Nutzungsbedingungen"
@@ -6248,16 +6674,20 @@ msgid "Terms used violate community standards"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "Text"
+#~ msgid "text"
+#~ msgstr "Text"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Text-Eingabefeld"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr ""
@@ -6265,19 +6695,23 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Dieser Handle ist bereits besetzt."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6287,6 +6721,15 @@ msgstr "Das Konto kann nach der Entblockiert mit dir interagieren."
#~ msgid "the author"
#~ msgstr ""
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Die Community-Richtlinien wurden nach <0/> verschoben"
@@ -6295,12 +6738,16 @@ msgstr "Die Community-Richtlinien wurden nach <0/> verschoben"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6308,11 +6755,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr ""
@@ -6320,8 +6767,8 @@ msgstr ""
msgid "The following steps will help customize your Bluesky experience."
msgstr "Die folgenden Schritte helfen dir, dein Bluesky-Erlebnis anzupassen."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Möglicherweise wurde der Post gelöscht."
@@ -6329,7 +6776,11 @@ msgstr "Möglicherweise wurde der Post gelöscht."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6374,24 +6825,24 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Es gab ein Problem bei der Kontaktaufnahme mit deinem Server"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Es gab ein Problem beim Abrufen von Mitteilungen. Tippe hier, um es erneut zu versuchen."
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Es gab ein Problem beim Abrufen der Beiträge. Tippe hier, um es erneut zu versuchen."
@@ -6399,13 +6850,13 @@ msgstr "Es gab ein Problem beim Abrufen der Beiträge. Tippe hier, um es erneut
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Es gab ein Problem beim Abrufen der Liste. Tippe hier, um es erneut zu versuchen."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Es gab ein Problem beim Abrufen deiner Listen. Tippe hier, um es erneut zu versuchen."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
@@ -6431,16 +6882,19 @@ msgstr "Es gab ein Problem beim Abrufen deiner App-Passwörter"
msgid "There was an issue! {0}"
msgstr "Es gab ein Problem! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Es ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Es gab ein unerwartetes Problem in der Anwendung. Bitte teile uns mit, wenn dies bei dir der Fall ist!"
@@ -6453,11 +6907,11 @@ msgstr "Es gab einen Ansturm neuer Benutzer auf Bluesky! Wir werden dein Konto s
#~ msgid "These are popular accounts you might like:"
#~ msgstr "Dies sind beliebte Konten, die dir gefallen könnten:"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Diese {screenDescription} wurde gekennzeichnet:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Dieses Konto hat die Benutzer aufgefordert, sich anzumelden, um dein Profil zu sehen."
@@ -6466,7 +6920,11 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
@@ -6493,8 +6951,8 @@ msgstr ""
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Dieser Inhalt wird von {0} gehostet. Möchtest du externe Medien aktivieren?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Dieser Inhalt ist nicht verfügbar, weil einer der beteiligten Benutzer den anderen blockiert hat."
@@ -6530,7 +6988,7 @@ msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Benutzern folgen ode
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6550,11 +7008,11 @@ msgstr "Das ist wichtig für den Fall, dass du mal deine E-Mail ändern oder dei
#~ msgid "This label was applied by {0}."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -6562,7 +7020,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -6574,7 +7032,11 @@ msgstr ""
msgid "This link is taking you to the following website:"
msgstr "Dieser Link führt dich auf die folgende Website:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Diese Liste ist leer!"
@@ -6586,23 +7048,35 @@ msgstr ""
msgid "This name is already in use"
msgstr "Dieser Name ist bereits in Gebrauch"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Dieser Beitrag wurde gelöscht."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr ""
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
@@ -6619,8 +7093,8 @@ msgstr ""
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Dieser Benutzer hat dich blockiert. Du kannst deren Inhalte nicht sehen."
@@ -6636,11 +7110,11 @@ msgstr ""
#~ msgid "This user is included in the <0/> list which you have muted."
#~ msgstr "Dieser Benutzer ist in der Liste <0/> enthalten, die du stummgeschaltet haben."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr ""
@@ -6656,32 +7130,44 @@ msgstr ""
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Diese Warnung ist nur für Beiträge mit angehängten Medien verfügbar."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Dies wird {0} aus deinen stummgeschalteten Wörtern löschen. Du kannst es später jederzeit wieder hinzufügen."
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Dies wird {0} aus deinen stummgeschalteten Wörtern löschen. Du kannst es später jederzeit wieder hinzufügen."
#: src/view/com/util/forms/PostDropdownBtn.tsx:282
#~ msgid "This will hide this post from your feeds."
#~ msgstr "Dadurch wird dieser Beitrag aus deinen Feeds ausgeblendet."
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr ""
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Thread-Einstellungen"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Thread-Modus"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Thread-Einstellungen"
@@ -6698,14 +7184,14 @@ msgid "To whom would you like to send this report?"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Zwischen den Optionen für stummgeschaltete Wörter wechseln."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Zwischen den Optionen für stummgeschaltete Wörter wechseln."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Dieses Dropdown umschalten"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -6720,10 +7206,10 @@ msgstr "Verwandlungen"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Übersetzen"
@@ -6736,7 +7222,7 @@ msgstr "Erneut versuchen"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr ""
@@ -6748,11 +7234,11 @@ msgstr ""
msgid "Type:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Liste entblocken"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Stummschaltung von Liste aufheben"
@@ -6760,12 +7246,12 @@ msgstr "Stummschaltung von Liste aufheben"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Es ist uns nicht gelungen, deinen Dienst zu kontaktieren. Bitte überprüfe deine Internetverbindung."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6776,7 +7262,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Entblocken"
@@ -6800,9 +7286,9 @@ msgstr "Konto entblocken"
msgid "Unblock Account?"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Repost rückgängig machen"
@@ -6812,8 +7298,8 @@ msgid "Unfollow"
msgstr "Nicht mehr folgen"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr ""
+#~ msgid "Unfollow"
+#~ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6836,12 +7322,14 @@ msgstr ""
msgid "Unlike this feed"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Stummschaltung aufheben"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Stummschaltung von {truncatedTag} aufheben"
@@ -6850,7 +7338,7 @@ msgstr "Stummschaltung von {truncatedTag} aufheben"
msgid "Unmute Account"
msgstr "Stummschaltung von Konto aufheben"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Stummschaltung aller {displayTag}-Beiträge aufheben"
@@ -6862,13 +7350,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Stummschaltung von Thread aufheben"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Anheften aufheben"
@@ -6876,11 +7372,11 @@ msgstr "Anheften aufheben"
msgid "Unpin from home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Anheften der Moderationsliste aufheben"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -6892,10 +7388,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -6905,7 +7410,7 @@ msgstr ""
msgid "Unwanted Sexual Content"
msgstr ""
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "{displayName} in Listen aktualisieren"
@@ -6917,6 +7422,14 @@ msgstr "{displayName} in Listen aktualisieren"
msgid "Update to {handle}"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Wird aktualisiert…"
@@ -6929,20 +7442,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr "Hochladen einer Textdatei auf:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6990,12 +7503,12 @@ msgstr "Verwenden dies, um dich mit deinem Handle bei der anderen App einzulogge
msgid "Used by:"
msgstr "Verwendet von:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Benutzer blockiert"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr ""
@@ -7003,15 +7516,15 @@ msgstr ""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Benutzer durch der Liste blockiert"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Benutzer blockiert dich"
@@ -7019,18 +7532,16 @@ msgstr "Benutzer blockiert dich"
#~ msgid "User handle"
#~ msgstr "Benutzerhandle"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Benutzerliste von {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Benutzerliste von <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Benutzerliste von dir"
@@ -7042,7 +7553,7 @@ msgstr "Benutzerliste erstellt"
msgid "User list updated"
msgstr "Benutzerliste aktualisiert"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Benutzerlisten"
@@ -7050,13 +7561,17 @@ msgstr "Benutzerlisten"
msgid "Username or email address"
msgstr "Benutzername oder E-Mail-Adresse"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Benutzer"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "Benutzer gefolgt von <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "Benutzer gefolgt von <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7065,7 +7580,7 @@ msgstr "Benutzer gefolgt von <0/>"
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Benutzer in \"{0}\""
@@ -7085,15 +7600,15 @@ msgstr ""
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "E-Mail bestätigen"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Meine E-Mail bestätigen"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Meine E-Mail bestätigen"
@@ -7114,31 +7629,44 @@ msgstr "Überprüfe deine E-Mail"
#~ msgid "Version {0}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Videospiele"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Avatar von {0} ansehen"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Debug-Eintrag anzeigen"
@@ -7151,7 +7679,7 @@ msgstr ""
msgid "View details for reporting a copyright violation"
msgstr ""
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Vollständigen Thread ansehen"
@@ -7162,12 +7690,12 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Profil ansehen"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Avatar ansehen"
@@ -7179,11 +7707,23 @@ msgstr ""
msgid "View users who like this feed"
msgstr ""
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7219,7 +7759,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Wir schätzen {estimatedTime} bis dein Konto bereit ist."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Wir hoffen, dass du eine schöne Zeit hast. Denke daran, Bluesky ist:"
@@ -7228,8 +7768,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Wir haben keine Beiträge mehr von den Konten, denen du folgst. Hier ist das Neueste von <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Wir empfehlen, gebräuchliche Wörter zu vermeiden, die in vielen Beiträgen vorkommen, da dies dazu führen kann, dass keine Beiträge angezeigt werden."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Wir empfehlen, gebräuchliche Wörter zu vermeiden, die in vielen Beiträgen vorkommen, da dies dazu führen kann, dass keine Beiträge angezeigt werden."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7239,11 +7779,11 @@ msgstr "Wir empfehlen, gebräuchliche Wörter zu vermeiden, die in vielen Beitr
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Die Verbindung konnte nicht hergestellt werden. Bitte versuche es erneut, um mit der Einrichtung deines Kontos fortzufahren. Wenn der Versuch weiterhin fehlschlägt, kannst du diesen Schritt überspringen."
@@ -7255,7 +7795,7 @@ msgstr "Wir werden dich benachrichtigen, wenn dein Konto bereit ist."
#~ msgid "We'll look into your appeal promptly."
#~ msgstr "Wir werden deinen Widerspruch unverzüglich prüfen."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gestalten."
@@ -7263,15 +7803,15 @@ msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gesta
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Wir freuen uns sehr, dass du dabei bist!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Es tut uns leid, aber wir waren nicht in der Lage, diese Liste aufzulösen. Wenn das Problem weiterhin besteht, kontaktiere bitte den Ersteller der Liste, @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter nicht laden. Bitte versuche es erneut."
@@ -7279,11 +7819,11 @@ msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter nicht
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten erneut."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Es tut uns leid! Wir können die Seite, nach der du gesucht hast, nicht finden."
@@ -7308,7 +7848,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Was sind deine Interessen?"
@@ -7322,7 +7862,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Was gibt's?"
@@ -7334,22 +7874,26 @@ msgstr "Welche Sprachen werden in diesem Beitrag verwendet?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Welche Sprachen würdest du gerne in deinen algorithmischen Feeds sehen?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Wer antworten kann"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7393,12 +7937,12 @@ msgstr "Breit"
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Beitrag verfassen"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Schreibe deine Antwort"
@@ -7408,10 +7952,10 @@ msgid "Writers"
msgstr "Schriftsteller"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7422,10 +7966,18 @@ msgstr "Ja"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7434,7 +7986,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7500,11 +8053,11 @@ msgstr "Du hast keine angehefteten Feeds."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "Du hast keine gespeicherten Feeds!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Du hast keine gespeicherten Feeds."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Du hast den Verfasser blockiert oder du wurdest vom Verfasser blockiert."
@@ -7512,9 +8065,9 @@ msgstr "Du hast den Verfasser blockiert oder du wurdest vom Verfasser blockiert.
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Du hast diesen Benutzer blockiert und kannst seine Inhalte nicht sehen."
@@ -7525,20 +8078,20 @@ msgstr "Du hast diesen Benutzer blockiert und kannst seine Inhalte nicht sehen."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Du hast einen ungültigen Code eingegeben. Er sollte wie XXXXX-XXXXX aussehen."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr ""
@@ -7550,12 +8103,12 @@ msgstr ""
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Du hast keine Feeds."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Du hast keine Listen."
@@ -7591,27 +8144,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Du hast noch keine Wörter oder Tags stummgeschaltet"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr ""
@@ -7635,7 +8201,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -7643,11 +8209,11 @@ msgstr ""
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Du wirst keine Mitteilungen mehr für diesen Thread erhalten"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Du erhälst nun Mitteilungen für dieses Thread"
@@ -7667,23 +8233,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7702,12 +8268,12 @@ msgstr "Du bist in der Warteschlange"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Du kannst loslegen!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
@@ -7715,7 +8281,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Konten, denen du folgen kannst."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Dein Konto"
@@ -7731,6 +8297,10 @@ msgstr "Dein Kontodepot, das alle öffentlichen Datensätze enthält, kann als \
msgid "Your birth date"
msgstr "Dein Geburtsdatum"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -7744,7 +8314,7 @@ msgstr "Deine Wahl wird gespeichert, kann aber später in den Einstellungen geä
#~ msgstr "Dein Standard-Feed ist \"Following\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7758,7 +8328,7 @@ msgstr "Deine E-Mail wurde aktualisiert, aber nicht bestätigt. Als nächsten Sc
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Deine E-Mail wurde noch nicht bestätigt. Dies ist ein wichtiger Sicherheitsschritt, den wir empfehlen."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7766,7 +8336,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Dein Following-Feed ist leer! Folge mehr Benutzern, um auf dem Laufenden zu bleiben."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Dein vollständiger Handle lautet"
@@ -7774,7 +8344,7 @@ msgstr "Dein vollständiger Handle lautet"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Dein vollständiger Handle lautet <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Deine stummgeschalteten Wörter"
@@ -7782,15 +8352,15 @@ msgstr "Deine stummgeschalteten Wörter"
msgid "Your password has been changed successfully!"
msgstr "Dein Passwort wurde erfolgreich geändert!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Dein Beitrag wurde veröffentlicht"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Deine Beiträge, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Dein Profil"
@@ -7798,7 +8368,7 @@ msgstr "Dein Profil"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Deine Antwort wurde veröffentlicht"
@@ -7806,6 +8376,6 @@ msgstr "Deine Antwort wurde veröffentlicht"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Dein Benutzerhandle"
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index d2bc431e19..709c47e42c 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -21,7 +21,8 @@ msgstr ""
msgid "(no email)"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -41,7 +42,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr ""
@@ -59,16 +60,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -76,23 +77,37 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -100,7 +115,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -136,7 +151,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -163,7 +178,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr ""
@@ -176,12 +191,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr ""
+#~ msgid "<0/> members"
+#~ msgstr ""
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -201,11 +216,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -221,6 +236,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr ""
@@ -254,15 +273,27 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr ""
@@ -272,16 +303,16 @@ msgid "Access profile and other navigation links"
msgstr ""
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr ""
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr ""
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr ""
@@ -290,8 +321,8 @@ msgstr ""
#~ msgstr ""
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr ""
@@ -307,20 +338,20 @@ msgstr ""
msgid "Account muted"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr ""
@@ -337,10 +368,10 @@ msgstr ""
msgid "Account unmuted"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr ""
@@ -356,14 +387,14 @@ msgstr ""
msgid "Add a content warning"
msgstr ""
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr ""
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr ""
@@ -394,11 +425,11 @@ msgstr ""
#~ msgid "Add link card:"
#~ msgstr ""
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr ""
@@ -422,7 +453,7 @@ msgstr ""
msgid "Add the following DNS record to your domain:"
msgstr ""
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -431,7 +462,7 @@ msgstr ""
msgid "Add to Lists"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr ""
@@ -440,24 +471,25 @@ msgstr ""
#~ msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr ""
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr ""
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -465,20 +497,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr ""
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr ""
@@ -497,6 +529,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -514,7 +554,7 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr ""
@@ -535,14 +575,27 @@ msgstr ""
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr ""
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#~ msgid "An error occured"
+#~ msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -556,10 +609,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr ""
@@ -574,21 +632,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr ""
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr ""
@@ -605,6 +667,10 @@ msgstr ""
msgid "Anti-Social Behavior"
msgstr ""
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr ""
@@ -621,26 +687,26 @@ msgstr ""
msgid "App Password names must be at least 4 characters long."
msgstr ""
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr ""
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr ""
@@ -656,10 +722,19 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr ""
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -681,7 +756,7 @@ msgstr ""
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -693,19 +768,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr ""
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr ""
@@ -722,13 +797,13 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -741,8 +816,8 @@ msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr ""
@@ -750,7 +825,7 @@ msgstr ""
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr ""
@@ -758,7 +833,7 @@ msgstr ""
msgid "Birthday"
msgstr ""
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr ""
@@ -781,28 +856,27 @@ msgstr ""
msgid "Block Account?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr ""
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr ""
@@ -815,7 +889,7 @@ msgstr ""
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr ""
@@ -823,7 +897,7 @@ msgstr ""
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -831,7 +905,7 @@ msgstr ""
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr ""
@@ -867,7 +941,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
@@ -884,21 +958,23 @@ msgstr ""
msgid "Books"
msgstr ""
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -907,11 +983,11 @@ msgstr ""
msgid "Browse other feeds"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr ""
@@ -927,15 +1003,15 @@ msgstr ""
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr ""
@@ -947,13 +1023,13 @@ msgstr ""
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr ""
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -969,9 +1045,8 @@ msgstr ""
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr ""
@@ -999,7 +1074,7 @@ msgstr ""
msgid "Cancel profile editing"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr ""
@@ -1008,7 +1083,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr ""
@@ -1020,17 +1094,17 @@ msgstr ""
msgid "Change"
msgstr ""
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr ""
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr ""
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr ""
@@ -1038,12 +1112,12 @@ msgstr ""
msgid "Change my email"
msgstr ""
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr ""
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr ""
@@ -1055,7 +1129,7 @@ msgstr ""
msgid "Change Your Email"
msgstr ""
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1067,14 +1141,14 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr ""
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1111,15 +1185,15 @@ msgstr ""
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1127,7 +1201,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1135,7 +1209,7 @@ msgstr ""
msgid "Choose Service"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr ""
@@ -1150,8 +1224,8 @@ msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1162,18 +1236,18 @@ msgid "Choose your password"
msgstr ""
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr ""
+#~ msgid "Clear all legacy storage data"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr ""
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr ""
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr ""
@@ -1183,10 +1257,10 @@ msgid "Clear search query"
msgstr ""
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr ""
+#~ msgid "Clears all legacy storage data"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr ""
@@ -1206,7 +1280,7 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr ""
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr ""
@@ -1214,6 +1288,14 @@ msgstr ""
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1227,12 +1309,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1253,7 +1335,7 @@ msgid "Close bottom drawer"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr ""
@@ -1277,8 +1359,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr ""
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr ""
@@ -1290,7 +1372,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -1298,11 +1380,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr ""
@@ -1316,27 +1398,31 @@ msgstr ""
msgid "Comics"
msgstr ""
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr ""
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr ""
@@ -1372,11 +1458,11 @@ msgstr ""
msgid "Confirm delete account"
msgstr ""
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr ""
@@ -1394,7 +1480,8 @@ msgstr ""
msgid "Connecting..."
msgstr ""
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr ""
@@ -1406,24 +1493,24 @@ msgstr ""
msgid "Content Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr ""
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr ""
@@ -1435,7 +1522,7 @@ msgstr ""
msgid "Context menu backdrop, click to close the menu."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr ""
@@ -1448,7 +1535,7 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1475,7 +1562,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr ""
@@ -1483,8 +1570,8 @@ msgstr ""
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr ""
@@ -1518,12 +1605,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr ""
@@ -1532,8 +1619,8 @@ msgstr ""
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr ""
@@ -1541,14 +1628,14 @@ msgstr ""
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr ""
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1558,7 +1645,7 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr ""
@@ -1583,7 +1670,7 @@ msgstr ""
msgid "Create a new account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr ""
@@ -1593,7 +1680,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1601,7 +1688,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr ""
@@ -1657,42 +1744,54 @@ msgstr ""
msgid "Custom domain"
msgstr ""
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr ""
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr ""
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr ""
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr ""
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr ""
+#: src/view/screens/Settings/index.tsx:473
+#~ msgid "Dark Theme"
+#~ msgstr ""
+
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr ""
@@ -1701,16 +1800,16 @@ msgid "Debug panel"
msgstr ""
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr ""
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr ""
@@ -1730,8 +1829,8 @@ msgstr ""
msgid "Delete app password?"
msgstr ""
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1739,7 +1838,7 @@ msgstr ""
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr ""
@@ -1755,41 +1854,41 @@ msgstr ""
msgid "Delete my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr ""
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1804,11 +1903,25 @@ msgstr ""
msgid "Descriptive alt text"
msgstr ""
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr ""
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr ""
@@ -1816,7 +1929,7 @@ msgstr ""
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr ""
@@ -1824,7 +1937,7 @@ msgstr ""
msgid "Disable Email 2FA"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr ""
@@ -1832,6 +1945,10 @@ msgstr ""
#~ msgid "Disable haptics"
#~ msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr ""
@@ -1841,20 +1958,20 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr ""
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr ""
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr ""
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr ""
@@ -1867,19 +1984,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr ""
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr ""
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1895,11 +2020,15 @@ msgstr ""
msgid "DNS Panel"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr ""
@@ -1913,7 +2042,6 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1932,8 +2060,8 @@ msgstr ""
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr ""
@@ -1942,7 +2070,7 @@ msgstr ""
msgid "Done{extraText}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -1959,6 +2087,10 @@ msgstr ""
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr ""
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr ""
@@ -1999,11 +2131,11 @@ msgstr ""
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2012,12 +2144,12 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2026,7 +2158,12 @@ msgstr ""
msgid "Edit image"
msgstr ""
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr ""
@@ -2034,10 +2171,10 @@ msgstr ""
msgid "Edit Moderation List"
msgstr ""
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr ""
@@ -2045,10 +2182,15 @@ msgstr ""
msgid "Edit my profile"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2064,7 +2206,7 @@ msgstr ""
#~ msgid "Edit Saved Feeds"
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2072,7 +2214,7 @@ msgstr ""
msgid "Edit User List"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2084,7 +2226,7 @@ msgstr ""
msgid "Edit your profile description"
msgstr ""
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2094,8 +2236,8 @@ msgid "Education"
msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2123,7 +2265,7 @@ msgstr ""
msgid "Email verified"
msgstr ""
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr ""
@@ -2132,8 +2274,8 @@ msgid "Embed HTML code"
msgstr ""
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr ""
@@ -2145,7 +2287,7 @@ msgstr ""
msgid "Enable {0} only"
msgstr ""
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr ""
@@ -2163,7 +2305,7 @@ msgstr ""
msgid "Enable external media"
msgstr ""
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr ""
@@ -2172,21 +2314,25 @@ msgstr ""
msgid "Enable priority notifications"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
msgstr ""
+#: src/view/screens/PreferencesFollowingFeed.tsx:145
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr ""
+
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
msgstr ""
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr ""
@@ -2206,8 +2352,8 @@ msgstr ""
msgid "Enter a password"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr ""
@@ -2252,25 +2398,27 @@ msgstr ""
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr ""
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2286,6 +2434,14 @@ msgstr ""
msgid "Excessive or unwanted messages"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr ""
@@ -2303,7 +2459,6 @@ msgid "Exits image view"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr ""
@@ -2311,7 +2466,7 @@ msgstr ""
msgid "Expand alt text"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2324,6 +2479,14 @@ msgstr ""
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr ""
@@ -2332,12 +2495,12 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr ""
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr ""
@@ -2347,17 +2510,17 @@ msgid "External Media"
msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr ""
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr ""
@@ -2366,8 +2529,8 @@ msgstr ""
msgid "Failed to create app password."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2379,16 +2542,16 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2410,12 +2573,12 @@ msgstr ""
#~ msgid "Failed to load recommended feeds"
#~ msgstr ""
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2435,16 +2598,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2453,12 +2616,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr ""
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr ""
@@ -2471,19 +2634,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr ""
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr ""
@@ -2491,7 +2654,7 @@ msgstr ""
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr ""
@@ -2499,7 +2662,7 @@ msgstr ""
#~ msgid "Feeds can be topical as well!"
#~ msgstr ""
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2515,7 +2678,7 @@ msgstr ""
msgid "Filter from feeds"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr ""
@@ -2545,7 +2708,7 @@ msgstr ""
#~ msgid "Finding similar accounts..."
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr ""
@@ -2553,7 +2716,7 @@ msgstr ""
msgid "Fine-tune the discussion threads."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2565,7 +2728,7 @@ msgstr ""
msgid "Fitness"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr ""
@@ -2579,12 +2742,11 @@ msgid "Flip vertically"
msgstr ""
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr ""
@@ -2598,7 +2760,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2611,8 +2773,8 @@ msgstr ""
msgid "Follow Account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2624,7 +2786,7 @@ msgstr ""
msgid "Follow Back"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2660,19 +2822,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr ""
+#~ msgid "Followed users only"
+#~ msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2681,7 +2843,7 @@ msgstr ""
msgid "Followers"
msgstr ""
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2691,34 +2853,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr ""
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr ""
@@ -2730,7 +2892,7 @@ msgstr ""
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr ""
@@ -2747,6 +2909,10 @@ msgstr ""
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2768,7 +2934,7 @@ msgstr ""
msgid "From @{sanitizedAuthor}"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
@@ -2781,7 +2947,7 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2810,24 +2976,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr ""
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr ""
@@ -2837,14 +3004,14 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2886,7 +3053,7 @@ msgstr ""
msgid "Graphic Media"
msgstr ""
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2894,7 +3061,7 @@ msgstr ""
msgid "Handle"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr ""
@@ -2902,7 +3069,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr ""
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr ""
@@ -2910,12 +3077,12 @@ msgstr ""
msgid "Hashtag: #{tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr ""
@@ -2939,6 +3106,10 @@ msgstr ""
msgid "Here is your app password."
msgstr ""
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2946,18 +3117,33 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr ""
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
+#~ msgid "Hide post"
+#~ msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
msgstr ""
#: src/components/moderation/ContentHider.tsx:68
@@ -2965,11 +3151,16 @@ msgstr ""
msgid "Hide the content"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr ""
@@ -3001,12 +3192,12 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr ""
@@ -3039,7 +3230,7 @@ msgstr ""
msgid "I have my own domain"
msgstr ""
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -3052,15 +3243,15 @@ msgstr ""
msgid "If none are selected, suitable for all ages."
msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -3136,10 +3327,14 @@ msgstr ""
msgid "Input your preferred hosting provider"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr ""
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3149,7 +3344,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr ""
@@ -3165,7 +3360,7 @@ msgstr ""
msgid "Invite code"
msgstr ""
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -3197,14 +3392,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3241,11 +3436,11 @@ msgstr ""
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr ""
@@ -3253,16 +3448,16 @@ msgstr ""
msgid "Language selection"
msgstr ""
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr ""
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr ""
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr ""
@@ -3271,21 +3466,26 @@ msgstr ""
msgid "Latest"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr ""
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr ""
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr ""
@@ -3323,8 +3523,8 @@ msgid "left to go."
msgstr ""
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr ""
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3335,12 +3535,13 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr ""
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr ""
@@ -3352,8 +3553,8 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3363,14 +3564,15 @@ msgid "Like this feed"
msgstr ""
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr ""
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr ""
@@ -3388,11 +3590,11 @@ msgstr ""
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr ""
@@ -3400,11 +3602,11 @@ msgstr ""
msgid "Likes"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr ""
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr ""
@@ -3412,20 +3614,28 @@ msgstr ""
msgid "List Avatar"
msgstr ""
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr ""
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr ""
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr ""
@@ -3433,20 +3643,20 @@ msgstr ""
msgid "List Name"
msgstr ""
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr ""
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr ""
@@ -3470,10 +3680,10 @@ msgstr ""
msgid "Load new notifications"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr ""
@@ -3481,7 +3691,7 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr ""
@@ -3497,7 +3707,7 @@ msgstr ""
msgid "Log out"
msgstr ""
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr ""
@@ -3537,7 +3747,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr ""
@@ -3546,20 +3756,20 @@ msgstr ""
msgid "Mark as read"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr ""
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr ""
@@ -3590,7 +3800,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3605,29 +3815,31 @@ msgstr ""
msgid "Misleading Account"
msgstr ""
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr ""
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr ""
@@ -3639,20 +3851,24 @@ msgstr ""
msgid "Moderation list updated"
msgstr ""
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr ""
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr ""
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr ""
@@ -3660,12 +3876,12 @@ msgstr ""
msgid "Moderation tools"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr ""
@@ -3673,7 +3889,7 @@ msgstr ""
msgid "More feeds"
msgstr ""
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr ""
@@ -3689,11 +3905,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr ""
@@ -3702,11 +3920,11 @@ msgstr ""
msgid "Mute Account"
msgstr ""
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr ""
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr ""
@@ -3716,14 +3934,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr ""
+#~ msgid "Mute in tags only"
+#~ msgstr ""
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
+#~ msgid "Mute in text & tags"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr ""
@@ -3732,37 +3954,53 @@ msgstr ""
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr ""
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr ""
@@ -3771,7 +4009,7 @@ msgstr ""
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr ""
@@ -3779,7 +4017,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr ""
@@ -3788,7 +4026,7 @@ msgstr ""
msgid "My Birthday"
msgstr ""
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr ""
@@ -3796,11 +4034,11 @@ msgstr ""
msgid "My Profile"
msgstr ""
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr ""
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr ""
@@ -3825,7 +4063,7 @@ msgstr ""
msgid "Nature"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3839,7 +4077,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr ""
@@ -3852,7 +4090,7 @@ msgstr ""
#~ msgid "Never lose access to your followers and data."
#~ msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr ""
@@ -3860,7 +4098,7 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr ""
@@ -3896,12 +4134,12 @@ msgctxt "action"
msgid "New post"
msgstr ""
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr ""
@@ -3935,10 +4173,10 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3954,17 +4192,17 @@ msgstr ""
msgid "Next image"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr ""
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr ""
@@ -3981,12 +4219,12 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr ""
@@ -3998,7 +4236,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr ""
@@ -4009,6 +4247,10 @@ msgstr ""
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4022,11 +4264,11 @@ msgstr ""
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr ""
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr ""
@@ -4051,13 +4293,13 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr ""
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4076,7 +4318,7 @@ msgstr ""
#~ msgid "Not Applicable."
#~ msgstr ""
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr ""
@@ -4087,12 +4329,12 @@ msgid "Not right now"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr ""
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
@@ -4104,7 +4346,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4121,14 +4363,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr ""
@@ -4157,12 +4399,12 @@ msgid "Off"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr ""
@@ -4186,7 +4428,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr ""
@@ -4194,7 +4436,7 @@ msgstr ""
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr ""
@@ -4203,14 +4445,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
-
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
+#~ msgid "Only {0} can reply"
#~ msgstr ""
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
@@ -4218,7 +4460,7 @@ msgstr ""
msgid "Oops, something went wrong!"
msgstr ""
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4227,11 +4469,11 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4244,8 +4486,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr ""
@@ -4253,7 +4495,7 @@ msgstr ""
msgid "Open feed options menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr ""
@@ -4269,20 +4511,20 @@ msgstr ""
msgid "Open navigation"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr ""
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr ""
@@ -4290,11 +4532,11 @@ msgstr ""
msgid "Opens {numItems} options"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr ""
@@ -4306,19 +4548,23 @@ msgstr ""
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr ""
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr ""
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr ""
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr ""
@@ -4326,7 +4572,7 @@ msgstr ""
msgid "Opens device photo gallery"
msgstr ""
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr ""
@@ -4348,27 +4594,27 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr ""
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr ""
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr ""
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr ""
@@ -4376,7 +4622,7 @@ msgstr ""
msgid "Opens modal for using custom domain"
msgstr ""
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr ""
@@ -4389,15 +4635,15 @@ msgstr ""
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr ""
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr ""
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr ""
@@ -4409,21 +4655,21 @@ msgstr ""
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr ""
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr ""
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4436,11 +4682,15 @@ msgid "Option {0} of {numItems}"
msgstr ""
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr ""
@@ -4460,6 +4710,10 @@ msgstr ""
msgid "Other account"
msgstr ""
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr ""
@@ -4468,7 +4722,7 @@ msgstr ""
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr ""
@@ -4497,19 +4751,24 @@ msgid "Password updated!"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr ""
@@ -4539,7 +4798,7 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr ""
@@ -4551,11 +4810,12 @@ msgstr ""
msgid "Pinned Feeds"
msgstr ""
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr ""
@@ -4572,6 +4832,11 @@ msgstr ""
msgid "Play or pause the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4581,16 +4846,16 @@ msgstr ""
msgid "Plays the GIF"
msgstr ""
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr ""
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr ""
@@ -4606,11 +4871,11 @@ msgstr ""
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr ""
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr ""
@@ -4623,7 +4888,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -4640,7 +4905,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr ""
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr ""
@@ -4653,45 +4918,50 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr ""
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr ""
@@ -4700,22 +4970,26 @@ msgstr ""
msgid "Post Languages"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr ""
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
@@ -4738,7 +5012,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr ""
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4758,7 +5032,7 @@ msgstr ""
msgid "Previous image"
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr ""
@@ -4770,16 +5044,16 @@ msgstr ""
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr ""
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr ""
@@ -4791,16 +5065,16 @@ msgstr ""
msgid "Processing..."
msgstr ""
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr ""
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr ""
@@ -4808,11 +5082,11 @@ msgstr ""
msgid "Profile updated"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr ""
@@ -4820,15 +5094,15 @@ msgstr ""
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr ""
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr ""
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr ""
@@ -4848,10 +5122,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr ""
@@ -4865,6 +5139,39 @@ msgstr ""
#~ msgid "Quote Post"
#~ msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr ""
@@ -4873,10 +5180,27 @@ msgstr ""
msgid "Ratios"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -4885,7 +5209,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr ""
@@ -4909,15 +5233,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr ""
@@ -4925,11 +5250,11 @@ msgstr ""
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr ""
@@ -4942,8 +5267,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr ""
@@ -4951,19 +5276,27 @@ msgstr ""
msgid "Remove feed?"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr ""
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr ""
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr ""
@@ -4972,24 +5305,24 @@ msgstr ""
msgid "Remove image preview"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr ""
@@ -4997,18 +5330,31 @@ msgstr ""
msgid "Remove this feed from your saved feeds"
msgstr ""
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr ""
@@ -5016,7 +5362,7 @@ msgstr ""
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -5024,8 +5370,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -5033,7 +5379,7 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5041,17 +5387,39 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr ""
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
+#~ msgid "Reply Filters"
+#~ msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
msgstr ""
#: src/view/com/post/Post.tsx:177
@@ -5060,23 +5428,36 @@ msgstr ""
#~ msgid "Reply to <0/>"
#~ msgstr ""
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5108,7 +5489,7 @@ msgstr ""
msgid "Report feed"
msgstr ""
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr ""
@@ -5116,13 +5497,13 @@ msgstr ""
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5156,30 +5537,31 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr ""
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr ""
@@ -5187,20 +5569,20 @@ msgstr ""
#~ msgid "Reposted by <0/>"
#~ msgstr ""
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr ""
@@ -5214,7 +5596,7 @@ msgstr ""
msgid "Request Code"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr ""
@@ -5239,8 +5621,8 @@ msgstr ""
msgid "Reset Code"
msgstr ""
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr ""
@@ -5248,16 +5630,16 @@ msgstr ""
msgid "Reset password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr ""
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr ""
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr ""
@@ -5271,17 +5653,19 @@ msgid "Retries the last action, which errored out"
msgstr ""
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr ""
@@ -5289,9 +5673,10 @@ msgstr ""
#~ msgid "Retry."
#~ msgstr ""
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr ""
@@ -5305,7 +5690,8 @@ msgid "Returns to previous page"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5355,7 +5741,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr ""
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr ""
@@ -5368,7 +5754,7 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr ""
@@ -5386,8 +5772,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5396,13 +5782,12 @@ msgstr ""
msgid "Science"
msgstr ""
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr ""
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5411,14 +5796,12 @@ msgstr ""
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr ""
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr ""
@@ -5426,11 +5809,11 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr ""
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr ""
@@ -5442,8 +5825,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr ""
@@ -5467,28 +5848,32 @@ msgstr ""
msgid "Security Step Required"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr ""
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr ""
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr ""
@@ -5528,7 +5913,11 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr ""
@@ -5548,7 +5937,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr ""
@@ -5564,11 +5953,15 @@ msgstr ""
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr ""
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr ""
@@ -5580,11 +5973,11 @@ msgstr ""
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr ""
@@ -5614,7 +6007,7 @@ msgctxt "action"
msgid "Send Email"
msgstr ""
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr ""
@@ -5629,8 +6022,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr ""
@@ -5643,8 +6036,8 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5656,7 +6049,7 @@ msgstr ""
msgid "Server address"
msgstr ""
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr ""
@@ -5664,15 +6057,15 @@ msgstr ""
msgid "Set new password"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr ""
@@ -5680,7 +6073,7 @@ msgstr ""
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr ""
@@ -5693,24 +6086,24 @@ msgid "Sets Bluesky username"
msgstr ""
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr ""
+#~ msgid "Sets color theme to dark"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr ""
+#~ msgid "Sets color theme to light"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr ""
+#~ msgid "Sets color theme to system setting"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5728,11 +6121,11 @@ msgstr ""
msgid "Sets image aspect ratio to wide"
msgstr ""
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr ""
@@ -5745,14 +6138,14 @@ msgid "Sexually Suggestive"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr ""
@@ -5770,8 +6163,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr ""
@@ -5782,7 +6175,7 @@ msgstr ""
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5800,7 +6193,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5812,7 +6205,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5823,7 +6216,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr ""
@@ -5835,8 +6228,9 @@ msgstr ""
msgid "Show alt text"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr ""
@@ -5857,19 +6251,23 @@ msgstr ""
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -5877,11 +6275,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr ""
@@ -5897,7 +6295,7 @@ msgstr ""
#~ msgid "Show re-posts in Following feed"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr ""
@@ -5917,7 +6315,12 @@ msgstr ""
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr ""
@@ -5983,11 +6386,15 @@ msgstr ""
msgid "Sign into Bluesky or create a new account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr ""
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6009,7 +6416,7 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr ""
@@ -6018,21 +6425,25 @@ msgstr ""
msgid "Signed in as @{0}"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr ""
@@ -6041,12 +6452,11 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -6069,13 +6479,13 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr ""
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr ""
@@ -6092,7 +6502,11 @@ msgstr ""
#~ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6130,17 +6544,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6156,7 +6570,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6164,27 +6578,27 @@ msgstr ""
#~ msgid "Step"
#~ msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Submit"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr ""
@@ -6205,11 +6619,11 @@ msgstr ""
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6217,8 +6631,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr ""
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr ""
@@ -6226,7 +6639,7 @@ msgstr ""
msgid "Suggestive"
msgstr ""
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6241,28 +6654,33 @@ msgstr ""
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr ""
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr ""
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
+#~ msgid "tag"
+#~ msgstr ""
+
+#: src/components/TagMenu/index.tsx:89
+msgid "Tag menu: {displayTag}"
msgstr ""
-#: src/components/TagMenu/index.tsx:78
-msgid "Tag menu: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
msgstr ""
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
@@ -6273,11 +6691,19 @@ msgstr ""
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr ""
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6302,11 +6728,11 @@ msgstr ""
msgid "Terms"
msgstr ""
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr ""
@@ -6318,16 +6744,20 @@ msgid "Terms used violate community standards"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
+#~ msgid "text"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr ""
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr ""
@@ -6335,19 +6765,23 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6357,6 +6791,15 @@ msgstr ""
#~ msgid "the author"
#~ msgstr ""
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr ""
@@ -6365,12 +6808,16 @@ msgstr ""
msgid "The Copyright Policy has been moved to <0/>"
msgstr ""
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6378,11 +6825,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr ""
@@ -6390,8 +6837,8 @@ msgstr ""
msgid "The following steps will help customize your Bluesky experience."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr ""
@@ -6399,7 +6846,11 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6444,24 +6895,24 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -6469,13 +6920,13 @@ msgstr ""
msgid "There was an issue fetching the list. Tap here to try again."
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr ""
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
@@ -6501,16 +6952,19 @@ msgstr ""
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr ""
@@ -6523,11 +6977,11 @@ msgstr ""
#~ msgid "These are popular accounts you might like:"
#~ msgstr ""
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr ""
@@ -6536,7 +6990,11 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
@@ -6563,8 +7021,8 @@ msgstr ""
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr ""
@@ -6596,7 +7054,7 @@ msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6616,11 +7074,11 @@ msgstr ""
#~ msgid "This label was applied by {0}."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -6628,7 +7086,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -6640,7 +7098,11 @@ msgstr ""
msgid "This link is taking you to the following website:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr ""
@@ -6652,23 +7114,35 @@ msgstr ""
msgid "This name is already in use"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr ""
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
@@ -6685,8 +7159,8 @@ msgstr ""
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr ""
@@ -6694,11 +7168,11 @@ msgstr ""
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr ""
@@ -6714,28 +7188,40 @@ msgstr ""
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr ""
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr ""
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr ""
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr ""
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr ""
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr ""
@@ -6752,14 +7238,14 @@ msgid "To whom would you like to send this report?"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr ""
+#~ msgid "Toggle between muted word options."
+#~ msgstr ""
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr ""
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -6774,10 +7260,10 @@ msgstr ""
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr ""
@@ -6790,7 +7276,7 @@ msgstr ""
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr ""
@@ -6802,11 +7288,11 @@ msgstr ""
msgid "Type:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr ""
@@ -6814,12 +7300,12 @@ msgstr ""
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6830,7 +7316,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr ""
@@ -6854,9 +7340,9 @@ msgstr ""
msgid "Unblock Account?"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr ""
@@ -6866,8 +7352,8 @@ msgid "Unfollow"
msgstr ""
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr ""
+#~ msgid "Unfollow"
+#~ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6886,12 +7372,14 @@ msgstr ""
msgid "Unlike this feed"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr ""
@@ -6900,7 +7388,7 @@ msgstr ""
msgid "Unmute Account"
msgstr ""
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr ""
@@ -6912,13 +7400,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr ""
@@ -6926,11 +7422,11 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -6938,10 +7434,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -6951,7 +7456,7 @@ msgstr ""
msgid "Unwanted Sexual Content"
msgstr ""
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr ""
@@ -6959,6 +7464,14 @@ msgstr ""
msgid "Update to {handle}"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr ""
@@ -6971,20 +7484,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7032,12 +7545,12 @@ msgstr ""
msgid "Used by:"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr ""
@@ -7045,30 +7558,28 @@ msgstr ""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr ""
@@ -7080,7 +7591,7 @@ msgstr ""
msgid "User list updated"
msgstr ""
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr ""
@@ -7088,12 +7599,16 @@ msgstr ""
msgid "Username or email address"
msgstr ""
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr ""
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr ""
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
@@ -7103,7 +7618,7 @@ msgstr ""
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr ""
@@ -7123,15 +7638,15 @@ msgstr ""
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr ""
@@ -7152,31 +7667,44 @@ msgstr ""
#~ msgid "Version {0}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr ""
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr ""
@@ -7189,7 +7717,7 @@ msgstr ""
msgid "View details for reporting a copyright violation"
msgstr ""
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr ""
@@ -7200,12 +7728,12 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr ""
@@ -7217,11 +7745,23 @@ msgstr ""
msgid "View users who like this feed"
msgstr ""
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7253,7 +7793,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr ""
@@ -7262,8 +7802,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr ""
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr ""
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7273,11 +7813,11 @@ msgstr ""
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr ""
@@ -7285,7 +7825,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -7293,15 +7833,15 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr ""
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr ""
@@ -7309,11 +7849,11 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -7338,7 +7878,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr ""
@@ -7348,7 +7888,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr ""
@@ -7360,22 +7900,26 @@ msgstr ""
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr ""
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr ""
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7419,12 +7963,12 @@ msgstr ""
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr ""
@@ -7434,10 +7978,10 @@ msgid "Writers"
msgstr ""
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7448,10 +7992,18 @@ msgstr ""
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7460,7 +8012,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7526,11 +8079,11 @@ msgstr ""
#~ msgid "You don't have any saved feeds!"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr ""
@@ -7538,9 +8091,9 @@ msgstr ""
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr ""
@@ -7551,20 +8104,20 @@ msgstr ""
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr ""
@@ -7572,12 +8125,12 @@ msgstr ""
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr ""
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr ""
@@ -7605,27 +8158,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr ""
@@ -7645,7 +8211,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -7653,11 +8219,11 @@ msgstr ""
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -7677,23 +8243,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7712,12 +8278,12 @@ msgstr ""
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
@@ -7725,7 +8291,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr ""
@@ -7741,6 +8307,10 @@ msgstr ""
msgid "Your birth date"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -7754,7 +8324,7 @@ msgstr ""
#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7768,7 +8338,7 @@ msgstr ""
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr ""
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7776,7 +8346,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr ""
@@ -7784,7 +8354,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr ""
@@ -7792,15 +8362,15 @@ msgstr ""
msgid "Your password has been changed successfully!"
msgstr ""
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr ""
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr ""
@@ -7808,7 +8378,7 @@ msgstr ""
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr ""
@@ -7816,6 +8386,6 @@ msgstr ""
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr ""
diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po
index 4fabbb41e5..86b8097fcb 100644
--- a/src/locale/locales/es/messages.po
+++ b/src/locale/locales/es/messages.po
@@ -21,7 +21,8 @@ msgstr ""
msgid "(no email)"
msgstr "(sin correo)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -41,7 +42,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr ""
@@ -59,16 +60,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -76,23 +77,37 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -100,7 +115,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -136,7 +151,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -163,7 +178,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} sin leer"
@@ -176,12 +191,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> miembros"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> miembros"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -201,11 +216,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -221,6 +236,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr "<0>{followers} 0><1>seguidores1>"
@@ -242,15 +261,27 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Nombre de usuario inválido"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Confirmación 2FA"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr ""
@@ -260,16 +291,16 @@ msgid "Access profile and other navigation links"
msgstr ""
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Accesibilidad"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Ajustes de accesibilidad"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Ajustes de accesibilidad"
@@ -278,8 +309,8 @@ msgstr "Ajustes de accesibilidad"
#~ msgstr "cuenta"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Cuenta"
@@ -295,20 +326,20 @@ msgstr "Cuenta bloqueada"
msgid "Account muted"
msgstr "Cuenta muteada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Cuenta muteada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Cuenta muteada por lista"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Opciones de cuenta"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Cuenta elimada de acceso rápido"
@@ -325,10 +356,10 @@ msgstr "Has dejado de seguir a esta cuenta"
msgid "Account unmuted"
msgstr "Cuenta demuteada"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Añadir"
@@ -344,14 +375,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Añadir advertencia de contenido"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Añadir cuenta a esta lista"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Añadir cuenta"
@@ -374,11 +405,11 @@ msgstr "Añadir texto alternativo"
msgid "Add App Password"
msgstr "Añadir contraseña de app"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Añadir palabras silenciadas y etiquetas"
@@ -402,7 +433,7 @@ msgstr ""
msgid "Add the following DNS record to your domain:"
msgstr "Añade el siguiente registro DNS a tu dominio:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -411,29 +442,30 @@ msgstr ""
msgid "Add to Lists"
msgstr "Añadir a listas"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Añadir a mis feeds"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Añadido a lista"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Añadido a mis feeds"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Ajusta la cantidad de me gusta que una respuesta debe tener para aparecer en tu feed."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Ajusta la cantidad de me gusta que una respuesta debe tener para aparecer en tu feed."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Contenido adulto"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -441,20 +473,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr "El contenido adulto esta desactivado."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Avanzado"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Todos tus feeds guardados, en un solo lugar."
@@ -473,6 +505,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -490,7 +530,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Texto alternativo"
@@ -511,14 +551,27 @@ msgstr "Un código de verificación ha sido enviado a {0}. Ingresa ese código a
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Un código de verificación ha sido enviado a tu dirección anterior, {0}. Ingresa ese código a continuación."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Ocurrió un error"
+#~ msgid "An error occured"
+#~ msgstr "Ocurrió un error"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -532,10 +585,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr "Ocurrió un error al intentar eliminar el mensaje. Intenta de nuevo."
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema no presente en estas opciones"
@@ -550,21 +608,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Ocurrió un problema. Intenta de nuevo."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "Ocurrió un error desconocido"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "y"
@@ -581,6 +643,10 @@ msgstr "GIF animado"
msgid "Anti-Social Behavior"
msgstr "Comportamiento antisocial"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Idioma de interfaz"
@@ -597,26 +663,26 @@ msgstr "El nombre de una contraseña de app sólo puede contener letras, número
msgid "App Password names must be at least 4 characters long."
msgstr "El nombre de una contraseña de app deben tener al menos 4 caracteres."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Ajustes de contraseñas de app"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Contraseñas de la app"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Apelar"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Apelar la etiqueta de \"{0}\""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Apelación enviada"
@@ -632,10 +698,19 @@ msgstr "Apelación enviada"
msgid "Appeal this decision"
msgstr ""
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Aparencia"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -657,7 +732,7 @@ msgstr "¿Seguro que quieres eliminar la contraseña de app \"{name}\"?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -669,19 +744,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "¿Seguro que quieres eliminar {0} de tus feeds?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "¿Seguro que quieres descartar este borrador?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "¿Estás seguro?"
@@ -698,13 +773,13 @@ msgstr "Arte"
msgid "Artistic or non-erotic nudity."
msgstr "Desnudez artística o no erótica."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Al menos 3 caracteres"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -717,8 +792,8 @@ msgstr "Al menos 3 caracteres"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Atrás"
@@ -726,7 +801,7 @@ msgstr "Atrás"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Basado en tus intereses en {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "General"
@@ -734,7 +809,7 @@ msgstr "General"
msgid "Birthday"
msgstr "Cumpleaños"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Cumpleaños:"
@@ -757,28 +832,27 @@ msgstr "Bloquear cuenta"
msgid "Block Account?"
msgstr "¿Bloquear cuenta?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Bloquear cuentas"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Bloquear lista"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "¿Bloquear estas cuentas?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Bloqueado"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Cuentas bloqueadas"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Cuentas bloqueadas"
@@ -791,7 +865,7 @@ msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera. No verás su contenido y no podrán ver el tuyo."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Post bloqueado."
@@ -799,7 +873,7 @@ msgstr "Post bloqueado."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "El bloqueo es público. Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera."
@@ -807,7 +881,7 @@ msgstr "El bloqueo es público. Si bloqueas a una cuenta no podrán responder en
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta, pero evitará que respondan en tus hilos, te mencionen o interactúen contigo de ninguna manera."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -828,7 +902,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky no mostrará tu perfil o posts a usuarios que no hayan iniciado sesión. Es posible que otras apps no respeten esta solicitud. Esto no hace que tu cuenta sea privada."
@@ -845,21 +919,23 @@ msgstr ""
msgid "Books"
msgstr "Libros"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -868,11 +944,11 @@ msgstr ""
msgid "Browse other feeds"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Negocios"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "por —"
@@ -884,15 +960,15 @@ msgstr "By {0}"
#~ msgid "by @{0}"
#~ msgstr "by @{0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "by <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Al crear una cuenta, aceptas nuestros {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "por ti"
@@ -904,13 +980,13 @@ msgstr "Cámara"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Sólo puede contener letras, números, espacios, guiones y guiones bajos. Debe tener al menos 4 caracteres, pero no más de 32."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -926,9 +1002,8 @@ msgstr "Sólo puede contener letras, números, espacios, guiones y guiones bajos
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Cancelar"
@@ -956,7 +1031,7 @@ msgstr "Cancelar recorte de imagen"
msgid "Cancel profile editing"
msgstr "Cancelar edición de perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Cancelar citación"
@@ -965,7 +1040,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Cancelar búsqueda"
@@ -977,17 +1051,17 @@ msgstr ""
msgid "Change"
msgstr "Cambiar"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Cambiar"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Cambiar nombre de usuario"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Cambiar nombre de usuario"
@@ -995,12 +1069,12 @@ msgstr "Cambiar nombre de usuario"
msgid "Change my email"
msgstr "Cambiar mi correo electrónico"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Cambiar contraseña"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Cambiar contraseña"
@@ -1012,7 +1086,7 @@ msgstr "Cambiar idioma del post a {0}"
msgid "Change Your Email"
msgstr "Cambiar correo electrónico"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1024,14 +1098,14 @@ msgstr "Chat muteado"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Ajustes de chat"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1056,15 +1130,15 @@ msgstr "Te enviamos un código de verificación a tu correo. Introducelo aquí:"
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Elige \"Todos\" o \"Nadie\""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1072,7 +1146,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1080,7 +1154,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Elige proveedor"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Tu eliges los algoritmos que usar en tus feed."
@@ -1090,8 +1164,8 @@ msgstr "Elige este color como tu avatar"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1102,18 +1176,18 @@ msgid "Choose your password"
msgstr "Elige tu contraseña"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Borrar todos los datos de almacenamiento heredados"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Borrar todos los datos de almacenamiento heredados"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Borrar todos los datos de almacenamiento heredados (reiniciar después de esto)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Borrar todos los datos de almacenamiento heredados (reiniciar después de esto)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Borrar todos los datos de almacenamiento"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)"
@@ -1123,10 +1197,10 @@ msgid "Clear search query"
msgstr "Borrar consulta de búsqueda"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr ""
+#~ msgid "Clears all legacy storage data"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr ""
@@ -1146,10 +1220,18 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr "Has clic aquí para agregar uno."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Has clic aquí para abrir el menu de {tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1163,12 +1245,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1189,7 +1271,7 @@ msgid "Close bottom drawer"
msgstr "Cierra el cajón inferior"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr ""
@@ -1213,8 +1295,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr "Cerrar el pie de página de navegación"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr ""
@@ -1226,7 +1308,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -1234,11 +1316,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr ""
@@ -1252,27 +1334,31 @@ msgstr ""
msgid "Comics"
msgstr ""
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Directrices de la comunidad"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Redactar la respuesta"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr ""
@@ -1308,11 +1394,11 @@ msgstr "Confirmar la configuración del idioma del contenido"
msgid "Confirm delete account"
msgstr "Confirmar eliminación de cuenta"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr ""
@@ -1330,7 +1416,8 @@ msgstr "Código de confirmación"
msgid "Connecting..."
msgstr "Conectando..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr ""
@@ -1342,24 +1429,24 @@ msgstr ""
msgid "Content Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr ""
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Idiomas de contenido"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Advertencia de contenido"
@@ -1371,7 +1458,7 @@ msgstr "Advertencias de contenido"
msgid "Context menu backdrop, click to close the menu."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Continuar"
@@ -1384,7 +1471,7 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1411,7 +1498,7 @@ msgstr ""
msgid "Copied"
msgstr "Copiado"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr ""
@@ -1419,8 +1506,8 @@ msgstr ""
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr ""
@@ -1454,12 +1541,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Copia el enlace a la lista"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Copia el enlace a la post"
@@ -1468,8 +1555,8 @@ msgstr "Copia el enlace a la post"
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Copiar el texto de la post"
@@ -1477,14 +1564,14 @@ msgstr "Copiar el texto de la post"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Política de derechos de autor"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1494,7 +1581,7 @@ msgstr "No se pudo salir de este chat"
msgid "Could not load feed"
msgstr "No se pudo cargar este feed"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "No se pudo cargar esta lista"
@@ -1519,7 +1606,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Crear una cuenta nueva"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr ""
@@ -1529,7 +1616,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1537,7 +1624,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Crear una cuenta"
@@ -1589,42 +1676,54 @@ msgstr ""
msgid "Custom domain"
msgstr "Dominio personalizado"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr ""
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Preferencias sobre medios externos."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr ""
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr ""
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr ""
+#: src/view/screens/Settings/index.tsx:473
+#~ msgid "Dark Theme"
+#~ msgstr ""
+
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr ""
@@ -1633,16 +1732,16 @@ msgid "Debug panel"
msgstr ""
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr ""
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Borrar la cuenta"
@@ -1662,8 +1761,8 @@ msgstr "Borrar la contraseña de la app"
msgid "Delete app password?"
msgstr ""
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1671,7 +1770,7 @@ msgstr ""
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Borrar la lista"
@@ -1687,41 +1786,41 @@ msgstr ""
msgid "Delete my account"
msgstr "Borrar mi cuenta"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Borrar una post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "¿Borrar esta post?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Se borró la post."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1736,11 +1835,25 @@ msgstr "Descripción"
msgid "Descriptive alt text"
msgstr ""
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "¿Quieres decir algo?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr ""
@@ -1748,7 +1861,7 @@ msgstr ""
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "No reproducir GIFs automáticamente"
@@ -1756,29 +1869,33 @@ msgstr "No reproducir GIFs automáticamente"
msgid "Disable Email 2FA"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr ""
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Descartar"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr ""
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados"
@@ -1791,19 +1908,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr ""
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr ""
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1819,11 +1944,15 @@ msgstr "Mostrar el nombre"
msgid "DNS Panel"
msgstr "Con panel de DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr ""
@@ -1837,7 +1966,6 @@ msgstr "¡Dominio verificado!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1856,8 +1984,8 @@ msgstr "Listo"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr ""
@@ -1866,7 +1994,7 @@ msgstr ""
msgid "Done{extraText}"
msgstr "Listo{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -1883,6 +2011,10 @@ msgstr ""
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr ""
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "p. ej. alice"
@@ -1923,11 +2055,11 @@ msgstr "p. ej. Usuarios que constantemente responden con publicidad."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Cada código funciona una vez. Recibirás más códigos de invitación periódicamente."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -1936,12 +2068,12 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -1950,7 +2082,12 @@ msgstr ""
msgid "Edit image"
msgstr "Editar la imagen"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Editar los detalles de la lista"
@@ -1958,10 +2095,10 @@ msgstr "Editar los detalles de la lista"
msgid "Edit Moderation List"
msgstr ""
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Editar mis noticias"
@@ -1969,10 +2106,15 @@ msgstr "Editar mis noticias"
msgid "Edit my profile"
msgstr "Editar mi perfil"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1988,7 +2130,7 @@ msgstr "Editar el perfil"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Editar mis noticias guardadas"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -1996,7 +2138,7 @@ msgstr ""
msgid "Edit User List"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2008,7 +2150,7 @@ msgstr ""
msgid "Edit your profile description"
msgstr ""
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2018,8 +2160,8 @@ msgid "Education"
msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2047,7 +2189,7 @@ msgstr "Correo electrónico actualizado"
msgid "Email verified"
msgstr ""
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Correo electrónico:"
@@ -2056,8 +2198,8 @@ msgid "Embed HTML code"
msgstr ""
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr ""
@@ -2069,7 +2211,7 @@ msgstr ""
msgid "Enable {0} only"
msgstr ""
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr ""
@@ -2087,7 +2229,7 @@ msgstr ""
msgid "Enable external media"
msgstr ""
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Reproducir multimedia de"
@@ -2096,9 +2238,13 @@ msgstr "Reproducir multimedia de"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Activa esta opción para ver sólo las respuestas de las personas a las que sigues."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Activa esta opción para ver sólo las respuestas de las personas a las que sigues."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2106,11 +2252,11 @@ msgstr ""
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Fin de noticias"
@@ -2130,8 +2276,8 @@ msgstr ""
msgid "Enter a password"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr ""
@@ -2176,25 +2322,27 @@ msgstr "Introduce tu nombre de usuario y contraseña"
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Error:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Todos"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2210,6 +2358,14 @@ msgstr ""
msgid "Excessive or unwanted messages"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr ""
@@ -2227,7 +2383,6 @@ msgid "Exits image view"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr ""
@@ -2235,7 +2390,7 @@ msgstr ""
msgid "Expand alt text"
msgstr "Expandir el texto alt"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2248,6 +2403,14 @@ msgstr ""
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr ""
@@ -2256,12 +2419,12 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr ""
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr ""
@@ -2271,17 +2434,17 @@ msgid "External Media"
msgstr "Medios externos"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita ningún tipo de información hasta que presiones el botón de \"play\"."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Medios externos"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Medios externos"
@@ -2290,8 +2453,8 @@ msgstr "Medios externos"
msgid "Failed to create app password."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2303,16 +2466,16 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2329,12 +2492,12 @@ msgstr ""
#~ msgid "Failed to load past messages."
#~ msgstr ""
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2354,16 +2517,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2372,12 +2535,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr ""
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr ""
@@ -2390,23 +2553,23 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Comentarios"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Feeds"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Las noticias son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0/> para más información."
@@ -2414,7 +2577,7 @@ msgstr "Las noticias son algoritmos personalizados que los usuarios construyen c
#~ msgid "Feeds can be topical as well!"
#~ msgstr ""
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2430,7 +2593,7 @@ msgstr ""
msgid "Filter from feeds"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr ""
@@ -2448,7 +2611,7 @@ msgstr ""
msgid "Find posts and users on Bluesky"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr ""
@@ -2456,7 +2619,7 @@ msgstr ""
msgid "Fine-tune the discussion threads."
msgstr "Ajusta los hilos de discusión."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2468,7 +2631,7 @@ msgstr ""
msgid "Fitness"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr ""
@@ -2482,12 +2645,11 @@ msgid "Flip vertically"
msgstr ""
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Seguir"
@@ -2501,7 +2663,7 @@ msgstr "Seguir"
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2514,8 +2676,8 @@ msgstr ""
msgid "Follow Account"
msgstr "Seguir cuenta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2527,7 +2689,7 @@ msgstr ""
msgid "Follow Back"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2559,19 +2721,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Usuarios seguidos"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Solo usuarios seguidos"
+#~ msgid "Followed users only"
+#~ msgstr "Solo usuarios seguidos"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "ha comenzado a seguirte"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2580,7 +2742,7 @@ msgstr ""
msgid "Followers"
msgstr "Seguidores"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2590,34 +2752,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Siguiendo"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Siguiendo {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Feed de Siguiendo"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Feed de Siguiendo"
@@ -2629,7 +2791,7 @@ msgstr ""
msgid "Follows you"
msgstr "Te sigue"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Te sigue"
@@ -2646,6 +2808,10 @@ msgstr "Por razones de seguridad, tendremos que enviarte un código de confirmac
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Por razones de seguridad, no podrás volver a verla de nuevo. Si pierdes esta contraseña, tendrás que generar una nueva."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2667,7 +2833,7 @@ msgstr ""
msgid "From @{sanitizedAuthor}"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
@@ -2680,7 +2846,7 @@ msgstr "Galería"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2709,24 +2875,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr "Violaciones flagrantes de la Ley o de los Términos de servicio"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Volver"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Volver"
@@ -2736,14 +2903,14 @@ msgstr "Volver"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2780,7 +2947,7 @@ msgstr ""
msgid "Graphic Media"
msgstr "Contenido Gráfico"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2788,7 +2955,7 @@ msgstr ""
msgid "Handle"
msgstr "Nombre de usuarioContenido Gráfico"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Vibración"
@@ -2796,7 +2963,7 @@ msgstr "Vibración"
msgid "Harassment, trolling, or intolerance"
msgstr "Acoso, trolling o intolerancia"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Hashtag"
@@ -2804,12 +2971,12 @@ msgstr "Hashtag"
msgid "Hashtag: #{tag}"
msgstr "Hashtag: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Ayuda"
@@ -2833,6 +3000,10 @@ msgstr ""
msgid "Here is your app password."
msgstr "Aquí tienes tu contraseña de la app."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2840,30 +3011,50 @@ msgstr "Aquí tienes tu contraseña de la app."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Ocultar"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Ocultar"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Ocultar post"
+#~ msgid "Hide post"
+#~ msgstr "Ocultar post"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "¿Ocultar este post?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Ocultar lista de usuarios"
@@ -2895,12 +3086,12 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Inicio"
@@ -2933,7 +3124,7 @@ msgstr ""
msgid "I have my own domain"
msgstr "Tengo mi propio dominio"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -2946,15 +3137,15 @@ msgstr ""
msgid "If none are selected, suitable for all ages."
msgstr "Si no se selecciona ninguno, es apto para todas las edades."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -3030,10 +3221,14 @@ msgstr ""
msgid "Input your preferred hosting provider"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr ""
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3043,7 +3238,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr ""
@@ -3059,7 +3254,7 @@ msgstr "Invita a un amigo"
msgid "Invite code"
msgstr "Código de invitación"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "No se acepta el código de invitación. Comprueba que lo has introducido correctamente e inténtalo de nuevo."
@@ -3091,14 +3286,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Tareas"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3135,11 +3330,11 @@ msgstr ""
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr ""
@@ -3147,16 +3342,16 @@ msgstr ""
msgid "Language selection"
msgstr "Escoger el idioma"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Ajustes de Idiomas"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Ajustes de Idiomas"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Idiomas"
@@ -3165,21 +3360,26 @@ msgstr "Idiomas"
msgid "Latest"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Aprender más"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr ""
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Aprender más acerca de esta advertencia"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Más información sobre lo que es público en Bluesky."
@@ -3217,8 +3417,8 @@ msgid "left to go."
msgstr ""
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr ""
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3229,12 +3429,13 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "¡Vamos a restablecer tu contraseña!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr ""
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr ""
@@ -3246,8 +3447,8 @@ msgstr ""
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3257,14 +3458,15 @@ msgid "Like this feed"
msgstr "Dar «me gusta» a esta noticia"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Le ha gustado a"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr ""
@@ -3282,11 +3484,11 @@ msgstr ""
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr ""
@@ -3294,11 +3496,11 @@ msgstr ""
msgid "Likes"
msgstr "Cantidad de «Me gusta»"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr ""
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr ""
@@ -3306,20 +3508,28 @@ msgstr ""
msgid "List Avatar"
msgstr "Avatar de la lista"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr ""
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr ""
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr ""
@@ -3327,20 +3537,20 @@ msgstr ""
msgid "List Name"
msgstr "Nombre de la lista"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr ""
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Listas"
@@ -3364,10 +3574,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Cargar notificaciones nuevas"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Cargar posts nuevos"
@@ -3375,7 +3585,7 @@ msgstr "Cargar posts nuevos"
msgid "Loading..."
msgstr "Cargando..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr ""
@@ -3391,7 +3601,7 @@ msgstr ""
msgid "Log out"
msgstr ""
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Visibilidad de desconexión"
@@ -3431,7 +3641,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "¡Asegúrate de que es aquí a donde pretendes ir!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr ""
@@ -3440,20 +3650,20 @@ msgstr ""
msgid "Mark as read"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Multimedia"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "usuarios mencionados"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Usuarios mencionados"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menú"
@@ -3484,7 +3694,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3499,29 +3709,31 @@ msgstr ""
msgid "Misleading Account"
msgstr ""
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderación"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr ""
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr ""
@@ -3533,20 +3745,24 @@ msgstr ""
msgid "Moderation list updated"
msgstr ""
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Listas de moderación"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Listas de moderación"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr ""
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr ""
@@ -3554,12 +3770,12 @@ msgstr ""
msgid "Moderation tools"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr ""
@@ -3567,7 +3783,7 @@ msgstr ""
msgid "More feeds"
msgstr "Más feeds"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Más opciones"
@@ -3583,11 +3799,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr ""
@@ -3596,11 +3814,11 @@ msgstr ""
msgid "Mute Account"
msgstr "Silenciar la cuenta"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Silenciar las cuentas"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr ""
@@ -3610,14 +3828,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr ""
+#~ msgid "Mute in tags only"
+#~ msgstr ""
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
+#~ msgid "Mute in text & tags"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Silenciar la lista"
@@ -3626,37 +3848,53 @@ msgstr "Silenciar la lista"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "¿Silenciar estas cuentas?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Mutear hilo"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Muteado"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Cuentas muteadas"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Cuentas muteadas"
@@ -3665,7 +3903,7 @@ msgstr "Cuentas muteadas"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Al mutear a una cuenta no verás sus posts en tu feed o notificaciones. Nadie puede ver a quien muteas."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Muteado por \"{0}\""
@@ -3673,7 +3911,7 @@ msgstr "Muteado por \"{0}\""
msgid "Muted words & tags"
msgstr "Palabras y etiquetas muteadas"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Nadie puede ver a quien muteas. Las cuentas muteadas pueden interactuar contigo, pero no verás sus posts en tu feed o notificaciones."
@@ -3682,7 +3920,7 @@ msgstr "Nadie puede ver a quien muteas. Las cuentas muteadas pueden interactuar
msgid "My Birthday"
msgstr "Mi cumpleaños"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Mis feeds"
@@ -3690,11 +3928,11 @@ msgstr "Mis feeds"
msgid "My Profile"
msgstr "Mi perfil"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Mis feeds guardados"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Mis feeds guardados"
@@ -3719,7 +3957,7 @@ msgstr ""
msgid "Nature"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3733,7 +3971,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr ""
@@ -3741,7 +3979,7 @@ msgstr ""
msgid "Need to report a copyright violation?"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr ""
@@ -3749,7 +3987,7 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr ""
@@ -3785,12 +4023,12 @@ msgctxt "action"
msgid "New post"
msgstr ""
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Nuevo post"
@@ -3824,10 +4062,10 @@ msgstr "Noticias"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3838,17 +4076,17 @@ msgstr "Siguiente"
msgid "Next image"
msgstr "Imagen nueva"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "No"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Sin descripción"
@@ -3865,12 +4103,12 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr ""
@@ -3882,7 +4120,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr ""
@@ -3893,6 +4131,10 @@ msgstr ""
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -3906,11 +4148,11 @@ msgstr "Sin resultados"
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr ""
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "No se han encontrado resultados para \"{query}\""
@@ -3935,13 +4177,13 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Nadie"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -3960,7 +4202,7 @@ msgstr ""
#~ msgid "Not Applicable."
#~ msgstr "No aplicable."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr ""
@@ -3971,12 +4213,12 @@ msgid "Not right now"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr ""
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración sólo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky, y es posible que otras aplicaciones no respeten esta configuración. Otras aplicaciones y sitios web pueden seguir mostrando tu contenido a los usuarios que hayan cerrado sesión."
@@ -3988,7 +4230,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4005,14 +4247,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Notificaciones"
@@ -4041,12 +4283,12 @@ msgid "Off"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "¡Qué problema!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr ""
@@ -4070,7 +4312,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr ""
@@ -4078,7 +4320,7 @@ msgstr ""
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Falta el texto alternativo en una o varias imágenes."
@@ -4087,14 +4329,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Solo {0} puede responder."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Solo {0} puede responder."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
@@ -4102,7 +4344,7 @@ msgstr ""
msgid "Oops, something went wrong!"
msgstr ""
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4111,11 +4353,11 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4128,8 +4370,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr ""
@@ -4137,7 +4379,7 @@ msgstr ""
msgid "Open feed options menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr ""
@@ -4153,20 +4395,20 @@ msgstr ""
msgid "Open navigation"
msgstr "Abrir navegación"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr ""
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr ""
@@ -4174,11 +4416,11 @@ msgstr ""
msgid "Opens {numItems} options"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr ""
@@ -4190,19 +4432,23 @@ msgstr ""
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr ""
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr ""
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr ""
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Abrir la configuración del idioma que se puede ajustar"
@@ -4210,7 +4456,7 @@ msgstr "Abrir la configuración del idioma que se puede ajustar"
msgid "Opens device photo gallery"
msgstr ""
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr ""
@@ -4232,27 +4478,27 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Abre la lista de códigos de invitación"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr ""
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr ""
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr ""
@@ -4260,7 +4506,7 @@ msgstr ""
msgid "Opens modal for using custom domain"
msgstr "Abre el modal para usar el dominio personalizado"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Abre la configuración de moderación"
@@ -4273,15 +4519,15 @@ msgstr ""
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Abre la pantalla con todas las noticias guardadas"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr ""
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr ""
@@ -4293,21 +4539,21 @@ msgstr ""
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Abre la página del libro de cuentos"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Abre la página de la bitácora del sistema"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Abre las preferencias de hilos"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4320,11 +4566,15 @@ msgid "Option {0} of {numItems}"
msgstr ""
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr ""
@@ -4344,6 +4594,10 @@ msgstr ""
msgid "Other account"
msgstr "Otra cuenta"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Otro..."
@@ -4352,7 +4606,7 @@ msgstr "Otro..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Página no encontrada"
@@ -4381,19 +4635,24 @@ msgid "Password updated!"
msgstr "¡Contraseña actualizada!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr ""
@@ -4423,7 +4682,7 @@ msgid "Pictures meant for adults."
msgstr "Imágenes destinadas a adultos."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr ""
@@ -4435,11 +4694,12 @@ msgstr ""
msgid "Pinned Feeds"
msgstr "Canales de noticias anclados"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr ""
@@ -4456,6 +4716,11 @@ msgstr ""
msgid "Play or pause the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4465,16 +4730,16 @@ msgstr ""
msgid "Plays the GIF"
msgstr ""
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Por favor, elige tu identificador."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Por favor, elige tu contraseña."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr ""
@@ -4490,11 +4755,11 @@ msgstr ""
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Introduce un nombre único para la contraseña de esta app o utiliza una generada aleatoriamente."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr ""
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Introduce tu correo electrónico."
@@ -4507,7 +4772,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Introduce tu contraseña, también:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -4524,7 +4789,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr ""
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse"
@@ -4537,45 +4802,50 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Publicar"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Post por {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Post por {0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Post eliminado"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Post ocultado"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Post ocultado por palabra muteada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Post ocultado por ti"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Lenguaje de la post"
@@ -4584,22 +4854,26 @@ msgstr "Lenguaje de la post"
msgid "Post Languages"
msgstr "Lenguajes de la post"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Publicación no encontrada"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Publicaciones"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
@@ -4622,7 +4896,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr ""
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4642,7 +4916,7 @@ msgstr ""
msgid "Previous image"
msgstr "Imagen previa"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Idioma primario"
@@ -4654,16 +4928,16 @@ msgstr "Priorizar los usuarios a los que sigue"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Privacidad"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Política de privacidad"
@@ -4675,16 +4949,16 @@ msgstr ""
msgid "Processing..."
msgstr "Procesando..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr ""
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Perfil"
@@ -4692,11 +4966,11 @@ msgstr "Perfil"
msgid "Profile updated"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Protege tu cuenta verificando tu correo electrónico."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr ""
@@ -4704,15 +4978,15 @@ msgstr ""
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Listas públicas y compartibles de usuarios para mutear o bloquear en cantidad."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Listas públicas y compartibles que pueden impulsar feeds."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr ""
@@ -4732,10 +5006,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Citar una post"
@@ -4749,6 +5023,39 @@ msgstr "Citar una post"
#~ msgid "Quote Post"
#~ msgstr "Citar una post"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr ""
@@ -4757,10 +5064,27 @@ msgstr ""
msgid "Ratios"
msgstr "Proporciones"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -4769,7 +5093,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr ""
@@ -4785,15 +5109,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Eliminar"
@@ -4801,11 +5126,11 @@ msgstr "Eliminar"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Eliminar la cuenta"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr ""
@@ -4818,8 +5143,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Eliminar el canal de noticias"
@@ -4827,19 +5152,27 @@ msgstr "Eliminar el canal de noticias"
msgid "Remove feed?"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Eliminar de mis canales de noticias"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr ""
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Eliminar la imagen"
@@ -4848,24 +5181,24 @@ msgstr "Eliminar la imagen"
msgid "Remove image preview"
msgstr "Eliminar la vista previa de la imagen"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr ""
@@ -4873,18 +5206,31 @@ msgstr ""
msgid "Remove this feed from your saved feeds"
msgstr ""
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Eliminar de la lista"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr ""
@@ -4892,7 +5238,7 @@ msgstr ""
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -4900,8 +5246,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -4909,7 +5255,7 @@ msgstr ""
msgid "Replies"
msgstr "Respuestas"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -4917,36 +5263,71 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Las respuestas a este hilo están desactivadas"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Las respuestas a este hilo están desactivadas"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Filtros de respuestas"
+#~ msgid "Reply Filters"
+#~ msgstr "Filtros de respuestas"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -4978,7 +5359,7 @@ msgstr ""
msgid "Report feed"
msgstr "Informe del canal de noticias"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Informe de la lista"
@@ -4986,13 +5367,13 @@ msgstr "Informe de la lista"
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Informe de la post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5026,47 +5407,48 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Volver a publicar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Volver a publicar o citar post"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Vuelto a publicar por"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Vuelto a publicar por {0}"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr ""
@@ -5080,7 +5462,7 @@ msgstr "Solicitar un cambio"
msgid "Request Code"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Requerir texto alternativo antes de publicar"
@@ -5105,8 +5487,8 @@ msgstr "Código de reseteo"
msgid "Reset Code"
msgstr "Código de reseteo"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Restablecer el estado de incorporación"
@@ -5114,16 +5496,16 @@ msgstr "Restablecer el estado de incorporación"
msgid "Reset password"
msgstr "Restablecer la contraseña"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Restablecer el estado de preferencias"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Restablece el estado de incorporación"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Restablecer el estado de preferencias"
@@ -5137,17 +5519,19 @@ msgid "Retries the last action, which errored out"
msgstr ""
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Intentar de nuevo"
@@ -5155,9 +5539,10 @@ msgstr "Intentar de nuevo"
#~ msgid "Retry."
#~ msgstr "Intentar de nuevo"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr ""
@@ -5171,7 +5556,8 @@ msgid "Returns to previous page"
msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5221,7 +5607,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr "Guardar a mis feeds"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Feeds Guardados"
@@ -5234,7 +5620,7 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr ""
@@ -5252,8 +5638,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5262,13 +5648,12 @@ msgstr ""
msgid "Science"
msgstr "Ciencia"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr ""
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5277,14 +5662,12 @@ msgstr ""
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Buscar"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr ""
@@ -5292,11 +5675,11 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr ""
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr ""
@@ -5308,8 +5691,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Buscar usuarios"
@@ -5333,28 +5714,32 @@ msgstr ""
msgid "Security Step Required"
msgstr "Se requiere un paso de seguridad"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr ""
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr ""
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr ""
@@ -5390,7 +5775,11 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr ""
@@ -5410,7 +5799,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr ""
@@ -5426,11 +5815,15 @@ msgstr "Elige que proveedor de servicio quieres usar."
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Elige lo que quieres ver y nosotros nos encargaremos del resto."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Elige en que idioma deseas que estén los posts de tus feeds. Si ninguno es seleccionado, se mostraran en todos los idiomas."
@@ -5442,11 +5835,11 @@ msgstr "Elige en que idioma deseas que esté la interfaz de Bluesky."
msgid "Select your date of birth"
msgstr "Elige tu fecha de nacimiento"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Elige en que idioma deseas traducir los posts de tu feed."
@@ -5476,7 +5869,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar correo"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Enviar comentarios"
@@ -5491,8 +5884,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Enviar reporte"
@@ -5505,8 +5898,8 @@ msgstr "Enviar reporte a {0}"
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5518,7 +5911,7 @@ msgstr ""
msgid "Server address"
msgstr "Dirección del servidor"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Establecer cumpleaños"
@@ -5526,15 +5919,15 @@ msgstr "Establecer cumpleaños"
msgid "Set new password"
msgstr "Establecer la contraseña nueva"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Establece este ajuste en \"No\" para ocultar todas las publicaciones de citas de tus noticias. Las repeticiones seguirán siendo visibles."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Establece este ajuste en \"No\" para ocultar todas las respuestas de tus noticias."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Establece este ajuste en \"No\" para ocultar todas las veces que se han vuelto a publicar desde tus noticias."
@@ -5542,7 +5935,7 @@ msgstr "Establece este ajuste en \"No\" para ocultar todas las veces que se han
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Establece este ajuste en \"Sí\" para mostrar las respuestas en una vista de hilos. Se trata de una función experimental."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr ""
@@ -5555,24 +5948,24 @@ msgid "Sets Bluesky username"
msgstr ""
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr ""
+#~ msgid "Sets color theme to dark"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr ""
+#~ msgid "Sets color theme to light"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr ""
+#~ msgid "Sets color theme to system setting"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5590,11 +5983,11 @@ msgstr ""
msgid "Sets image aspect ratio to wide"
msgstr ""
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Ajustes"
@@ -5607,14 +6000,14 @@ msgid "Sexually Suggestive"
msgstr "Sexualmente sugestivo"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Compartir"
@@ -5632,8 +6025,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr ""
@@ -5644,7 +6037,7 @@ msgstr "Compartir feed"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5662,7 +6055,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5674,7 +6067,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5685,7 +6078,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Ver"
@@ -5697,8 +6090,9 @@ msgstr "Ver"
msgid "Show alt text"
msgstr "Ver texto alternativo"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Ver de todas maneras"
@@ -5719,19 +6113,23 @@ msgstr ""
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Ver más"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -5739,11 +6137,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Mostrar publicaciones de mis noticias"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Mostrar publicaciones de citas"
@@ -5759,7 +6157,7 @@ msgstr "Mostrar publicaciones de citas"
#~ msgid "Show re-posts in Following feed"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Mostrar respuestas"
@@ -5779,7 +6177,12 @@ msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el res
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Mostrar reposts"
@@ -5845,11 +6248,15 @@ msgstr "¡Inicia sesión o crea una cuenta para unirte a la conversación!"
msgid "Sign into Bluesky or create a new account"
msgstr "Inicia sesión a Bluesky o crea una nueva cuenta"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Cerrar sesión"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5871,7 +6278,7 @@ msgstr "Inicia sesión o crea una cuenta para unirte a la conversación"
msgid "Sign-in Required"
msgstr "Se requiere iniciar sesión"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Sesión iniciada como"
@@ -5880,21 +6287,25 @@ msgstr "Sesión iniciada como"
msgid "Signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Saltar"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Saltar"
@@ -5903,12 +6314,11 @@ msgstr "Saltar"
msgid "Software Dev"
msgstr "Programación"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -5931,13 +6341,13 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr "Ocurrió un error. Intenta de nuevo."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Lo sentimos, tu sesión ha expirado. Inicia sesión de nuevo."
@@ -5954,7 +6364,11 @@ msgstr "Ordenar respuestas al mismo post por:"
#~ msgstr "Fuente:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -5992,17 +6406,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6014,7 +6428,7 @@ msgstr ""
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr ""
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6022,27 +6436,27 @@ msgstr ""
#~ msgid "Step"
#~ msgstr "Paso"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Paso {0} de {1}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Libro de cuentos"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Enviar"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Suscribirse"
@@ -6063,11 +6477,11 @@ msgstr ""
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Suscribirse a esta lista"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6075,8 +6489,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Usuarios sugeridos a seguir"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr ""
@@ -6084,7 +6497,7 @@ msgstr ""
msgid "Suggestive"
msgstr ""
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6099,28 +6512,33 @@ msgstr "Cambiar a otra cuenta"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr ""
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr ""
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Bitácora del sistema"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
+#~ msgid "tag"
+#~ msgstr ""
+
+#: src/components/TagMenu/index.tsx:89
+msgid "Tag menu: {displayTag}"
msgstr ""
-#: src/components/TagMenu/index.tsx:78
-msgid "Tag menu: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
msgstr ""
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
@@ -6131,11 +6549,19 @@ msgstr "Alto"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr ""
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6160,11 +6586,11 @@ msgstr ""
msgid "Terms"
msgstr "Condiciones"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Condiciones de servicio"
@@ -6176,16 +6602,20 @@ msgid "Terms used violate community standards"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
+#~ msgid "text"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Campo de introducción de texto"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr ""
@@ -6193,19 +6623,23 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Este nombre de usuario ya está en uso."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6215,6 +6649,15 @@ msgstr "La cuenta podrá interactuar contigo tras desbloquearla."
#~ msgid "the author"
#~ msgstr ""
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Las Directrices Comunitarias se ha trasladado a <0/>"
@@ -6223,12 +6666,16 @@ msgstr "Las Directrices Comunitarias se ha trasladado a <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "La Política de derechos de autor se han trasladado a <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6236,11 +6683,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr ""
@@ -6248,8 +6695,8 @@ msgstr ""
msgid "The following steps will help customize your Bluesky experience."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Es posible que se haya borrado el post."
@@ -6257,7 +6704,11 @@ msgstr "Es posible que se haya borrado el post."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La Política de privacidad se ha trasladado a <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6302,24 +6753,24 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -6327,13 +6778,13 @@ msgstr ""
msgid "There was an issue fetching the list. Tap here to try again."
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr ""
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
@@ -6359,16 +6810,19 @@ msgstr ""
msgid "There was an issue! {0}"
msgstr "Ocurrió un problema {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Se ha producido un problema inesperado en la aplicación. Por favor, ¡avísanos si te ha ocurrido esto!"
@@ -6381,11 +6835,11 @@ msgstr ""
#~ msgid "These are popular accounts you might like:"
#~ msgstr ""
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Esta {screenDescription} ha sido marcada:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Esta cuenta ha solicitado que los usuarios inicien sesión para ver su perfil."
@@ -6394,7 +6848,11 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
@@ -6421,8 +6879,8 @@ msgstr ""
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr ""
@@ -6454,7 +6912,7 @@ msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6474,11 +6932,11 @@ msgstr "Esto es importante por si alguna vez necesitas cambiar tu correo electr
#~ msgid "This label was applied by {0}."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -6486,7 +6944,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -6498,7 +6956,11 @@ msgstr ""
msgid "This link is taking you to the following website:"
msgstr "Este enlace te lleva al siguiente sitio web:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr ""
@@ -6510,23 +6972,35 @@ msgstr ""
msgid "This name is already in use"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Esta post ha sido eliminado."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr ""
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
@@ -6543,8 +7017,8 @@ msgstr ""
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr ""
@@ -6552,11 +7026,11 @@ msgstr ""
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr ""
@@ -6572,28 +7046,40 @@ msgstr ""
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Esta advertencia sólo está disponible para las publicaciones con medios adjuntos."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr ""
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Preferencias de hilos"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Preferencias de hilos"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Modo con hilos"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr ""
@@ -6610,14 +7096,14 @@ msgid "To whom would you like to send this report?"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr ""
+#~ msgid "Toggle between muted word options."
+#~ msgstr ""
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Conmutar el menú desplegable"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -6632,10 +7118,10 @@ msgstr "Transformaciones"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Traducir"
@@ -6648,7 +7134,7 @@ msgstr "Intentar de nuevo"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr ""
@@ -6660,11 +7146,11 @@ msgstr "Escribe tu mensaje aquí"
msgid "Type:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Desbloquear lista"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Demutear lista"
@@ -6672,12 +7158,12 @@ msgstr "Demutear lista"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6688,7 +7174,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Desbloquear"
@@ -6712,9 +7198,9 @@ msgstr "Desbloquear Cuenta"
msgid "Unblock Account?"
msgstr "¿Desbloquear Cuenta?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Deshacer repost"
@@ -6724,8 +7210,8 @@ msgid "Unfollow"
msgstr "Dejar de seguir"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Dejar de seguir"
+#~ msgid "Unfollow"
+#~ msgstr "Dejar de seguir"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6744,12 +7230,14 @@ msgstr "Dejar de seguir a esta cuenta"
msgid "Unlike this feed"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Demutear"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Demutear {truncatedTag}"
@@ -6758,7 +7246,7 @@ msgstr "Demutear {truncatedTag}"
msgid "Unmute Account"
msgstr "Demutear Cuenta"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr ""
@@ -6770,13 +7258,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr "Demutear notificaciones"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Demutear hilo"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Desfijar"
@@ -6784,11 +7280,11 @@ msgstr "Desfijar"
msgid "Unpin from home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Desfijar lista de moderación"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -6796,10 +7292,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -6809,7 +7314,7 @@ msgstr ""
msgid "Unwanted Sexual Content"
msgstr "Contenido sexual no deseado"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Actualizar {displayName} en Listas"
@@ -6817,6 +7322,14 @@ msgstr "Actualizar {displayName} en Listas"
msgid "Update to {handle}"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Actualizando..."
@@ -6829,20 +7342,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr "Carga un archivo de texto en:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6890,12 +7403,12 @@ msgstr "Utilízalo para iniciar sesión en la otra app junto a tu nombre de usua
msgid "Used by:"
msgstr "Usado por:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr ""
@@ -6903,30 +7416,28 @@ msgstr ""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr ""
@@ -6938,7 +7449,7 @@ msgstr ""
msgid "User list updated"
msgstr ""
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Listas de usuarios"
@@ -6946,13 +7457,17 @@ msgstr "Listas de usuarios"
msgid "Username or email address"
msgstr "Nombre de usuario o dirección de correo electrónico"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Usuarios"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "usuarios seguidos por <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "usuarios seguidos por <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -6961,7 +7476,7 @@ msgstr "usuarios seguidos por <0/>"
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Usuarios en \"{0}\""
@@ -6981,15 +7496,15 @@ msgstr ""
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Verificar el correo electrónico"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Verificar mi correo electrónico"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Verificar mi correo electrónico"
@@ -7006,31 +7521,44 @@ msgstr ""
msgid "Verify Your Email"
msgstr ""
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Videojuegos"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Ver entrada de depuración"
@@ -7043,7 +7571,7 @@ msgstr ""
msgid "View details for reporting a copyright violation"
msgstr "Ver más detalles sobre cómo reportar una violación de Derechos de Autor"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr ""
@@ -7054,12 +7582,12 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Ver el avatar"
@@ -7071,11 +7599,23 @@ msgstr ""
msgid "View users who like this feed"
msgstr ""
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7107,7 +7647,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Esperemos que la pases bien. Recuerda, Bluesky es:"
@@ -7116,8 +7656,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr ""
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr ""
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7127,11 +7667,11 @@ msgstr ""
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr ""
@@ -7139,7 +7679,7 @@ msgstr ""
msgid "We will let you know when your account is ready."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -7147,15 +7687,15 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "¡Es nuestro placer tenerte aquí!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr ""
@@ -7163,11 +7703,11 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Lo sentimos, pero no se ha podido completar tu búsqueda. Intenta de nuevo en unos minutos."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Lo sentimos. No encontramos la página que buscabas."
@@ -7188,7 +7728,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "¿Cuáles son tus intereses?"
@@ -7198,7 +7738,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "¿Qué hay de nuevo?"
@@ -7210,22 +7750,26 @@ msgstr "¿En qué idioma está este post?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "¿Qué idiomas te gustaría ver en tus feeds?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Quién puede responder"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7269,12 +7813,12 @@ msgstr "Ancho"
msgid "Write a message"
msgstr "Escribe un mensaje"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Redacta un post"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Redacta una respuesta"
@@ -7284,10 +7828,10 @@ msgid "Writers"
msgstr "Escritores"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7298,10 +7842,18 @@ msgstr "Sí"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7310,7 +7862,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7376,11 +7929,11 @@ msgstr "No tienes ninguna feed fijado."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "No tienes ninguna feed guardado"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "No tienes ningún feed guardado"
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Has bloqueado al autor o has sido bloqueado por el autor."
@@ -7388,9 +7941,9 @@ msgstr "Has bloqueado al autor o has sido bloqueado por el autor."
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Has bloqueado a este usuario. No puedes ver su contenido."
@@ -7401,20 +7954,20 @@ msgstr "Has bloqueado a este usuario. No puedes ver su contenido."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Has ingresado un código inválido. Debe lucir algo así XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Has ocultado este post"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Has ocultado este post."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Has muteado a esta cuenta."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Has muteado a esta cuenta"
@@ -7422,12 +7975,12 @@ msgstr "Has muteado a esta cuenta"
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "No tienes feeds."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "No tienes listas."
@@ -7455,27 +8008,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Tienes que tener 13 años o más para poder crear una cuenta."
@@ -7495,7 +8061,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -7503,11 +8069,11 @@ msgstr ""
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -7527,23 +8093,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7562,12 +8128,12 @@ msgstr "Ya estás en cola"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "¡Eso es todo!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
@@ -7575,7 +8141,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "¡Haz llegado al fin de tu feed! Encuentra más cuentas para seguir."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Tu cuenta"
@@ -7591,6 +8157,10 @@ msgstr ""
msgid "Your birth date"
msgstr "Tu fecha de nacimiento"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -7604,7 +8174,7 @@ msgstr "Tu elección será guardada. Puedes cambiar esto en los ajustes luego."
#~ msgstr "Tu feed principal es \"Siguiendo\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7618,7 +8188,7 @@ msgstr "Tu correo electrónico ha sido actualizado pero no verificado. Verifica
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Tu correo electrónico aún no ha sido verificado. Por tu seguridad, recomendamos que lo verifiques."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7626,7 +8196,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "¡Tu feed de Siguiendo esta vacío! Sigue a más usuarios para ver sus posts aquí."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Tu nombre de usuario completo será"
@@ -7634,7 +8204,7 @@ msgstr "Tu nombre de usuario completo será"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Tu nombre de usuario completo será <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Tus palabras muteadas"
@@ -7642,15 +8212,15 @@ msgstr "Tus palabras muteadas"
msgid "Your password has been changed successfully!"
msgstr "Tu contraseña ha sido cambiada exitosamente."
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Post publicado"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Tus posts, a qué le das me gusta y a quién bloqueas son públicos. Nadie puede ver a quien muteas."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Tu perfil"
@@ -7658,7 +8228,7 @@ msgstr "Tu perfil"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Respuesta publicada"
@@ -7666,6 +8236,6 @@ msgstr "Respuesta publicada"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Tu reporte ha sido enviado al servicio de moderación de Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Tu nombre de usuario"
diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po
index fab0d65553..72febd6ce4 100644
--- a/src/locale/locales/fi/messages.po
+++ b/src/locale/locales/fi/messages.po
@@ -21,7 +21,8 @@ msgstr ""
msgid "(no email)"
msgstr "(ei sähköpostiosoitetta)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -41,7 +42,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr ""
@@ -59,16 +60,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -76,23 +77,37 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -100,7 +115,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -136,7 +151,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -163,7 +178,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} lukematonta"
@@ -176,12 +191,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> jäsentä"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> jäsentä"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -201,11 +216,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -221,6 +236,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr ""
@@ -254,15 +273,27 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Virheellinen käyttäjätunnus"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Kaksivaiheisen tunnistautumisen vahvistus"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Siirry navigointilinkkeihin ja asetuksiin"
@@ -272,16 +303,16 @@ msgid "Access profile and other navigation links"
msgstr "Siirry profiiliin ja muihin navigointilinkkeihin"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Saavutettavuus"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Esteettömyysasetukset\""
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Esteettömyysasetukset\""
@@ -290,8 +321,8 @@ msgstr "Esteettömyysasetukset\""
#~ msgstr "käyttäjätili"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Käyttäjätili"
@@ -307,20 +338,20 @@ msgstr "Käyttäjätili seurannassa"
msgid "Account muted"
msgstr "Käyttäjätili hiljennetty"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Käyttäjätili hiljennetty"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Käyttäjätili hiljennetty listalla"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Käyttäjätilin asetukset"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Käyttäjätili poistettu pikalinkeistä"
@@ -337,10 +368,10 @@ msgstr "Käyttäjätilin seuranta lopetettu"
msgid "Account unmuted"
msgstr "Käyttäjätilin hiljennys poistettu"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Lisää"
@@ -356,14 +387,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Lisää sisältövaroitus"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Lisää käyttäjä tähän listaan"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Lisää käyttäjätili"
@@ -386,11 +417,11 @@ msgstr "Lisää ALT-teksti"
msgid "Add App Password"
msgstr "Lisää sovelluksen salasana"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Lisää hiljennetty sana määritettyihin asetuksiin"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Lisää hiljennetyt sanat ja aihetunnisteet"
@@ -414,7 +445,7 @@ msgstr ""
msgid "Add the following DNS record to your domain:"
msgstr "Lisää seuraava DNS-merkintä verkkotunnukseesi:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -423,7 +454,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "Lisää listoihin"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Lisää syötteisiini"
@@ -432,24 +463,25 @@ msgstr "Lisää syötteisiini"
#~ msgstr "Lisätty"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Lisätty listaan"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Lisätty syötteisiini"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Säädä, kuinka monta tykkäystä vastauksen on saatava näkyäkseen syötteessäsi."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Säädä, kuinka monta tykkäystä vastauksen on saatava näkyäkseen syötteessäsi."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Aikuissisältöä"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -457,20 +489,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr "Aikuissisältö on estetty"
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Edistyneemmät"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Kaikki tallentamasi syötteet yhdessä paikassa."
@@ -489,6 +521,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -506,7 +546,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "ALT-teksti"
@@ -527,14 +567,27 @@ msgstr "Sähköposti on lähetetty osoitteeseen {0}. Siinä on vahvistuskoodi, j
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Sähköposti on lähetetty aiempaan osoitteeseesi, {0}. Siinä on vahvistuskoodi, jonka voit syöttää alla."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Tapahtui virhe"
+#~ msgid "An error occured"
+#~ msgstr "Tapahtui virhe"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -548,10 +601,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Ongelma, jota ei ole sisällytetty näihin vaihtoehtoihin"
@@ -566,21 +624,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Tapahtui virhe, yritä uudelleen."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr ""
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "ja"
@@ -597,6 +659,10 @@ msgstr "Animoitu GIF"
msgid "Anti-Social Behavior"
msgstr "Epäsosiaalinen käytös"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Sovelluksen kieli"
@@ -613,26 +679,26 @@ msgstr "Sovelluksen salasanan nimet voivat sisältää vain kirjaimia, numeroita
msgid "App Password names must be at least 4 characters long."
msgstr "Sovelluksen salasanojen nimien on oltava vähintään 4 merkkiä pitkiä."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Sovelluksen salasanan asetukset"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Sovellussalasanat"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Valita"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Valita \"{0}\" -merkinnästä"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr ""
@@ -648,10 +714,19 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Ulkonäkö"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -673,7 +748,7 @@ msgstr "Haluatko varmasti poistaa sovellussalasanan \"{name}\"?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -685,19 +760,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Haluatko varmasti poistaa {0} syötteistäsi?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Haluatko varmasti hylätä tämän luonnoksen?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Oletko varma?"
@@ -714,13 +789,13 @@ msgstr "Taide"
msgid "Artistic or non-erotic nudity."
msgstr "Taiteellinen tai ei-eroottinen alastomuus."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Vähintään kolme merkkiä"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -733,8 +808,8 @@ msgstr "Vähintään kolme merkkiä"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Takaisin"
@@ -742,7 +817,7 @@ msgstr "Takaisin"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Perustuen kiinnostukseesi {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Perusasiat"
@@ -750,7 +825,7 @@ msgstr "Perusasiat"
msgid "Birthday"
msgstr "Syntymäpäivä"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Syntymäpäivä:"
@@ -773,28 +848,27 @@ msgstr "Estä käyttäjä"
msgid "Block Account?"
msgstr "Estä käyttäjätili?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Estä käyttäjätilit"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Estä lista"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Estetäänkö nämä käyttäjät?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Estetty"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Estetyt käyttäjät"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Estetyt käyttäjät"
@@ -807,7 +881,7 @@ msgstr "Estetyt käyttäjät eivät voi vastata viesteihisi, mainita sinua tai m
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Estetyt käyttäjät eivät voi vastata viesteihisi, mainita sinua tai muuten olla vuorovaikutuksessa kanssasi. Et näe heidän sisältöään ja he eivät näe sinun sisältöäsi."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Estetty viesti."
@@ -815,7 +889,7 @@ msgstr "Estetty viesti."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Estäminen ei estä tätä merkitsijää asettamasta merkintöjä tilillesi."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Estäminen on julkista. Estetyt käyttäjät eivät voi vastata viesteihisi, mainita sinua tai muuten olla vuorovaikutuksessa kanssasi."
@@ -823,7 +897,7 @@ msgstr "Estäminen on julkista. Estetyt käyttäjät eivät voi vastata viesteih
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Estäminen ei estä merkintöjen tekemistä tilillesi, mutta se estää kyseistä tiliä vastaamasta ketjuissasi tai muuten vuorovaikuttamasta kanssasi."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blogi"
@@ -859,7 +933,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky ei näytä profiiliasi ja viestejäsi kirjautumattomille käyttäjille. Toiset sovellukset eivät ehkä noudata tätä asetusta. Tämä ei tee käyttäjätilistäsi yksityistä."
@@ -876,21 +950,23 @@ msgstr "Sumenna kuvat ja suodata syötteistä"
msgid "Books"
msgstr "Kirjat"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -899,11 +975,11 @@ msgstr ""
msgid "Browse other feeds"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Yritys"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "käyttäjä —"
@@ -919,15 +995,15 @@ msgstr ""
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "käyttäjältä <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Luomalla käyttäjätilin hyväksyt {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "sinulta"
@@ -939,13 +1015,13 @@ msgstr "Kamera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Voi sisältää vain kirjaimia, numeroita, välilyöntejä, viivoja ja alaviivoja. Täytyy olla vähintään 4 merkkiä pitkä, mutta enintään 32 merkkiä pitkä."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -961,9 +1037,8 @@ msgstr "Voi sisältää vain kirjaimia, numeroita, välilyöntejä, viivoja ja a
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Peruuta"
@@ -991,7 +1066,7 @@ msgstr "Peruuta kuvan rajaus"
msgid "Cancel profile editing"
msgstr "Peruuta profiilin muokkaus"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Peruuta uudelleenpostaus"
@@ -1000,7 +1075,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Peruuta haku"
@@ -1012,17 +1086,17 @@ msgstr "Peruuttaa linkitetyn verkkosivuston avaamisen"
msgid "Change"
msgstr "Vaihda"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Vaihda"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Vaihda käyttäjätunnus"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Vaihda käyttäjätunnus"
@@ -1030,12 +1104,12 @@ msgstr "Vaihda käyttäjätunnus"
msgid "Change my email"
msgstr "Vaihda sähköpostiosoitteeni"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Vaihda salasana"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Vaihda salasana"
@@ -1047,7 +1121,7 @@ msgstr "Vaihda julkaisun kieleksi {0}"
msgid "Change Your Email"
msgstr "Vaihda sähköpostiosoitteesi"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1059,14 +1133,14 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr ""
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1103,15 +1177,15 @@ msgstr "Tarkista sähköpostisi ja syötä saamasi vahvistuskoodi alle:"
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Valitse \"Kaikki\" tai \"Ei kukaan\""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1119,7 +1193,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1127,7 +1201,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Valitse palvelu"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Valitse algoritmit, jotka ohjaavat mukautettuja syötteitäsi."
@@ -1142,8 +1216,8 @@ msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1154,18 +1228,18 @@ msgid "Choose your password"
msgstr "Valitse salasanasi"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Tyhjennä kaikki vanhan tietomallin mukaiset tiedot"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Tyhjennä kaikki vanhan tietomallin mukaiset tiedot"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Tyhjennä kaikki vanhan tietomallin tiedot (käynnistä uudelleen tämän jälkeen)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Tyhjennä kaikki vanhan tietomallin tiedot (käynnistä uudelleen tämän jälkeen)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Tyhjennä kaikki tallennukset"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Tyhjennä kaikki tallennukset (käynnistä uudelleen tämän jälkeen)"
@@ -1175,10 +1249,10 @@ msgid "Clear search query"
msgstr "Tyhjennä hakukysely"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr ""
+#~ msgid "Clears all legacy storage data"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Tyhjentää kaikki tallennustiedot"
@@ -1198,10 +1272,18 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr ""
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Avaa tästä valikko aihetunnisteelle {tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1215,12 +1297,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1241,7 +1323,7 @@ msgid "Close bottom drawer"
msgstr "Sulje alavalinnat"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Sulje valintaikkuna."
@@ -1265,8 +1347,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr "Sulje alanavigointi"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Sulje tämä valintaikkuna"
@@ -1278,7 +1360,7 @@ msgstr "Sulkee alanavigaation"
msgid "Closes password update alert"
msgstr "Sulkee salasanan päivitysilmoituksen"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Sulkee editorin ja hylkää luonnoksen"
@@ -1286,11 +1368,11 @@ msgstr "Sulkee editorin ja hylkää luonnoksen"
msgid "Closes viewer for header image"
msgstr "Sulkee kuvan katseluohjelman"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Pienentää käyttäjäluettelon annetulle ilmoitukselle"
@@ -1304,27 +1386,31 @@ msgstr "Komedia"
msgid "Comics"
msgstr "Sarjakuvat"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Yhteisöohjeet"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Suorita käyttöönotto loppuun ja aloita käyttäjätilisi käyttö"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Tee haaste loppuun"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Laadi viestejä, joiden pituus on enintään {MAX_GRAPHEME_LENGTH} merkkiä"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Kirjoita vastaus"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Määritä sisällönsuodatusasetus aiheille: {0}"
@@ -1360,11 +1446,11 @@ msgstr "Vahvista sisällön kieliasetukset"
msgid "Confirm delete account"
msgstr "Vahvista käyttäjätilin poisto"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Vahvista ikäsi:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Vahvista syntymäaikasi"
@@ -1382,7 +1468,8 @@ msgstr "Vahvistuskoodi"
msgid "Connecting..."
msgstr "Yhdistetään..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Ota yhteyttä tukeen"
@@ -1394,24 +1481,24 @@ msgstr "Ota yhteyttä tukeen"
msgid "Content Blocked"
msgstr "Sisältö estetty"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Sisältösuodattimet"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Sisältöjen kielet"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Sisältö ei ole saatavilla"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Sisältövaroitus"
@@ -1423,7 +1510,7 @@ msgstr "Sisältövaroitukset"
msgid "Context menu backdrop, click to close the menu."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Jatka"
@@ -1436,7 +1523,7 @@ msgstr "Jatka käyttäjänä {0} (kirjautunut)"
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1463,7 +1550,7 @@ msgstr "Ruoanlaitto"
msgid "Copied"
msgstr "Kopioitu"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Ohjelmiston versio kopioitu leikepöydälle"
@@ -1471,8 +1558,8 @@ msgstr "Ohjelmiston versio kopioitu leikepöydälle"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Kopioitu leikepöydälle"
@@ -1506,12 +1593,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Kopioi listan linkki"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Kopioi julkaisun linkki"
@@ -1520,8 +1607,8 @@ msgstr "Kopioi julkaisun linkki"
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Kopioi viestin teksti"
@@ -1529,14 +1616,14 @@ msgstr "Kopioi viestin teksti"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Tekijänoikeuskäytäntö"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1546,7 +1633,7 @@ msgstr ""
msgid "Could not load feed"
msgstr "Syötettä ei voitu ladata"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Listaa ei voitu ladata"
@@ -1571,7 +1658,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Luo uusi käyttäjätili"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Luo uusi Bluesky-tili"
@@ -1581,7 +1668,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1589,7 +1676,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Luo käyttäjätili"
@@ -1641,42 +1728,54 @@ msgstr "Mukautettu"
msgid "Custom domain"
msgstr "Mukautettu verkkotunnus"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Yhteisön rakentamat mukautetut syötteet tuovat sinulle uusia kokemuksia ja auttavat löytämään mieluisaa sisältöä."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Muokkaa ulkoisten sivustojen mediasisältöjen asetuksia"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Tumma"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Tumma ulkoasu"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Tumma teema"
+#~ msgid "Dark Theme"
+#~ msgstr "Tumma teema"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Syntymäaika"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr ""
@@ -1685,16 +1784,16 @@ msgid "Debug panel"
msgstr "Vianetsintäpaneeli"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Poista"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Poista käyttäjätili"
@@ -1714,8 +1813,8 @@ msgstr "Poista sovellussalasana"
msgid "Delete app password?"
msgstr "Poista sovellussalasana"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1723,7 +1822,7 @@ msgstr ""
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Poista lista"
@@ -1739,41 +1838,41 @@ msgstr ""
msgid "Delete my account"
msgstr "Poista käyttäjätilini"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Poista käyttäjätilini…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Poista viesti"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Poista tämä lista?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Poista tämä viesti?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Poistettu"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Poistettu viesti."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1788,11 +1887,25 @@ msgstr "Kuvaus"
msgid "Descriptive alt text"
msgstr ""
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Haluatko sanoa jotain?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Himmeä"
@@ -1800,7 +1913,7 @@ msgstr "Himmeä"
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Älä käynnistä giffejä automaattisesti"
@@ -1808,29 +1921,33 @@ msgstr "Älä käynnistä giffejä automaattisesti"
msgid "Disable Email 2FA"
msgstr "Poista sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytöstä"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Poista haptiset palautteet käytöstä"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Poistettu käytöstä"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Hylkää"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Hylkää luonnos?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Estä sovelluksia näyttämästä tiliäni kirjautumattomille käyttäjille"
@@ -1843,19 +1960,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr "Löydä uusia mukautettuja syötteitä"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr ""
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Löydä uusia syötteitä"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1871,11 +1996,15 @@ msgstr "Näyttönimi"
msgid "DNS Panel"
msgstr "DNS-paneeli"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Ei sisällä alastomuutta."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Ei ala eikä lopu väliviivaan"
@@ -1889,7 +2018,6 @@ msgstr "Verkkotunnus vahvistettu!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1908,8 +2036,8 @@ msgstr "Valmis"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Valmis"
@@ -1918,7 +2046,7 @@ msgstr "Valmis"
msgid "Done{extraText}"
msgstr "Valmis{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -1935,6 +2063,10 @@ msgstr "Raahaa tähän lisätäksesi kuvia"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "Applen sääntöjen vuoksi aikuisviihde voidaan ottaa käyttöön vasta rekisteröitymisen jälkeen."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "esim. maija"
@@ -1975,11 +2107,11 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Jokainen koodi toimii vain kerran. Saat lisää kutsukoodeja säännöllisin väliajoin."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -1988,12 +2120,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Muokkaa"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Muokkaa profiilikuvaa"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2002,7 +2134,12 @@ msgstr ""
msgid "Edit image"
msgstr "Muokkaa kuvaa"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Muokkaa listan tietoja"
@@ -2010,10 +2147,10 @@ msgstr "Muokkaa listan tietoja"
msgid "Edit Moderation List"
msgstr "Muokkaa moderaatiolistaa"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Muokkaa syötteitä"
@@ -2021,10 +2158,15 @@ msgstr "Muokkaa syötteitä"
msgid "Edit my profile"
msgstr "Muokkaa profiilia"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2040,7 +2182,7 @@ msgstr "Muokkaa profiilia"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Muokkaa tallennettuja syötteitä"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2048,7 +2190,7 @@ msgstr ""
msgid "Edit User List"
msgstr "Muokkaa käyttäjälistaa"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2060,7 +2202,7 @@ msgstr "Muokkaa näyttönimeäsi"
msgid "Edit your profile description"
msgstr "Muokkaa profiilin kuvausta"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2070,8 +2212,8 @@ msgid "Education"
msgstr "Koulutus"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2099,7 +2241,7 @@ msgstr "Sähköpostiosoite päivitetty"
msgid "Email verified"
msgstr "Sähköpostiosoite vahvistettu"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Sähköpostiosoite:"
@@ -2108,8 +2250,8 @@ msgid "Embed HTML code"
msgstr "Upotuksen HTML-koodi"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Upota viesti"
@@ -2121,7 +2263,7 @@ msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpä
msgid "Enable {0} only"
msgstr "Ota käyttöön vain {0}"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Ota aikuissisältö käyttöön"
@@ -2139,7 +2281,7 @@ msgstr "Ota aikuissisältö käyttöön"
msgid "Enable external media"
msgstr "Ota käyttöön ulkoinen media"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Ota mediatoistimet käyttöön kohteille"
@@ -2148,9 +2290,13 @@ msgstr "Ota mediatoistimet käyttöön kohteille"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Ota tämä asetus käyttöön nähdäksesi vastaukset vain seuraamiltasi ihmisiltä."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Ota tämä asetus käyttöön nähdäksesi vastaukset vain seuraamiltasi ihmisiltä."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2158,11 +2304,11 @@ msgstr "Ota käyttöön vain tämä lähde"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Käytössä"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Syötteen loppu"
@@ -2182,8 +2328,8 @@ msgstr "Anna sovellusalasanalle nimi"
msgid "Enter a password"
msgstr "Anna salasana"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Kirjoita sana tai aihetunniste"
@@ -2228,25 +2374,27 @@ msgstr "Syötä käyttäjätunnuksesi ja salasanasi"
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Virhe captcha-vastauksen vastaanottamisessa."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Virhe:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Kaikki"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2262,6 +2410,14 @@ msgstr "Liialliset maininnat tai vastaukset"
msgid "Excessive or unwanted messages"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Keskeyttää tilin poistoprosessin"
@@ -2279,7 +2435,6 @@ msgid "Exits image view"
msgstr "Poistuu kuvan katselutilasta"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Poistuu hakukyselyn kirjoittamisesta"
@@ -2287,7 +2442,7 @@ msgstr "Poistuu hakukyselyn kirjoittamisesta"
msgid "Expand alt text"
msgstr "Laajenna ALT-teksti"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2300,6 +2455,14 @@ msgstr "Laajenna tai pienennä viesti johon olit vastaamassa"
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr "Selvästi tai mahdollisesti häiritsevä media."
@@ -2308,12 +2471,12 @@ msgstr "Selvästi tai mahdollisesti häiritsevä media."
msgid "Explicit sexual images."
msgstr "Selvästi seksuaalista kuvamateriaalia."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Vie tietoni"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Vie tietoni"
@@ -2323,17 +2486,17 @@ msgid "External Media"
msgstr "Ulkoiset mediat"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Ulkoiset mediat voivat sallia verkkosivustojen kerätä tietoja sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ennen kuin painat \"toista\"-painiketta."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Ulkoisten mediasoittimien asetukset"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Ulkoisten mediasoittimien asetukset"
@@ -2342,8 +2505,8 @@ msgstr "Ulkoisten mediasoittimien asetukset"
msgid "Failed to create app password."
msgstr "Sovellussalasanan luominen epäonnistui."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2355,16 +2518,16 @@ msgstr "Listan luominen epäonnistui. Tarkista internetyhteytesi ja yritä uudel
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Viestin poistaminen epäonnistui, yritä uudelleen"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2386,12 +2549,12 @@ msgstr ""
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Suositeltujen syötteiden lataaminen epäonnistui"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2411,16 +2574,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2429,12 +2592,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Syöte"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Syöte käyttäjältä {0}"
@@ -2447,19 +2610,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Palaute"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Syötteet"
@@ -2467,7 +2630,7 @@ msgstr "Syötteet"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "Käyttäjät luovat syötteitä sisällön kuratointiin. Valitse joitakin syötteitä, jotka koet mielenkiintoisiksi."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka vaativat vain vähän koodaustaitoja. <0/> lisätietoa varten."
@@ -2475,7 +2638,7 @@ msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka v
#~ msgid "Feeds can be topical as well!"
#~ msgstr "Syötteet voivat olla myös aihepiirikohtaisia!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2491,7 +2654,7 @@ msgstr ""
msgid "Filter from feeds"
msgstr "Suodata syötteistä"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Viimeistely"
@@ -2513,7 +2676,7 @@ msgstr "Etsi viestejä ja käyttäjiä Blueskysta"
#~ msgid "Finding similar accounts..."
#~ msgstr "Etsitään samankaltaisia käyttäjätilejä"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Hienosäädä näkemääsi sisältöä Seuratut-syötteessäsi."
@@ -2521,7 +2684,7 @@ msgstr "Hienosäädä näkemääsi sisältöä Seuratut-syötteessäsi."
msgid "Fine-tune the discussion threads."
msgstr "Hienosäädä keskusteluketjuja."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2533,7 +2696,7 @@ msgstr ""
msgid "Fitness"
msgstr "Kuntoilu"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Joustava"
@@ -2547,12 +2710,11 @@ msgid "Flip vertically"
msgstr "Käännä pystysuunnassa"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Seuraa"
@@ -2566,7 +2728,7 @@ msgstr "Seuraa"
msgid "Follow {0}"
msgstr "Seuraa {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2579,8 +2741,8 @@ msgstr ""
msgid "Follow Account"
msgstr "Seuraa käyttäjää"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2592,7 +2754,7 @@ msgstr ""
msgid "Follow Back"
msgstr "Seuraa takaisin"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2628,19 +2790,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Seuratut käyttäjät"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Vain seuratut käyttäjät"
+#~ msgid "Followed users only"
+#~ msgstr "Vain seuratut käyttäjät"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "seurasi sinua"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2649,7 +2811,7 @@ msgstr ""
msgid "Followers"
msgstr "Seuraajat"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2659,34 +2821,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Seurataan"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Seurataan {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Seuratut -syötteen asetukset"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Seuratut -syötteen asetukset"
@@ -2698,7 +2860,7 @@ msgstr ""
msgid "Follows you"
msgstr "Seuraa sinua"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Seuraa sinua"
@@ -2715,6 +2877,10 @@ msgstr "Turvallisuussyistä meidän on lähetettävä vahvistuskoodi sähköpost
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Turvallisuussyistä et näe tätä uudelleen. Jos unohdat tämän salasanan, sinun on luotava uusi."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2736,7 +2902,7 @@ msgstr "Julkaisee usein ei-toivottua sisältöä"
msgid "From @{sanitizedAuthor}"
msgstr "Käyttäjältä @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Lähde: <0/>"
@@ -2749,7 +2915,7 @@ msgstr "Galleria"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2778,24 +2944,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr "Ilmeisiä lain tai käyttöehtojen rikkomuksia"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Palaa takaisin"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Palaa takaisin"
@@ -2805,14 +2972,14 @@ msgstr "Palaa takaisin"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Palaa edelliseen vaiheeseen"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2854,7 +3021,7 @@ msgstr ""
msgid "Graphic Media"
msgstr ""
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2862,7 +3029,7 @@ msgstr ""
msgid "Handle"
msgstr "Käyttäjätunnus"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Haptiikka"
@@ -2870,7 +3037,7 @@ msgstr "Haptiikka"
msgid "Harassment, trolling, or intolerance"
msgstr "Häirintä, trollaus tai suvaitsemattomuus"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Aihetunniste"
@@ -2878,12 +3045,12 @@ msgstr "Aihetunniste"
msgid "Hashtag: #{tag}"
msgstr "Aihetunniste #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Ongelmia?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Ohje"
@@ -2907,6 +3074,10 @@ msgstr ""
msgid "Here is your app password."
msgstr "Tässä on sovelluksesi salasana."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2914,30 +3085,50 @@ msgstr "Tässä on sovelluksesi salasana."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Piilota"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Piilota"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Piilota viesti"
+#~ msgid "Hide post"
+#~ msgstr "Piilota viesti"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Piilota sisältö"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Piilota tämä viesti?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Piilota käyttäjäluettelo"
@@ -2969,12 +3160,12 @@ msgstr "Hmm, vaikuttaa siltä, että tämän datan lataamisessa on ongelmia. Kat
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, emme pystyneet avaamaan kyseistä moderaatiopalvelua."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Koti"
@@ -3007,7 +3198,7 @@ msgstr "Minulla on vahvistuskoodi"
msgid "I have my own domain"
msgstr "Minulla on oma verkkotunnus"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -3020,15 +3211,15 @@ msgstr "Jos ALT-teksti on pitkä, vaihtaa ALT-tekstin laajennetun tilan"
msgid "If none are selected, suitable for all ages."
msgstr "Jos mitään ei ole valittu, sopii kaikenikäisille."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Jos et ole vielä täysi-ikäinen, huoltajasi tai laillisen edustajasi on luettava nämä ehdot puolestasi."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Jos poistat tämän listan, et voi palauttaa sitä."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jos poistat tämän julkaisun, et voi palauttaa sitä."
@@ -3104,10 +3295,14 @@ msgstr "Syötä salasanasi"
msgid "Input your preferred hosting provider"
msgstr "Syötä haluamasi palveluntarjoaja"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Syötä käyttäjätunnuksesi"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3117,7 +3312,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Virheellinen tai ei tuettu tietue"
@@ -3133,7 +3328,7 @@ msgstr "Kutsu ystävä"
msgid "Invite code"
msgstr "Kutsukoodi"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Kutsukoodia ei hyväksytty. Tarkista, että syötit sen oikein ja yritä uudelleen."
@@ -3165,14 +3360,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Työpaikat"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3209,11 +3404,11 @@ msgstr ""
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr ""
@@ -3221,16 +3416,16 @@ msgstr ""
msgid "Language selection"
msgstr "Kielen valinta"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Kielen asetukset"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Kielen asetukset"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Kielet"
@@ -3239,21 +3434,26 @@ msgstr "Kielet"
msgid "Latest"
msgstr "Uusimmat"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Lue lisää"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr ""
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Lue lisää tästä varoituksesta"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Lue lisää siitä, mikä on julkista Blueskyssa."
@@ -3291,8 +3491,8 @@ msgid "left to go."
msgstr "jäljellä."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Legacy tietovarasto tyhjennetty, sinun on käynnistettävä sovellus uudelleen nyt."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Legacy tietovarasto tyhjennetty, sinun on käynnistettävä sovellus uudelleen nyt."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3303,12 +3503,13 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Aloitetaan salasanasi nollaus!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Aloitetaan!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Vaalea"
@@ -3320,8 +3521,8 @@ msgstr "Vaalea"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3331,14 +3532,15 @@ msgid "Like this feed"
msgstr "Tykkää tästä syötteestä"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Tykänneet"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Tykänneet"
@@ -3356,11 +3558,11 @@ msgstr "Tykänneet"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Tykännyt {likeCount} {0}"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "tykkäsi mukautetusta syötteestäsi"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "tykkäsi viestistäsi"
@@ -3368,11 +3570,11 @@ msgstr "tykkäsi viestistäsi"
msgid "Likes"
msgstr "Tykkäykset"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Tykkäykset tässä viestissä"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Lista"
@@ -3380,20 +3582,28 @@ msgstr "Lista"
msgid "List Avatar"
msgstr "Listan kuvake"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Lista estetty"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Listan on luonut {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Lista poistettu"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Lista hiljennetty"
@@ -3401,20 +3611,20 @@ msgstr "Lista hiljennetty"
msgid "List Name"
msgstr "Listan nimi"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Listaa estosta poistetut"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Listaa hiljennyksestä poistetut"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Listat"
@@ -3438,10 +3648,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Lataa uusia ilmoituksia"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Lataa uusia viestejä"
@@ -3449,7 +3659,7 @@ msgstr "Lataa uusia viestejä"
msgid "Loading..."
msgstr "Ladataan..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Loki"
@@ -3465,7 +3675,7 @@ msgstr ""
msgid "Log out"
msgstr "Kirjaudu ulos"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Näkyvyys kirjautumattomana"
@@ -3505,7 +3715,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Varmista, että olet menossa oikeaan paikkaan!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Hallinnoi hiljennettyjä sanoja ja aihetunnisteita"
@@ -3514,20 +3724,20 @@ msgstr "Hallinnoi hiljennettyjä sanoja ja aihetunnisteita"
msgid "Mark as read"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Media"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "mainitut käyttäjät"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Mainitut käyttäjät"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Valikko"
@@ -3558,7 +3768,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3573,29 +3783,31 @@ msgstr ""
msgid "Misleading Account"
msgstr "Harhaanjohtava käyttäjätili"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderointi"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Moderaation yksityiskohdat"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Moderointilista käyttäjältä {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Moderointilista käyttäjältä <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Sinun moderointilistasi"
@@ -3607,20 +3819,24 @@ msgstr "Moderointilista luotu"
msgid "Moderation list updated"
msgstr "Moderointilista päivitetty"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Moderointilistat"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Moderointilistat"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Moderointiasetukset"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr ""
@@ -3628,12 +3844,12 @@ msgstr ""
msgid "Moderation tools"
msgstr "Moderointityökalut"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Ylläpitäjä on asettanut yleisen varoituksen sisällölle."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Lisää"
@@ -3641,7 +3857,7 @@ msgstr "Lisää"
msgid "More feeds"
msgstr "Lisää syötteitä"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Lisää asetuksia"
@@ -3657,11 +3873,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Hiljennä"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Hiljennä {truncatedTag}"
@@ -3670,11 +3888,11 @@ msgstr "Hiljennä {truncatedTag}"
msgid "Mute Account"
msgstr "Hiljennä käyttäjä"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Hiljennä käyttäjät"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Hiljennä kaikki {displayTag} viestit"
@@ -3684,14 +3902,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Hiljennä vain aihetunnisteissa"
+#~ msgid "Mute in tags only"
+#~ msgstr "Hiljennä vain aihetunnisteissa"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Hiljennä tekstissä ja aihetunnisteissa"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Hiljennä tekstissä ja aihetunnisteissa"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Hiljennä lista"
@@ -3700,37 +3922,53 @@ msgstr "Hiljennä lista"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Hiljennä nämä käyttäjät?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Hiljennä tämä sana viesteissä ja aihetunnisteissa"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Hiljennä tämä sana vain aihetunnisteissa"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Hiljennä keskustelu"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Hiljennä sanat ja aihetunnisteet"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Hiljennetty"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Hiljennetyt käyttäjät"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Hiljennetyt käyttäjätilit"
@@ -3739,7 +3977,7 @@ msgstr "Hiljennetyt käyttäjätilit"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Hiljennettyjen käyttäjien viestit poistetaan syötteestäsi ja ilmoituksistasi. Hiljennykset ovat täysin yksityisiä."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Hiljentäjä: \"{0}\""
@@ -3747,7 +3985,7 @@ msgstr "Hiljentäjä: \"{0}\""
msgid "Muted words & tags"
msgstr "Hiljennetyt sanat ja aihetunnisteet"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Hiljennys on yksityinen. Hiljennetyt käyttäjät voivat edelleen vuorovaikuttaa kanssasi, mutta et näe heidän viestejään tai saa ilmoituksia heiltä."
@@ -3756,7 +3994,7 @@ msgstr "Hiljennys on yksityinen. Hiljennetyt käyttäjät voivat edelleen vuorov
msgid "My Birthday"
msgstr "Syntymäpäiväni"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Omat syötteet"
@@ -3764,11 +4002,11 @@ msgstr "Omat syötteet"
msgid "My Profile"
msgstr "Profiilini"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Tallennetut syötteeni"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Tallennetut syötteeni"
@@ -3793,7 +4031,7 @@ msgstr "Nimi tai kuvaus rikkoo yhteisön sääntöjä"
msgid "Nature"
msgstr "Luonto"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3807,7 +4045,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Siirtyy seuraavalle näytölle"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Siirtyy profiiliisi"
@@ -3820,7 +4058,7 @@ msgstr "Tarvitseeko ilmoittaa tekijänoikeusrikkomuksesta?"
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Älä koskaan menetä pääsyä seuraajiisi ja tietoihisi."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Älä koskaan menetä pääsyä seuraajiisi tai tietoihisi."
@@ -3828,7 +4066,7 @@ msgstr "Älä koskaan menetä pääsyä seuraajiisi tai tietoihisi."
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Uusi"
@@ -3864,12 +4102,12 @@ msgctxt "action"
msgid "New post"
msgstr "Uusi viesti"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Uusi viesti"
@@ -3903,10 +4141,10 @@ msgstr "Uutiset"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3922,17 +4160,17 @@ msgstr "Seuraava"
msgid "Next image"
msgstr "Seuraava kuva"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Ei"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Ei kuvausta"
@@ -3949,12 +4187,12 @@ msgstr "Ei löydetty esillä olevia GIF-kuvia. Tenor-palvelussa saattaa olla ong
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Et enää seuraa käyttäjää {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Ei pidempi kuin 253 merkkiä."
@@ -3966,7 +4204,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Ei vielä ilmoituksia!"
@@ -3977,6 +4215,10 @@ msgstr "Ei vielä ilmoituksia!"
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -3990,11 +4232,11 @@ msgstr "Ei tuloksia"
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Tuloksia ei löydetty"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Ei tuloksia haulle \"{query}\""
@@ -4019,13 +4261,13 @@ msgstr "Ei tuloksia hakusanalle \"{search}\"."
msgid "No thanks"
msgstr "Ei kiitos"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Ei kukaan"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4044,7 +4286,7 @@ msgstr "Ei-seksuaalinen alastomuus"
#~ msgid "Not Applicable."
#~ msgstr "Ei sovellettavissa."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Ei löytynyt"
@@ -4055,12 +4297,12 @@ msgid "Not right now"
msgstr "Ei juuri nyt"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr ""
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tämä asetus rajoittaa vain sisältösi näkyvyyttä Bluesky-sovelluksessa ja -sivustolla, eikä muut sovellukset ehkä kunnioita tässä asetuksissaan. Sisältösi voi silti näkyä uloskirjautuneille käyttäjille muissa sovelluksissa ja verkkosivustoilla."
@@ -4072,7 +4314,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4089,14 +4331,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Ilmoitukset"
@@ -4125,12 +4367,12 @@ msgid "Off"
msgstr "Pois"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Voi ei!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Voi ei! Jokin meni pieleen."
@@ -4154,7 +4396,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Käyttöönoton nollaus"
@@ -4162,7 +4404,7 @@ msgstr "Käyttöönoton nollaus"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiä."
@@ -4171,14 +4413,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Vain {0} voi vastata."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Vain {0} voi vastata."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Sisältää vain kirjaimia, numeroita ja väliviivoja"
@@ -4186,7 +4428,7 @@ msgstr "Sisältää vain kirjaimia, numeroita ja väliviivoja"
msgid "Oops, something went wrong!"
msgstr "Hups, nyt meni jotain väärin!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4195,11 +4437,11 @@ msgstr "Hups, nyt meni jotain väärin!"
msgid "Oops!"
msgstr "Hups!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Avaa"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4212,8 +4454,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Avaa emoji-valitsin"
@@ -4221,7 +4463,7 @@ msgstr "Avaa emoji-valitsin"
msgid "Open feed options menu"
msgstr "Avaa syötteen asetusvalikko"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Avaa linkit sovelluksen sisäisellä selaimella"
@@ -4237,20 +4479,20 @@ msgstr "Avaa hiljennettyjen sanojen ja aihetunnisteiden asetukset"
msgid "Open navigation"
msgstr "Avaa navigointi"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Avaa viestin asetusvalikko"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Avaa storybook-sivu"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Avaa järjestelmäloki"
@@ -4258,11 +4500,11 @@ msgstr "Avaa järjestelmäloki"
msgid "Opens {numItems} options"
msgstr "Avaa {numItems} asetusta"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Avaa esteettömyysasetukset"
@@ -4274,19 +4516,23 @@ msgstr "Avaa debug lisätiedot"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Avaa laajennetun listan tämän ilmoituksen käyttäjistä"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Avaa laitteen kameran"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Avaa editorin"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Avaa mukautettavat kielen asetukset"
@@ -4294,7 +4540,7 @@ msgstr "Avaa mukautettavat kielen asetukset"
msgid "Opens device photo gallery"
msgstr "Avaa laitteen valokuvat"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Avaa ulkoiset upotusasetukset"
@@ -4316,27 +4562,27 @@ msgstr "Avaa GIF-valinnan valintaikkunan."
msgid "Opens list of invite codes"
msgstr "Avaa kutsukoodien luettelon"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr ""
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr ""
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr ""
@@ -4344,7 +4590,7 @@ msgstr ""
msgid "Opens modal for using custom domain"
msgstr "Avaa asetukset oman verkkotunnuksen käyttöönottoon"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Avaa moderointiasetukset"
@@ -4357,15 +4603,15 @@ msgstr "Avaa salasanan palautuslomakkeen"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Avaa näkymän tallennettujen syötteiden muokkaamiseen"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Avaa näkymän kaikkiin tallennettuihin syötteisiin"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Avaa sovelluksen salasanojen asetukset"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Avaa Seuratut-syötteen asetukset"
@@ -4377,21 +4623,21 @@ msgstr "Avaa linkitetyn verkkosivun"
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Avaa storybook-sivun"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Avaa järjestelmän lokisivun"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Avaa keskusteluasetukset"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4404,11 +4650,15 @@ msgid "Option {0} of {numItems}"
msgstr "Asetus {0}/{numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Voit tarvittaessa antaa lisätietoja alla:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Tai yhdistä nämä asetukset:"
@@ -4428,6 +4678,10 @@ msgstr "Joku toinen"
msgid "Other account"
msgstr "Toinen tili"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Muu..."
@@ -4436,7 +4690,7 @@ msgstr "Muu..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Sivua ei löytynyt"
@@ -4465,19 +4719,24 @@ msgid "Password updated!"
msgstr "Salasana päivitetty!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Pysäytä"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Henkilöt"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Henkilöt, joita @{0} seuraa"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Henkilöt, jotka seuraavat käyttäjää @{0}"
@@ -4507,7 +4766,7 @@ msgid "Pictures meant for adults."
msgstr "Aikuisille tarkoitetut kuvat."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Kiinnitä etusivulle"
@@ -4519,11 +4778,12 @@ msgstr "Kiinnitä etusivulle"
msgid "Pinned Feeds"
msgstr "Kiinnitetyt syötteet"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Käynnistä"
@@ -4540,6 +4800,11 @@ msgstr "Toista {0}"
msgid "Play or pause the GIF"
msgstr "Toista tai pysäytä GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4549,16 +4814,16 @@ msgstr "Toista video"
msgid "Plays the GIF"
msgstr "Toistaa GIFin"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Valitse käyttäjätunnuksesi."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Valitse salasanasi."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Täydennä varmennus-captcha, ole hyvä."
@@ -4574,11 +4839,11 @@ msgstr "Anna nimi sovellussalasanalle. Kaikki välilyönnit eivät ole sallittuj
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Anna uniikki nimi tälle sovellussalasanalle tai käytä satunnaisesti luotua."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Ole hyvä ja syötä oikea sana, aihetunniste tai lause hiljennettäväksi."
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Anna sähköpostiosoitteesi."
@@ -4591,7 +4856,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Anna myös salasanasi:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -4608,7 +4873,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr "Vahvista sähköpostiosoitteesi"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Odota, että linkkikortti latautuu kokonaan"
@@ -4621,45 +4886,50 @@ msgstr "Politiikka"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Lähetä"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Viesti"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Lähettäjä {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Lähettäjä @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Viesti poistettu"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Viesti piilotettu"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Viesti piilotettu hiljennetyn sanan takia"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Sinun hiljentämä viesti"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Lähetyskieli"
@@ -4668,23 +4938,27 @@ msgstr "Lähetyskieli"
msgid "Post Languages"
msgstr "Lähetyskielet"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Viestiä ei löydy"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "viestit"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Viestit"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Viestejä voidaan hiljentää sanojen, aihetunnisteiden tai molempien perusteella."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Viestejä voidaan hiljentää sanojen, aihetunnisteiden tai molempien perusteella."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4706,7 +4980,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr "Klikkaa vaihtaaksesi palveluntarjoajaa"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4726,7 +5000,7 @@ msgstr ""
msgid "Previous image"
msgstr "Edellinen kuva"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Ensisijainen kieli"
@@ -4738,16 +5012,16 @@ msgstr "Aseta seurattavat tärkeysjärjestykseen"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Yksityisyys"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Yksityisyydensuojakäytäntö"
@@ -4759,16 +5033,16 @@ msgstr ""
msgid "Processing..."
msgstr "Käsitellään..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "profiili"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Profiili"
@@ -4776,11 +5050,11 @@ msgstr "Profiili"
msgid "Profile updated"
msgstr "Profiili päivitetty"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Suojaa käyttäjätilisi vahvistamalla sähköpostiosoitteesi."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Julkinen"
@@ -4788,15 +5062,15 @@ msgstr "Julkinen"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Julkinen, jaettava käyttäjäluettelo hiljennettyjen tai estettyjen käyttäjien massamäärityksiä varten."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Julkinen, jaettava lista, joka voi ohjata syötteitä."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Julkaise viesti"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Julkaise vastaus"
@@ -4816,10 +5090,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Lainaa viestiä"
@@ -4833,6 +5107,39 @@ msgstr "Lainaa viestiä"
#~ msgid "Quote Post"
#~ msgstr "Lainaa viestiä"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Satunnainen (tunnetaan myös nimellä \"Lähettäjän ruletti\")"
@@ -4841,10 +5148,27 @@ msgstr "Satunnainen (tunnetaan myös nimellä \"Lähettäjän ruletti\")"
msgid "Ratios"
msgstr "Suhdeluvut"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -4853,7 +5177,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Viimeaikaiset haut"
@@ -4877,15 +5201,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Poista"
@@ -4893,11 +5218,11 @@ msgstr "Poista"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Poista käyttäjätili"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Poista avatar"
@@ -4910,8 +5235,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Poista syöte"
@@ -4919,19 +5244,27 @@ msgstr "Poista syöte"
msgid "Remove feed?"
msgstr "Poista syöte?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Poista syötteistäni"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Poista syötteistäni?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Poista kuva"
@@ -4940,24 +5273,24 @@ msgstr "Poista kuva"
msgid "Remove image preview"
msgstr "Poista kuvan esikatselu"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Poista hiljennetty sana listaltasi"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Poista uudelleenjulkaisu"
@@ -4965,18 +5298,31 @@ msgstr "Poista uudelleenjulkaisu"
msgid "Remove this feed from your saved feeds"
msgstr "Poista tämä syöte seurannasta"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Poistettu listalta"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Poistettu syötteistäni"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Poistettu syötteistäsi"
@@ -4984,7 +5330,7 @@ msgstr "Poistettu syötteistäsi"
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Poistaa {0} oletuskuvakkeen"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -4992,8 +5338,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -5001,7 +5347,7 @@ msgstr ""
msgid "Replies"
msgstr "Vastaukset"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5009,36 +5355,71 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Tähän keskusteluun vastaaminen on estetty"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Tähän keskusteluun vastaaminen on estetty"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Vastaa"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Vastaussuodattimet"
+#~ msgid "Reply Filters"
+#~ msgstr "Vastaussuodattimet"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Vastaa käyttäjälle <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5070,7 +5451,7 @@ msgstr ""
msgid "Report feed"
msgstr "Ilmianna syöte"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Ilmianna luettelo"
@@ -5078,13 +5459,13 @@ msgstr "Ilmianna luettelo"
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Ilmianna viesti"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5118,47 +5499,48 @@ msgstr ""
msgid "Report this user"
msgstr "Ilmianna tämä käyttäjä"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Uudelleenjulkaise"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Uudelleenjulkaise"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Uudelleenjulkaise tai lainaa viestiä"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Uudelleenjulkaissut"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "{0} uudelleenjulkaisi"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Uudelleenjulkaissut <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "uudelleenjulkaisi viestisi"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Tämän viestin uudelleenjulkaisut"
@@ -5172,7 +5554,7 @@ msgstr "Pyydä muutosta"
msgid "Request Code"
msgstr "Pyydä koodia"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Edellytä ALT-tekstiä ennen viestin julkaisua"
@@ -5197,8 +5579,8 @@ msgstr "Nollauskoodi"
msgid "Reset Code"
msgstr "Nollauskoodi"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Nollaa käyttöönoton tila"
@@ -5206,16 +5588,16 @@ msgstr "Nollaa käyttöönoton tila"
msgid "Reset password"
msgstr "Nollaa salasana"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Nollaa asetusten tila"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Nollaa käyttöönoton tilan"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Nollaa asetusten tilan"
@@ -5229,17 +5611,19 @@ msgid "Retries the last action, which errored out"
msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Yritä uudelleen"
@@ -5247,9 +5631,10 @@ msgstr "Yritä uudelleen"
#~ msgid "Retry."
#~ msgstr ""
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Palaa edelliselle sivulle"
@@ -5263,7 +5648,8 @@ msgid "Returns to previous page"
msgstr "Palaa edelliselle sivulle"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5313,7 +5699,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr "Tallenna syötteisiini"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Tallennetut syötteet"
@@ -5326,7 +5712,7 @@ msgstr ""
#~ msgstr "Tallennettu kuvagalleriaasi."
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Tallennettu syötteisiisi"
@@ -5344,8 +5730,8 @@ msgstr "Tallentaa kuvan rajausasetukset"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5354,13 +5740,12 @@ msgstr ""
msgid "Science"
msgstr "Tiede"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Vieritä alkuun"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5369,14 +5754,12 @@ msgstr "Vieritä alkuun"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Haku"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Haku hakusanalla \"{query}\""
@@ -5384,11 +5767,11 @@ msgstr "Haku hakusanalla \"{query}\""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Hae kaikki @{authorHandle}:n julkaisut, joissa on aihetunniste {displayTag}."
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Etsi kaikki viestit aihetunnisteella {displayTag}."
@@ -5400,8 +5783,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Hae käyttäjiä"
@@ -5425,28 +5806,32 @@ msgstr "Hae Tenorista"
msgid "Security Step Required"
msgstr "Turvatarkistus vaaditaan"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Näytä {truncatedTag}-viestit"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Näytä käyttäjän {truncatedTag} viestit"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Näytä <0>{displayTag}0> viestit"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Näytä tämän käyttäjän <0>{displayTag}0> viestit"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr "Katso profiilia"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Katso tämä opas"
@@ -5482,7 +5867,11 @@ msgstr "Valitse GIF"
msgid "Select GIF \"{0}\""
msgstr "Valitse GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Valitse kielet"
@@ -5502,7 +5891,7 @@ msgstr "Valitse vaihtoehto {i} / {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr ""
@@ -5518,11 +5907,15 @@ msgstr "Valitse palvelu, joka hostaa tietojasi."
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Valitse, mitä haluat nähdä (tai olla näkemättä) ja me huolehdimme lopusta."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Valitse, mitä kieliä haluat tilattujen syötteidesi sisältävän. Jos mitään ei ole valittu, kaikki kielet näytetään."
@@ -5534,11 +5927,11 @@ msgstr "Valitse sovelluksen käyttöliittymän kieli."
msgid "Select your date of birth"
msgstr "Aseta syntymäaikasi"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Valitse käännösten kieli syötteessäsi."
@@ -5568,7 +5961,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Lähetä sähköposti"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Lähetä palautetta"
@@ -5583,8 +5976,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Lähetä raportti"
@@ -5597,8 +5990,8 @@ msgstr ""
msgid "Send verification email"
msgstr "Lähetä vahvistussähköposti"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5610,7 +6003,7 @@ msgstr "Lähettää sähköpostin tilin poistamiseen tarvittavan vahvistuskoodin
msgid "Server address"
msgstr "Palvelimen osoite"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Aseta syntymäaika"
@@ -5618,15 +6011,15 @@ msgstr "Aseta syntymäaika"
msgid "Set new password"
msgstr "Aseta uusi salasana"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki lainaukset syötteestäsi. Uudelleenjulkaisut näkyvät silti."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki vastaukset syötteestäsi."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki uudelleenjulkaisut syötteestäsi."
@@ -5634,7 +6027,7 @@ msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki uudelleenjulkais
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Aseta tämä asetus \"Kyllä\" tilaan näyttääksesi vastaukset ketjumaisessa näkymässä. Tämä on kokeellinen ominaisuus."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Aseta tämä asetus \"Kyllä\"-tilaan nähdäksesi esimerkkejä tallennetuista syötteistäsi seuraamissasi syötteessäsi. Tämä on kokeellinen ominaisuus."
@@ -5647,24 +6040,24 @@ msgid "Sets Bluesky username"
msgstr "Asettaa Bluesky-käyttäjätunnuksen"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Muuttaa väriteeman tummaksi"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Muuttaa väriteeman tummaksi"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Muuttaa väriteeman vaaleaksi"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Muuttaa väriteeman vaaleaksi"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Muuttaa väriteeman käyttöjärjestelmän mukaiseksi"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Muuttaa väriteeman käyttöjärjestelmän mukaiseksi"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Muuttaa tumman väriteeman tummaksi"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Muuttaa tumman väriteeman tummaksi"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Asettaa tumman teeman himmeäksi teemaksi"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Asettaa tumman teeman himmeäksi teemaksi"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5682,11 +6075,11 @@ msgstr "Asettaa kuvan kuvasuhteen korkeaksi"
msgid "Sets image aspect ratio to wide"
msgstr "Asettaa kuvan kuvasuhteen leveäksi"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Asetukset"
@@ -5699,14 +6092,14 @@ msgid "Sexually Suggestive"
msgstr "Seksuaalisesti vihjaileva"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Jaa"
@@ -5724,8 +6117,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Jaa kuitenkin"
@@ -5736,7 +6129,7 @@ msgstr "Jaa syöte"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5754,7 +6147,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5766,7 +6159,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5777,7 +6170,7 @@ msgstr "Jakaa linkitetyn verkkosivun"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Näytä"
@@ -5789,8 +6182,9 @@ msgstr "Näytä"
msgid "Show alt text"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Näytä silti"
@@ -5811,19 +6205,23 @@ msgstr "Näytä seurannat samankaltaisilta käyttäjiltä kuin {0}"
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Näytä lisää"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -5831,11 +6229,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Näytä viestit omista syötteistäni"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Näytä lainatut viestit"
@@ -5851,7 +6249,7 @@ msgstr "Näytä lainatut viestit"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Näytä uudelleenjulkaistut viestit seurattavissa"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Näytä vastaukset"
@@ -5871,7 +6269,12 @@ msgstr "Näytä seurattujen henkilöiden vastaukset ennen muita vastauksia."
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "Näytä vastaukset, joissa on vähintään {value} {0}"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Näytä uudelleenjulkaisut"
@@ -5937,11 +6340,15 @@ msgstr "Kirjaudu sisään tai luo tili osallistuaksesi keskusteluun!"
msgid "Sign into Bluesky or create a new account"
msgstr "Kirjaudu Blueskyhin tai luo uusi käyttäjätili"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Kirjaudu ulos"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5963,7 +6370,7 @@ msgstr "Rekisteröidy tai kirjaudu sisään liittyäksesi keskusteluun"
msgid "Sign-in Required"
msgstr "Sisäänkirjautuminen vaaditaan"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Kirjautunut sisään nimellä"
@@ -5972,21 +6379,25 @@ msgstr "Kirjautunut sisään nimellä"
msgid "Signed in as @{0}"
msgstr "Kirjautunut sisään käyttäjätunnuksella @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Ohita"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Ohita tämä vaihe"
@@ -5995,12 +6406,11 @@ msgstr "Ohita tämä vaihe"
msgid "Software Dev"
msgstr "Ohjelmistokehitys"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -6023,13 +6433,13 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr "Jotain meni pieleen, yritä uudelleen"
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Pahoittelut! Istuntosi on vanhentunut. Kirjaudu sisään uudelleen."
@@ -6046,7 +6456,11 @@ msgstr "Lajittele saman viestin vastaukset seuraavasti:"
#~ msgstr "Lähde:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6084,17 +6498,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6110,7 +6524,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Tilasivu"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6118,27 +6532,27 @@ msgstr ""
#~ msgid "Step"
#~ msgstr "Askel"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Tallennustila tyhjennetty, sinun on käynnistettävä sovellus uudelleen."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Lähetä"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Tilaa"
@@ -6159,11 +6573,11 @@ msgstr ""
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Tilaa tämä lista"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6171,8 +6585,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Mahdollisia seurattavia"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Suositeltua sinulle"
@@ -6180,7 +6593,7 @@ msgstr "Suositeltua sinulle"
msgid "Suggestive"
msgstr "Viittaava"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6195,30 +6608,35 @@ msgstr "Vaihda käyttäjätiliä"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Vaihda käyttäjään {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Vaihtaa sisäänkirjautuneen käyttäjän tilin"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Järjestelmä"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Järjestelmäloki"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "aihetunniste"
+#~ msgid "tag"
+#~ msgstr "aihetunniste"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Aihetunnistevalikko: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Pitkä"
@@ -6227,11 +6645,19 @@ msgstr "Pitkä"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Napauta nähdäksesi kokonaan"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6256,11 +6682,11 @@ msgstr ""
msgid "Terms"
msgstr "Ehdot"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Käyttöehdot"
@@ -6272,16 +6698,20 @@ msgid "Terms used violate community standards"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "teksti"
+#~ msgid "text"
+#~ msgstr "teksti"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Tekstikenttä"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Kiitos. Raporttisi on lähetetty."
@@ -6289,19 +6719,23 @@ msgstr "Kiitos. Raporttisi on lähetetty."
msgid "That contains the following:"
msgstr "Se sisältää seuraavaa:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Tuo käyttätunnus on jo käytössä."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6311,6 +6745,15 @@ msgstr "Käyttäjä voi olla vuorovaikutuksessa kanssasi, kun poistat eston."
#~ msgid "the author"
#~ msgstr "kirjoittaja"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Yhteisöohjeet on siirretty kohtaan <0/>"
@@ -6319,12 +6762,16 @@ msgstr "Yhteisöohjeet on siirretty kohtaan <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Tekijänoikeuskäytäntö on siirretty kohtaan <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6332,11 +6779,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr ""
@@ -6344,8 +6791,8 @@ msgstr ""
msgid "The following steps will help customize your Bluesky experience."
msgstr "Seuraavat vaiheet auttavat mukauttamaan Bluesky-kokemustasi."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Viesti saattaa olla poistettu."
@@ -6353,7 +6800,11 @@ msgstr "Viesti saattaa olla poistettu."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6398,24 +6849,24 @@ msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma."
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Yhteydenotto palvelimeen epäonnistui"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Yhteydenotto palvelimeen epäonnistui"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Ongelma ilmoitusten hakemisessa. Napauta tästä yrittääksesi uudelleen."
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Ongelma viestien hakemisessa. Napauta tästä yrittääksesi uudelleen."
@@ -6423,13 +6874,13 @@ msgstr "Ongelma viestien hakemisessa. Napauta tästä yrittääksesi uudelleen."
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Ongelma listan hakemisessa. Napauta tästä yrittääksesi uudelleen."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Ongelma listojesi hakemisessa. Napauta tästä yrittääksesi uudelleen."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Raportin lähettämisessä ilmeni ongelma. Tarkista internet-yhteytesi."
@@ -6455,16 +6906,19 @@ msgstr "Sovellussalasanojen hakemisessa tapahtui virhe"
msgid "There was an issue! {0}"
msgstr "Ilmeni ongelma! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Ilmeni joku ongelma. Tarkista internet-yhteys ja yritä uudelleen."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Sovelluksessa ilmeni odottamaton ongelma. Kerro meille, jos tämä tapahtui sinulle!"
@@ -6477,11 +6931,11 @@ msgstr "Blueskyyn on tullut paljon uusia käyttäjiä! Aktivoimme tilisi niin pi
#~ msgid "These are popular accounts you might like:"
#~ msgstr "Nämä ovat suosittuja tilejä, joista saatat pitää:"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Tämä {screenDescription} on liputettu:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Tämä käyttäjätili on pyytänyt, että käyttät kirjautuvat sisään nähdäkseen profiilinsa."
@@ -6490,7 +6944,11 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
@@ -6517,8 +6975,8 @@ msgstr "Tämä sisältö on saanut yleisen varoituksen moderaattoreilta."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Tämä sisältö on hostattu palvelussa {0}. Haluatko sallia ulkoisen median?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Tämä sisältö ei ole saatavilla, koska toinen käyttäjistä on estänyt toisen."
@@ -6550,7 +7008,7 @@ msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6570,11 +7028,11 @@ msgstr "Tämä on tärkeää, jos sinun tarvitsee vaihtaa sähköpostiosoitteesi
#~ msgid "This label was applied by {0}."
#~ msgstr "Merkinnän lisäsi {0}."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -6582,7 +7040,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -6594,7 +7052,11 @@ msgstr ""
msgid "This link is taking you to the following website:"
msgstr "Tämä linkki vie sinut tälle verkkosivustolle:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Tämä lista on tyhjä!"
@@ -6606,23 +7068,35 @@ msgstr ""
msgid "This name is already in use"
msgstr "Tämä nimi on jo käytössä"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Tämä viesti on poistettu."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Tämä julkaisu on näkyvissä vain kirjautuneille käyttäjille. Sitä ei näytetä kirjautumattomille henkilöille."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Tämä julkaisu piilotetaan syötteistä."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Tämä julkaisu piilotetaan syötteistä."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Tämä profiili on näkyvissä vain kirjautuneille käyttäjille. Sitä ei näytetä kirjautumattomille henkilöille."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Tämä palvelu ei ole toimittanut käyttöehtoja tai tietosuojakäytäntöä."
@@ -6639,8 +7113,8 @@ msgstr "Tällä käyttäjällä ei ole yhtään seuraajaa"
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Tämä käyttäjä on estänyt sinut. Et voi nähdä hänen sisältöä."
@@ -6648,11 +7122,11 @@ msgstr "Tämä käyttäjä on estänyt sinut. Et voi nähdä hänen sisältöä.
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "Tämä käyttäjä on pyytänyt, että hänen sisältö näkyy vain kirjautuneille"
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Tämä käyttäjä on <0>{0}0>-listassa, jonka olet estänyt."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Tämä käyttäjä on <0>{0}0>-listassa, jonka olet hiljentänyt."
@@ -6668,28 +7142,40 @@ msgstr "Tämä käyttäjä ei seuraa ketään."
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Tämä varoitus on saatavilla vain viesteille, joihin on liitetty mediatiedosto."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Tämä poistaa {0}:n hiljennetyistä sanoistasi. Voit lisätä sen takaisin myöhemmin."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Tämä poistaa {0}:n hiljennetyistä sanoistasi. Voit lisätä sen takaisin myöhemmin."
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Keskusteluketjun asetukset"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Keskusteluketjun asetukset"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Ketjumainen näkymä"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Keskusteluketjujen asetukset"
@@ -6706,14 +7192,14 @@ msgid "To whom would you like to send this report?"
msgstr "Kenelle haluaisit lähettää tämän raportin?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Vaihda hiljennysvaihtoehtojen välillä."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Vaihda hiljennysvaihtoehtojen välillä."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Vaihda pudotusvalikko"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Vaihda ottaaksesi käyttöön tai poistaaksesi käytöstä aikuisille tarkoitettu sisältö."
@@ -6728,10 +7214,10 @@ msgstr "Muutokset"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Käännä"
@@ -6744,7 +7230,7 @@ msgstr "Yritä uudelleen"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Kaksivaiheinen tunnistautuminen"
@@ -6756,11 +7242,11 @@ msgstr ""
msgid "Type:"
msgstr "Tyyppi:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Poista listan esto"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Poista listan hiljennys"
@@ -6768,12 +7254,12 @@ msgstr "Poista listan hiljennys"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Yhteys palveluusi ei onnistu. Tarkista internet-yhteytesi."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6784,7 +7270,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Poista esto"
@@ -6808,9 +7294,9 @@ msgstr "Poista käyttäjätilin esto"
msgid "Unblock Account?"
msgstr "Poista esto?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Kumoa uudelleenjulkaisu"
@@ -6820,8 +7306,8 @@ msgid "Unfollow"
msgstr "Lopeta seuraaminen"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Älä seuraa"
+#~ msgid "Unfollow"
+#~ msgstr "Älä seuraa"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6840,12 +7326,14 @@ msgstr "Lopeta käyttäjätilin seuraaminen"
msgid "Unlike this feed"
msgstr "Poista tykkäys tästä syötteestä"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Poista hiljennys"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Poista hiljennys {truncatedTag}"
@@ -6854,7 +7342,7 @@ msgstr "Poista hiljennys {truncatedTag}"
msgid "Unmute Account"
msgstr "Poista käyttäjätilin hiljennys"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Poista hiljennys kaikista {displayTag}-julkaisuista"
@@ -6866,13 +7354,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Poista keskusteluketjun hiljennys"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Poista kiinnitys"
@@ -6880,11 +7376,11 @@ msgstr "Poista kiinnitys"
msgid "Unpin from home"
msgstr "Poista kiinnitys etusivulta"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Poista moderointilistan kiinnitys"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -6892,10 +7388,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr "Peruuta tilaus"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -6905,7 +7410,7 @@ msgstr ""
msgid "Unwanted Sexual Content"
msgstr "Ei-toivottu seksuaalinen sisältö"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Päivitä {displayName} listoissa"
@@ -6913,6 +7418,14 @@ msgstr "Päivitä {displayName} listoissa"
msgid "Update to {handle}"
msgstr "Päivitä {handle}\""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Päivitetään..."
@@ -6925,20 +7438,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr "Lataa tekstitiedosto kohteeseen:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Lataa kamerasta"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Lataa tiedostoista"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6986,12 +7499,12 @@ msgstr "Käytä tätä kirjautuaksesi toiseen sovellukseen käyttäjätunnuksell
msgid "Used by:"
msgstr "Käyttänyt:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Käyttäjä estetty"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "\"{0}\" on estänyt käyttäjän."
@@ -6999,30 +7512,28 @@ msgstr "\"{0}\" on estänyt käyttäjän."
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Käyttäjä on estetty listalla"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Käyttäjä on estänyt sinut"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Käyttäjä on estänyt sinut"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Käyttäjälistan on tehnyt {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Käyttäjälistan on tehnyt <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Käyttäjälistasi"
@@ -7034,7 +7545,7 @@ msgstr "Käyttäjälista luotu"
msgid "User list updated"
msgstr "Käyttäjälista päivitetty"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Käyttäjälistat"
@@ -7042,13 +7553,17 @@ msgstr "Käyttäjälistat"
msgid "Username or email address"
msgstr "Käyttäjätunnus tai sähköpostiosoite"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Käyttäjät"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "käyttäjät, joita <0/> seuraa"
+#~ msgid "users followed by <0/>"
+#~ msgstr "käyttäjät, joita <0/> seuraa"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7057,7 +7572,7 @@ msgstr "käyttäjät, joita <0/> seuraa"
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Käyttäjät listassa \"{0}\""
@@ -7077,15 +7592,15 @@ msgstr "Arvo:"
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Varmista sähköposti"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Vahvista sähköpostini"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Vahvista sähköpostini"
@@ -7106,31 +7621,44 @@ msgstr "Vahvista sähköpostisi"
#~ msgid "Version {0}"
#~ msgstr "Versio {0}"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Videopelit"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Katso {0}:n avatar"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Katso vianmääritystietue"
@@ -7143,7 +7671,7 @@ msgstr "Näytä tiedot"
msgid "View details for reporting a copyright violation"
msgstr "Näytä tiedot tekijänoikeusrikkomuksen ilmoittamisesta"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Katso koko keskusteluketju"
@@ -7154,12 +7682,12 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Katso profiilia"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Katso avatar"
@@ -7171,11 +7699,23 @@ msgstr ""
msgid "View users who like this feed"
msgstr "Katso, kuka tykkää tästä syötteestä"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7207,7 +7747,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Arvioimme, että tilisi valmistumiseen on {estimatedTime} aikaa."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Toivomme sinulle ihania hetkiä. Muista, että Bluesky on:"
@@ -7216,8 +7756,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Emme enää löytäneet viestejä seurattavilta. Tässä on uusin tekijältä <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Suosittelemme välttämään yleisiä sanoja, jotka esiintyvät monissa viesteissä. Se voi johtaa siihen, ettei mitään viestejä näytetä."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Suosittelemme välttämään yleisiä sanoja, jotka esiintyvät monissa viesteissä. Se voi johtaa siihen, ettei mitään viestejä näytetä."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7227,11 +7767,11 @@ msgstr "Suosittelemme välttämään yleisiä sanoja, jotka esiintyvät monissa
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilisi määritystä. Jos ongelma jatkuu, voit ohittaa tämän vaiheen."
@@ -7239,7 +7779,7 @@ msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilis
msgid "We will let you know when your account is ready."
msgstr "Ilmoitamme sinulle, kun käyttäjätilisi on valmis."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Käytämme tätä mukauttaaksemme kokemustasi."
@@ -7247,15 +7787,15 @@ msgstr "Käytämme tätä mukauttaaksemme kokemustasi."
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Olemme innoissamme, että liityt joukkoomme!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Pahoittelemme, emme saaneet avattua tätä listaa. Jos ongelma jatkuu, ota yhteyttä listan tekijään: @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Pahoittelemme, emme pystyneet lataamaan hiljennettyjä sanojasi tällä hetkellä. Yritä uudelleen."
@@ -7263,11 +7803,11 @@ msgstr "Pahoittelemme, emme pystyneet lataamaan hiljennettyjä sanojasi tällä
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Pahoittelemme, hakuasi ei voitu suorittaa loppuun. Yritä uudelleen muutaman minuutin kuluttua."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Pahoittelut! Emme löydä etsimääsi sivua."
@@ -7292,7 +7832,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Mitkä ovat kiinnostuksenkohteesi?"
@@ -7302,7 +7842,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Mitä kuuluu?"
@@ -7314,22 +7854,26 @@ msgstr "Mitä kieliä tässä viestissä käytetään?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Mitä kieliä haluaisit nähdä algoritmisissä syötteissä?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Kuka voi vastata"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7373,12 +7917,12 @@ msgstr "Leveä"
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Kirjoita viesti"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Kirjoita vastauksesi"
@@ -7388,10 +7932,10 @@ msgid "Writers"
msgstr "Kirjoittajat"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7402,10 +7946,18 @@ msgstr "Kyllä"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7414,7 +7966,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7480,11 +8033,11 @@ msgstr "Sinulla ei ole kiinnitettyjä syötteitä."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "Sinulla ei ole tallennettuja syötteitä!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Sinulla ei ole tallennettuja syötteitä."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Olet estänyt tekijän tai sinut on estetty tekijän toimesta."
@@ -7492,9 +8045,9 @@ msgstr "Olet estänyt tekijän tai sinut on estetty tekijän toimesta."
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Olet estänyt tämän käyttäjän. Et voi nähdä hänen sisältöä."
@@ -7505,20 +8058,20 @@ msgstr "Olet estänyt tämän käyttäjän. Et voi nähdä hänen sisältöä."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Olet syöttänyt virheellisen koodin. Sen tulisi näyttää muodoltaan XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Olet piilottanut tämän viestin"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Olet piilottanut tämän viestin."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Olet hiljentänyt tämän käyttäjätilin."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Olet hiljentänyt tämän käyttäjän"
@@ -7526,12 +8079,12 @@ msgstr "Olet hiljentänyt tämän käyttäjän"
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Sinulla ei ole syötteitä."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Sinulla ei ole listoja."
@@ -7559,27 +8112,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Et ole vielä hiljentänyt yhtään sanaa tai aihetunnistetta"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Voit valittaa näistä merkinnöistä, jos ne ovat mielestäsi virheellisiä."
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Sinun on oltava vähintään 13-vuotias rekisteröityäksesi."
@@ -7599,7 +8165,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -7607,11 +8173,11 @@ msgstr ""
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Et enää saa ilmoituksia tästä keskustelusta"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Saat nyt ilmoituksia tästä keskustelusta"
@@ -7631,23 +8197,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7666,12 +8232,12 @@ msgstr "Olet jonossa"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Olet valmis aloittamaan!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Olet halunnut piilottaa sanan tai aihetunnisteen tässä viestissä"
@@ -7679,7 +8245,7 @@ msgstr "Olet halunnut piilottaa sanan tai aihetunnisteen tässä viestissä"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Olet saavuttanut syötteesi lopun! Etsi lisää käyttäjiä seurattavaksi."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Käyttäjätilisi"
@@ -7695,6 +8261,10 @@ msgstr "Käyttäjätilisi arkisto, joka sisältää kaikki julkiset tietueet, vo
msgid "Your birth date"
msgstr "Syntymäaikasi"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -7708,7 +8278,7 @@ msgstr "Valintasi tallennetaan, mutta sitä voit muuttaa myöhemmin asetuksissa.
#~ msgstr "Oletussyötteesi on \"Following\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7722,7 +8292,7 @@ msgstr "Sähköpostiosoitteesi on päivitetty, mutta sitä ei ole vielä vahvist
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Sähköpostiosoitettasi ei ole vielä vahvistettu. Tämä on tärkeä turvatoimi, jonka suosittelemme suorittamaan."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7730,7 +8300,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Seuraamiesi syöte on tyhjä! Seuraa lisää käyttäjiä nähdäksesi, mitä tapahtuu."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Käyttäjätunnuksesi tulee olemaan"
@@ -7738,7 +8308,7 @@ msgstr "Käyttäjätunnuksesi tulee olemaan"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Käyttäjätunnuksesi tulee olemaan <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Hiljentämäsi sanat"
@@ -7746,15 +8316,15 @@ msgstr "Hiljentämäsi sanat"
msgid "Your password has been changed successfully!"
msgstr "Salasanasi on vaihdettu onnistuneesti!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Viestisi on julkaistu"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Julkaisusi, tykkäyksesi ja estosi ovat julkisia. Hiljennykset ovat yksityisiä."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Profiilisi"
@@ -7762,7 +8332,7 @@ msgstr "Profiilisi"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Vastauksesi on julkaistu"
@@ -7770,6 +8340,6 @@ msgstr "Vastauksesi on julkaistu"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Käyttäjätunnuksesi"
diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po
index c8714c5719..4ebcaf89cc 100644
--- a/src/locale/locales/fr/messages.po
+++ b/src/locale/locales/fr/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-07-12 14:40+0100\n"
+"PO-Revision-Date: 2024-07-25 00:10+0100\n"
"Last-Translator: surfdude29\n"
"Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n"
"Plural-Forms: \n"
@@ -21,7 +21,8 @@ msgstr "(contient du contenu intégré)"
msgid "(no email)"
msgstr "(pas d’e-mail)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {{formattedCount} autre} other {{formattedCount} autres}}"
@@ -33,7 +34,7 @@ msgstr "{0, plural, one {# étiquette a été placée sur ce compte} other {# é
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {# étiquette a été placée sur ce contenu} other {# étiquettes ont été placées sur ce contenu}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# repost} other {# reposts}}"
@@ -47,16 +48,16 @@ msgstr "{0, plural, one {abonné·e} other {abonné·e·s}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {abonnement} other {abonnements}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {Liker (# like)} other {Liker (# likes)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {like} other {likes}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, one {Liké par # compte} other {Liké par # comptes}}"
@@ -64,27 +65,41 @@ msgstr "{0, plural, one {Liké par # compte} other {Liké par # comptes}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {posts}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {Répondre (# réponse)} other {Répondre (# réponses)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {reposts}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {Déliker (# like)} other {Déliker (# likes)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "{0} personnes se sont inscrites cette semaine"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0} personnes ont utilisé ce kit de démarrage !"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
@@ -120,7 +135,7 @@ msgstr "{diff, plural, one {mois} other {mois}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, one {seconde} other {secondes}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "Kit de démarrage de {displayName}"
@@ -147,7 +162,7 @@ msgstr "{handle} ne peut être contacté par message"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, one {Liké par # compte} other {Liké par # comptes}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} non lus"
@@ -160,12 +175,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} a rejoint Bluesky en utilisant un kit de démarrage il y a {0}"
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {Voir toutes les réponses} one {Voir les réponses avec au moins # like} other {Voir les réponses avec au moins # likes}}"
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr "{value, plural, =0 {Voir toutes les réponses} one {Voir les réponses avec au moins # like} other {Voir les réponses avec au moins # likes}}"
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> membres"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> membres"
#: src/screens/StarterPack/Wizard/index.tsx:466
msgctxt "profiles"
@@ -177,11 +192,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>et {2, plural, one {# autre} other {# autres}} sont inclus dans votre kit de démarrage"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {abonné·e} other {abonné·e·s}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {abonnement} other {abonnements}}"
@@ -193,6 +208,10 @@ msgstr "<0>{0}0> et<1> 1><2>{1} 2>faites partie de votre pack de démarrag
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0> fait partie de votre kit de démarrage"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/view/com/modals/SelfLabel.tsx:135
msgid "<0>Not Applicable.0> This warning is only available for posts with media attached."
msgstr "<0>Pas applicable.0> Cet avertissement est seulement disponible pour les posts qui ont des médias qui leur sont attachés."
@@ -205,15 +224,27 @@ msgstr "<0>Vous0> et<1> 1><2>{0} 2>faites partie de votre pack de démarra
msgid "⚠Invalid Handle"
msgstr "⚠Pseudo invalide"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Confirmation 2FA"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr "Une infobulle d’aide"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Accède aux liens de navigation et aux paramètres"
@@ -223,22 +254,22 @@ msgid "Access profile and other navigation links"
msgstr "Accède au profil et aux autres liens de navigation"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Accessibilité"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Paramètres d’accessibilité"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Paramètres d’accessibilité"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Compte"
@@ -254,20 +285,20 @@ msgstr "Compte suivi"
msgid "Account muted"
msgstr "Compte masqué"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Compte masqué"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Compte masqué par liste"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Options de compte"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Compte supprimé de l’accès rapide"
@@ -284,10 +315,10 @@ msgstr "Compte désabonné"
msgid "Account unmuted"
msgstr "Compte démasqué"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Ajouter"
@@ -303,14 +334,14 @@ msgstr "Ajouter {displayName} au kit de démarrage"
msgid "Add a content warning"
msgstr "Ajouter un avertissement sur le contenu"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Ajouter un compte à cette liste"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Ajouter un compte"
@@ -329,11 +360,11 @@ msgstr "Ajouter un texte alt"
msgid "Add App Password"
msgstr "Ajouter un mot de passe d’application"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Ajouter un mot masqué pour les paramètres configurés"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Ajouter des mots et des mots-clés masqués"
@@ -353,7 +384,7 @@ msgstr "Ajouter le fil d’actu par défaut avec seulement les comptes que vous
msgid "Add the following DNS record to your domain:"
msgstr "Ajoutez l’enregistrement DNS suivant à votre domaine :"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "Ajouter ce fil à vos fils d’actu"
@@ -362,29 +393,30 @@ msgstr "Ajouter ce fil à vos fils d’actu"
msgid "Add to Lists"
msgstr "Ajouter aux listes"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Ajouter à mes fils d’actu"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Ajouté à la liste"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Ajouté à mes fils d’actu"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Définissez le nombre de likes qu’une réponse doit avoir pour être affichée dans votre fil d’actu."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Définissez le nombre de likes qu’une réponse doit avoir pour être affichée dans votre fil d’actu."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Contenu pour adultes"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Le contenu pour adultes ne peut être activé que via le Web sur <0>bsky.app0>."
@@ -392,20 +424,20 @@ msgstr "Le contenu pour adultes ne peut être activé que via le Web sur <0>bsky
msgid "Adult content is disabled."
msgstr "Le contenu pour adultes est désactivé."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Avancé"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr "Entraînement de l’algorithme terminé !"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "Tous les comptes ont été suivis !"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Tous les fils d’actu que vous avez enregistrés, au même endroit."
@@ -419,6 +451,14 @@ msgstr "Autoriser l’accès à vos messages privés"
msgid "Allow new messages from"
msgstr "Autoriser les nouveaux messages de"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -436,7 +476,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Texte alt"
@@ -457,52 +497,74 @@ msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation qu
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Un e-mail a été envoyé à votre ancienne adresse, {0}. Il comprend un code de confirmation que vous pouvez saisir ici."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Une erreur s’est produite"
+#~ msgid "An error occured"
+#~ msgstr "Une erreur s’est produite"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Une erreur s’est produite lors de la génération de votre kit de démarrage. Vous voulez réessayer ?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/QrCodeDialog.tsx:71
#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "Une erreur s’est produite en essayant de suivre tous les comptes"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problème qui ne fait pas partie de ces options"
#: src/components/dms/dialogs/NewChatDialog.tsx:36
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "Un problème est survenu au démarrage de la discussion"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "Un problème est survenu lors de l’ouverture de la discussion"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Un problème est survenu, veuillez réessayer."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "une erreur inconnue s’est produite"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "et"
@@ -519,6 +581,10 @@ msgstr "GIF animé"
msgid "Anti-Social Behavior"
msgstr "Comportement antisocial"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Langue de l’application"
@@ -535,26 +601,26 @@ msgstr "Les noms de mots de passe d’application ne peuvent contenir que des le
msgid "App Password names must be at least 4 characters long."
msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 caractères."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Paramètres de mot de passe d’application"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Mots de passe d’application"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Faire appel"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Faire appel de l’étiquette « {0} »"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Appel soumis"
@@ -566,10 +632,19 @@ msgstr "Appel soumis"
msgid "Appeal this decision"
msgstr "Faire appel de cette décision"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Affichage"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -583,7 +658,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe de l’application
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Êtes-vous sûr de vouloir supprimer ce message ? Ce message sera supprimé pour vous, mais pas pour l’autre personne."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?"
@@ -591,19 +666,19 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?"
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Êtes-vous sûr de vouloir rejeter ce brouillon ?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Vous confirmez ?"
@@ -620,13 +695,13 @@ msgstr "Art"
msgid "Artistic or non-erotic nudity."
msgstr "Nudité artistique ou non érotique."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Au moins 3 caractères"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -639,12 +714,12 @@ msgstr "Au moins 3 caractères"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Arrière"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Principes de base"
@@ -652,7 +727,7 @@ msgstr "Principes de base"
msgid "Birthday"
msgstr "Date de naissance"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Date de naissance :"
@@ -675,28 +750,27 @@ msgstr "Bloquer ce compte"
msgid "Block Account?"
msgstr "Bloquer ce compte ?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Bloquer ces comptes"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Liste de blocage"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Bloquer ces comptes ?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Bloqué"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Comptes bloqués"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Comptes bloqués"
@@ -709,7 +783,7 @@ msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous m
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous. Vous ne verrez pas leur contenu et ils ne pourront pas voir le vôtre."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Post bloqué."
@@ -717,7 +791,7 @@ msgstr "Post bloqué."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Le blocage n’empêche pas cet étiqueteur de placer des étiquettes sur votre compte."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Le blocage est public. Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous."
@@ -725,7 +799,7 @@ msgstr "Le blocage est public. Les comptes bloqués ne peuvent pas répondre à
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Le blocage n’empêchera pas les étiquettes d’être appliquées à votre compte, mais il empêchera ce compte de répondre à vos discussions ou d’interagir avec vous."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -746,7 +820,7 @@ msgstr "Bluesky est meilleur entre ami·e·s !"
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau."
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky n’affichera pas votre profil et vos posts à des personnes non connectées. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte."
@@ -763,21 +837,23 @@ msgstr "Flouter les images et les filtrer des fils d’actu"
msgid "Books"
msgstr "Livres"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr "Parcourir d’autres comptes sur la page « Explore »"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr "Parcourir d’autres fils d’actu sur la page « Explore »"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr "Parcourir d’autres suggestions"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr "Parcourir d’autres suggestions sur la page « Explore »"
@@ -786,11 +862,11 @@ msgstr "Parcourir d’autres suggestions sur la page « Explore »"
msgid "Browse other feeds"
msgstr "Parcourir d’autres fils d’actu"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Affaires"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "par —"
@@ -798,15 +874,15 @@ msgstr "par —"
msgid "By {0}"
msgstr "Par {0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "par <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "En créant un compte, vous acceptez les {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "par vous"
@@ -818,13 +894,13 @@ msgstr "Caméra"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets et des tirets bas. La longueur doit être d’au moins 4 caractères, mais pas plus de 32."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -840,9 +916,8 @@ msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Annuler"
@@ -870,7 +945,7 @@ msgstr "Annuler le recadrage de l’image"
msgid "Cancel profile editing"
msgstr "Annuler la modification du profil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Annuler la citation"
@@ -879,7 +954,6 @@ msgid "Cancel reactivation and log out"
msgstr "Annuler la réactivation et se déconnecter"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Annuler la recherche"
@@ -891,17 +965,17 @@ msgstr "Annule l’ouverture du site web lié"
msgid "Change"
msgstr "Modifier"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Modifier"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Modifier le pseudo"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Modifier le pseudo"
@@ -909,12 +983,12 @@ msgstr "Modifier le pseudo"
msgid "Change my email"
msgstr "Modifier mon e-mail"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Modifier le mot de passe"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Modifier le mot de passe"
@@ -926,7 +1000,7 @@ msgstr "Modifier la langue de post en {0}"
msgid "Change Your Email"
msgstr "Modifier votre e-mail"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -938,14 +1012,14 @@ msgstr "Discussion masquée"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Paramètres de discussion"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "Paramètres de discussion"
@@ -966,15 +1040,15 @@ msgstr "Vérifiez votre boîte e-mail pour un code de connexion et saisissez-le
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "Consultez votre boîte de réception, vous avez du recevoir un e-mail contenant un code de confirmation à saisir ci-dessous :"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr "Choisissez 3 ou plus :"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr "Choisissez au moins {0} de plus"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "Choisissez des fils d’actu"
@@ -982,7 +1056,7 @@ msgstr "Choisissez des fils d’actu"
msgid "Choose for me"
msgstr "Choisir pour moi"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "Choisissez des personnes"
@@ -990,7 +1064,7 @@ msgstr "Choisissez des personnes"
msgid "Choose Service"
msgstr "Choisir un service"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Choisissez les algorithmes qui alimentent vos fils d’actu personnalisés."
@@ -1000,26 +1074,26 @@ msgstr "Choisir cette couleur comme avatar"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "Choisissez qui peut répondre"
+#~ msgid "Choose who can reply"
+#~ msgstr "Choisissez qui peut répondre"
#: src/screens/Signup/StepInfo/index.tsx:171
msgid "Choose your password"
msgstr "Choisissez votre mot de passe"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Effacer toutes les données de stockage existantes"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Effacer toutes les données de stockage existantes"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Effacer toutes les données de stockage existantes (redémarrer ensuite)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Effacer toutes les données de stockage existantes (redémarrer ensuite)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Effacer toutes les données de stockage"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Effacer toutes les données de stockage (redémarrer ensuite)"
@@ -1029,10 +1103,10 @@ msgid "Clear search query"
msgstr "Effacer la recherche"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Efface toutes les données de stockage existantes"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Efface toutes les données de stockage existantes"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Efface toutes les données de stockage"
@@ -1048,10 +1122,18 @@ msgstr "Cliquez ici pour plus d’informations sur la désactivation de votre co
msgid "Click here for more information."
msgstr "Cliquez ici pour plus d’informations."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Cliquez ici pour ouvrir le menu de mot-clé pour {tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "Cliquer pour réessayer l’envoi échoué du message"
@@ -1065,12 +1147,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "Cataclop 🐴 cataclop 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1091,7 +1173,7 @@ msgid "Close bottom drawer"
msgstr "Fermer le tiroir du bas"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Fermer le dialogue"
@@ -1115,8 +1197,8 @@ msgstr "Fermer la modale"
msgid "Close navigation footer"
msgstr "Fermer le pied de page de navigation"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Fermer ce dialogue"
@@ -1128,7 +1210,7 @@ msgstr "Ferme la barre de navigation du bas"
msgid "Closes password update alert"
msgstr "Ferme la notification de mise à jour du mot de passe"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Ferme la fenêtre de rédaction et supprime le brouillon"
@@ -1136,11 +1218,11 @@ msgstr "Ferme la fenêtre de rédaction et supprime le brouillon"
msgid "Closes viewer for header image"
msgstr "Ferme la visionneuse pour l’image d’en-tête"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "Fermer la liste des comptes"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Réduit la liste des comptes pour une notification donnée"
@@ -1154,27 +1236,31 @@ msgstr "Comédie"
msgid "Comics"
msgstr "Bandes dessinées"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Directives communautaires"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Terminez le didacticiel et commencez à utiliser votre compte"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Compléter le défi"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Permet d’écrire des posts de {MAX_GRAPHEME_LENGTH} caractères maximum"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Rédiger une réponse"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/components/moderation/LabelPreference.tsx:81
msgid "Configure content filtering setting for category: {name}"
msgstr "Configure les paramètres de filtrage de contenu pour la catégorie : {name}"
@@ -1206,11 +1292,11 @@ msgstr "Confirmer les paramètres de langue"
msgid "Confirm delete account"
msgstr "Confirmer la suppression du compte"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Confirmez votre âge :"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Confirme votre date de naissance"
@@ -1228,7 +1314,8 @@ msgstr "Code de confirmation"
msgid "Connecting..."
msgstr "Connexion…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Contacter le support"
@@ -1236,24 +1323,24 @@ msgstr "Contacter le support"
msgid "Content Blocked"
msgstr "Contenu bloqué"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Filtres de contenu"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Langues du contenu"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Contenu non disponible"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Avertissement sur le contenu"
@@ -1265,7 +1352,7 @@ msgstr "Avertissements sur le contenu"
msgid "Context menu backdrop, click to close the menu."
msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Continuer"
@@ -1278,7 +1365,7 @@ msgstr "Continuer comme {0} (actuellement connecté)"
msgid "Continue thread..."
msgstr "Poursuivre le fil de discussion…"
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1297,7 +1384,7 @@ msgstr "Cuisine"
msgid "Copied"
msgstr "Copié"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Version de build copiée dans le presse-papier"
@@ -1305,8 +1392,8 @@ msgstr "Version de build copiée dans le presse-papier"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Copié dans le presse-papier"
@@ -1340,12 +1427,12 @@ msgstr "Copier le lien"
msgid "Copy Link"
msgstr "Copier le lien"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Copier le lien vers la liste"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Copier le lien vers le post"
@@ -1354,8 +1441,8 @@ msgstr "Copier le lien vers le post"
msgid "Copy message text"
msgstr "Copier le texte du message"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Copier le texte du post"
@@ -1363,14 +1450,14 @@ msgstr "Copier le texte du post"
msgid "Copy QR code"
msgstr "Copier le code QR"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Politique sur les droits d’auteur"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr "Impossible de compresser la vidéo"
+#~ msgid "Could not compress video"
+#~ msgstr "Impossible de compresser la vidéo"
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1380,7 +1467,7 @@ msgstr "Impossible de partir de la discussion"
msgid "Could not load feed"
msgstr "Impossible de charger le fil d’actu"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Impossible de charger la liste"
@@ -1397,7 +1484,7 @@ msgstr "Créer"
msgid "Create a new account"
msgstr "Créer un nouveau compte"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Créer un compte Bluesky"
@@ -1407,7 +1494,7 @@ msgstr "Créer un code QR pour un kit de démarrage"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "Créer un kit de démarrage"
@@ -1415,7 +1502,7 @@ msgstr "Créer un kit de démarrage"
msgid "Create a starter pack for me"
msgstr "Créer un kit de démarrage pour moi"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Créer un compte"
@@ -1463,42 +1550,54 @@ msgstr "Personnalisé"
msgid "Custom domain"
msgstr "Domaine personnalisé"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Les fils d’actu personnalisés élaborés par la communauté vous font vivre de nouvelles expériences et vous aident à trouver le contenu que vous aimez."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Personnaliser les médias provenant de sites externes."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Sombre"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Mode sombre"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Thème sombre"
+#~ msgid "Dark Theme"
+#~ msgstr "Thème sombre"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Date de naissance"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "Désactiver le compte"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "Désactiver mon compte"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Déboguer la modération"
@@ -1507,16 +1606,16 @@ msgid "Debug panel"
msgstr "Panneau de débug"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Supprimer"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Supprimer le compte"
@@ -1532,8 +1631,8 @@ msgstr "Supprimer le mot de passe de l’appli"
msgid "Delete app password?"
msgstr "Supprimer le mot de passe de l’appli ?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "Supprimer la déclaration d’ouverture aux discussions"
@@ -1541,7 +1640,7 @@ msgstr "Supprimer la déclaration d’ouverture aux discussions"
msgid "Delete for me"
msgstr "Supprimer pour moi"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Supprimer la liste"
@@ -1557,41 +1656,41 @@ msgstr "Supprimer le message pour moi"
msgid "Delete my account"
msgstr "Supprimer mon compte"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Supprimer mon compte…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Supprimer le post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "Supprimer le kit de démarrage"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "Supprimer le kit de démarrage ?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Supprimer cette liste ?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Supprimer ce post ?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Supprimé"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Post supprimé."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "Supprime l’enregistrement de déclaration de discussion"
@@ -1606,11 +1705,25 @@ msgstr "Description"
msgid "Descriptive alt text"
msgstr "Texte alt descriptif"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Vous vouliez dire quelque chose ?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Atténué"
@@ -1618,7 +1731,7 @@ msgstr "Atténué"
msgid "Direct messages are here!"
msgstr "Les messages privés sont arrivés !"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Désactiver la lecture automatique des GIFs"
@@ -1626,29 +1739,33 @@ msgstr "Désactiver la lecture automatique des GIFs"
msgid "Disable Email 2FA"
msgstr "Désactiver le 2FA par e-mail"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Désactiver le retour haptique"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Désactivé"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Abandonner"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Abandonner le brouillon ?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Empêcher les applis de montrer mon compte aux personnes non connectées"
@@ -1661,19 +1778,27 @@ msgstr "« Discover » apprend quels sont les posts que vous aimez au fur et
msgid "Discover new custom feeds"
msgstr "Découvrir des fils d’actu personnalisés"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "Découvrir de nouveaux fils d’actu"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Découvrir de nouveaux fils d’actu"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr "Annuler le guide de démarrage"
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "Afficher des badges de texte alt plus grands"
@@ -1689,11 +1814,15 @@ msgstr "Afficher le nom"
msgid "DNS Panel"
msgstr "Panneau DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Ne comprend pas de nudité."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Ne commence pas ou ne se termine pas par un trait d’union"
@@ -1707,7 +1836,6 @@ msgstr "Domaine vérifié !"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1726,8 +1854,8 @@ msgstr "Terminé"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Terminer"
@@ -1736,7 +1864,7 @@ msgstr "Terminer"
msgid "Done{extraText}"
msgstr "Terminé{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "Télécharger Bluesky"
@@ -1749,6 +1877,10 @@ msgstr "Télécharger le fichier CAR"
msgid "Drop to add images"
msgstr "Déposer pour ajouter des images"
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "ex. alice"
@@ -1789,11 +1921,11 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulièrement d’autres codes d’invitation."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "Modifier"
@@ -1802,12 +1934,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Modifier"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Modifier l’avatar"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "Modifier les fils d’actu"
@@ -1816,7 +1948,12 @@ msgstr "Modifier les fils d’actu"
msgid "Edit image"
msgstr "Modifier l’image"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Modifier les infos de la liste"
@@ -1824,10 +1961,10 @@ msgstr "Modifier les infos de la liste"
msgid "Edit Moderation List"
msgstr "Modifier la liste de modération"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Modifier mes fils d’actu"
@@ -1835,10 +1972,15 @@ msgstr "Modifier mes fils d’actu"
msgid "Edit my profile"
msgstr "Modifier mon profil"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "Modifier les personnes"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1849,7 +1991,7 @@ msgstr "Modifier le profil"
msgid "Edit Profile"
msgstr "Modifier le profil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "Modifier le kit de démarrage"
@@ -1857,7 +1999,7 @@ msgstr "Modifier le kit de démarrage"
msgid "Edit User List"
msgstr "Modifier la liste de comptes"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "Modifier qui peut répondre"
@@ -1869,7 +2011,7 @@ msgstr "Modifier votre nom d’affichage"
msgid "Edit your profile description"
msgstr "Modifier votre description de profil"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "Modifier votre kit de démarrage"
@@ -1879,8 +2021,8 @@ msgid "Education"
msgstr "Éducation"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "Choisissez soit « Tout le monde », soit « Personne »"
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr "Choisissez soit « Tout le monde », soit « Personne »"
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -1908,7 +2050,7 @@ msgstr "E-mail mis à jour"
msgid "Email verified"
msgstr "Adresse e-mail vérifiée"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "E-mail :"
@@ -1917,8 +2059,8 @@ msgid "Embed HTML code"
msgstr "Code HTML à intégrer"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Intégrer le post"
@@ -1930,7 +2072,7 @@ msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait sui
msgid "Enable {0} only"
msgstr "Activer {0} uniquement"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Activer le contenu pour adultes"
@@ -1939,18 +2081,22 @@ msgstr "Activer le contenu pour adultes"
msgid "Enable external media"
msgstr "Activer les médias externes"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Activer les lecteurs médias pour"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
+msgstr "Activer les notifications prioritaires"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Activez ce paramètre pour ne voir que les réponses des personnes que vous suivez."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Activez ce paramètre pour ne voir que les réponses des personnes que vous suivez."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -1958,11 +2104,11 @@ msgstr "Active cette source uniquement"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Activé"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Fin du fil d’actu"
@@ -1978,8 +2124,8 @@ msgstr "Entrer un nom pour ce mot de passe d’application"
msgid "Enter a password"
msgstr "Saisir un mot de passe"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Saisir un mot ou un mot-clé"
@@ -2024,25 +2170,27 @@ msgstr "Entrez votre pseudo et votre mot de passe"
msgid "Error occurred while saving file"
msgstr "Échec lors de la sauvegarde du fichier"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Erreur de réception de la réponse captcha."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Erreur :"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Tout le monde"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "Tout le monde peut répondre"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2058,6 +2206,14 @@ msgstr "Mentions ou réponses excessives"
msgid "Excessive or unwanted messages"
msgstr "Messages excessifs ou non-sollicités"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Sort du processus de suppression du compte"
@@ -2075,7 +2231,6 @@ msgid "Exits image view"
msgstr "Sort de la vue de l’image"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Sort de la saisie de la recherche"
@@ -2083,7 +2238,7 @@ msgstr "Sort de la saisie de la recherche"
msgid "Expand alt text"
msgstr "Développer le texte alt"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "Développer la liste des comptes"
@@ -2094,6 +2249,14 @@ msgstr "Développe ou réduit le post complet auquel vous répondez"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
+msgstr "Expérimental : lorsque cette préférence est activée, vous ne recevrez que les notifications de réponse et de citation des comptes que vous suivez. Nous continuerons à ajouter d’autres contrôles au fil du temps."
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:47
@@ -2104,12 +2267,12 @@ msgstr "Médias explicites ou potentiellement dérangeants."
msgid "Explicit sexual images."
msgstr "Images sexuelles explicites."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Exporter mes données"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Exporter mes données"
@@ -2119,17 +2282,17 @@ msgid "External Media"
msgstr "Média externe"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Les médias externes peuvent permettre à des sites web de collecter des informations sur vous et votre appareil. Aucune information n’est envoyée ou demandée tant que vous n’appuyez pas sur le bouton de lecture."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Préférences sur les médias externes"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Préférences sur les médias externes"
@@ -2138,8 +2301,8 @@ msgstr "Préférences sur les médias externes"
msgid "Failed to create app password."
msgstr "Échec de la création du mot de passe d’application."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "Échec de la création du kit de démarrage"
@@ -2151,16 +2314,16 @@ msgstr "Échec de la création de la liste. Vérifiez votre connexion Internet e
msgid "Failed to delete message"
msgstr "Échec de la suppression du message"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Échec de la suppression du post, veuillez réessayer"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "Échec de la suppression du kit de démarrage"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "Échec du chargement des fils d’actu"
@@ -2173,12 +2336,12 @@ msgstr "Échec du chargement des GIFs"
msgid "Failed to load past messages"
msgstr "Échec du chargement de l’historique"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "Échec du chargement des fils d’actu suggerés"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "Échec du chargement des suivis suggérés"
@@ -2188,22 +2351,22 @@ msgstr "Échec de l’enregistrement de l’image : {0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "Échec de l’enregistrement des préférences de notification, veuillez réessayer"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
msgstr "Échec de l’envoi"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Échec de l’envoi de l’appel, veuillez réessayer."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "Échec de la mise à jour des fils d’actu"
@@ -2212,12 +2375,12 @@ msgstr "Échec de la mise à jour des fils d’actu"
msgid "Failed to update settings"
msgstr "Échec de la mise à jour des paramètres"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Fil d’actu"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Fil d’actu par {0}"
@@ -2226,27 +2389,27 @@ msgid "Feed toggle"
msgstr "Ajouter/enlever le fil d’actu"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Feedback"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Fils d’actu"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Les fils d’actu sont des algorithmes personnalisés qui se construisent avec un peu d’expertise en programmation. <0/> pour plus d’informations."
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "Fils d’actu mis à jour !"
@@ -2262,7 +2425,7 @@ msgstr "Fichier sauvegardé avec succès !"
msgid "Filter from feeds"
msgstr "Filtrer des fils d’actu"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Finalisation"
@@ -2280,7 +2443,7 @@ msgstr "Trouvez d’autres fils d’actu et comptes à suivre dans la page « E
msgid "Find posts and users on Bluesky"
msgstr "Trouver des posts et comptes sur Bluesky"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Affine le contenu affiché sur votre fil d’actu « Following »."
@@ -2288,7 +2451,7 @@ msgstr "Affine le contenu affiché sur votre fil d’actu « Following »."
msgid "Fine-tune the discussion threads."
msgstr "Affine les fils de discussion."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "Terminer"
@@ -2300,7 +2463,7 @@ msgstr "Terminer la visite et commencer à utiliser l’application"
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Flexible"
@@ -2314,12 +2477,11 @@ msgid "Flip vertically"
msgstr "Miroir vertical"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Suivre"
@@ -2333,7 +2495,7 @@ msgstr "Suivre"
msgid "Follow {0}"
msgstr "Suivre {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "Suivre {name}"
@@ -2346,8 +2508,8 @@ msgstr "Suivre 7 comptes"
msgid "Follow Account"
msgstr "Suivre le compte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "Suivre tous"
@@ -2355,14 +2517,10 @@ msgstr "Suivre tous"
msgid "Follow Back"
msgstr "Suivre en retour"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Suivez plus de comptes pour vous connecter à vos centres d’intérêt et développer votre réseau."
-#: src/view/com/profile/ProfileCard.tsx:190
-#~ msgid "Followed by {0}"
-#~ msgstr "Suivi par {0}"
-
#: src/components/KnownFollowers.tsx:231
msgid "Followed by <0>{0}0>"
msgstr "Suivi par <0>{0}0>"
@@ -2379,19 +2537,19 @@ msgstr "Suivi par <0>{0}0> et <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Suivi par <0>{0}0>, <1>{1}1> et {2, plural, one {# autre} other {# autres}}"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Comptes suivis"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Comptes suivis uniquement"
+#~ msgid "Followed users only"
+#~ msgstr "Comptes suivis uniquement"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "vous suit"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr "vous a suivi"
@@ -2400,7 +2558,7 @@ msgstr "vous a suivi"
msgid "Followers"
msgstr "Abonné·e·s"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "Abonné·e·s de @{0} que vous connaissez"
@@ -2410,34 +2568,34 @@ msgid "Followers you know"
msgstr "Abonné·e·s que vous connaissez"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Suivi"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Suit {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "Suit {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Préférences du fil d’actu « Following »"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Préférences du fil d’actu « Following »"
@@ -2449,7 +2607,7 @@ msgstr "« Following » affiche les derniers posts des personnes que vous suiv
msgid "Follows you"
msgstr "Vous suit"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Vous suit"
@@ -2466,6 +2624,10 @@ msgstr "Pour des raisons de sécurité, nous devrons envoyer un code de confirma
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Pour des raisons de sécurité, vous ne pourrez plus afficher ceci. Si vous perdez ce mot de passe, vous devrez en générer un autre."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2487,7 +2649,7 @@ msgstr "Publication fréquente de contenu indésirable"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Tiré de <0/>"
@@ -2500,9 +2662,9 @@ msgstr "Galerie"
msgid "Generate a starter pack"
msgstr "Générer un kit de démarrage"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
-msgstr ""
+msgstr "Obtenir de l’aide"
#: src/components/dms/MessagesNUX.tsx:168
msgid "Get started"
@@ -2529,41 +2691,38 @@ msgstr "Donner à votre profil un visage"
msgid "Glaring violations of law or terms of service"
msgstr "Violations flagrantes de la loi ou des conditions d’utilisation"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Retour"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Retour"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189
-#~ msgid "Go back to previous screen"
-#~ msgstr "Retour à l’écran précédent"
-
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Retour à l’étape précédente"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "Retour à l’étape précédente"
@@ -2600,7 +2759,7 @@ msgstr "Voir le profil du compte"
msgid "Graphic Media"
msgstr "Médias crus"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr "On y est presque !"
@@ -2608,7 +2767,7 @@ msgstr "On y est presque !"
msgid "Handle"
msgstr "Pseudo"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Haptiques"
@@ -2616,7 +2775,7 @@ msgstr "Haptiques"
msgid "Harassment, trolling, or intolerance"
msgstr "Harcèlement, trolling ou intolérance"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Mot-clé"
@@ -2624,12 +2783,12 @@ msgstr "Mot-clé"
msgid "Hashtag: #{tag}"
msgstr "Mot-clé : #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Un souci ?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Aide"
@@ -2641,6 +2800,10 @@ msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une i
msgid "Here is your app password."
msgstr "Voici le mot de passe de votre appli."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2648,30 +2811,50 @@ msgstr "Voici le mot de passe de votre appli."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Cacher"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Cacher"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Cacher ce post"
+#~ msgid "Hide post"
+#~ msgstr "Cacher ce post"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Cacher ce contenu"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Cacher ce post ?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Cacher la liste des comptes"
@@ -2703,12 +2886,12 @@ msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données.
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, nous n’avons pas pu charger ce service de modération."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Accueil"
@@ -2741,7 +2924,7 @@ msgstr "J’ai un code de confirmation"
msgid "I have my own domain"
msgstr "J’ai mon propre domaine"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "Je comprends"
@@ -2754,15 +2937,15 @@ msgstr "Si le texte alt est trop long, change son mode d’affichage"
msgid "If none are selected, suitable for all ages."
msgstr "Si rien n’est sélectionné, il n’y a pas de restriction d’âge."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Si vous n’êtes pas encore un adulte selon les lois de votre pays, vos parents ou votre tuteur légal doivent lire ces conditions en votre nom."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Si vous supprimez cette liste, vous ne pourrez pas la récupérer."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si vous supprimez ce post, vous ne pourrez pas le récupérer."
@@ -2834,10 +3017,14 @@ msgstr "Entrez votre mot de passe"
msgid "Input your preferred hosting provider"
msgstr "Entrez votre hébergeur préféré"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Entrez votre pseudo"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "Et voici les Messages Privés"
@@ -2847,7 +3034,7 @@ msgstr "Et voici les Messages Privés"
msgid "Invalid 2FA confirmation code."
msgstr "Code de confirmation 2FA invalide."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Enregistrement de post invalide ou non pris en charge"
@@ -2863,7 +3050,7 @@ msgstr "Inviter un ami"
msgid "Invite code"
msgstr "Code d’invitation"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Code d’invitation refusé. Vérifiez que vous l’avez saisi correctement et réessayez."
@@ -2891,14 +3078,14 @@ msgstr "Invitations, mais personnelles"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus."
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Emplois"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "Rejoignez Bluesky"
@@ -2927,11 +3114,11 @@ msgstr "Étiquettes"
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "Les étiquettes sont des annotations sur les comptes et le contenu. Elles peuvent être utilisées pour masquer, avertir et catégoriser le réseau."
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Étiquettes sur votre compte"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Étiquettes sur votre contenu"
@@ -2939,16 +3126,16 @@ msgstr "Étiquettes sur votre contenu"
msgid "Language selection"
msgstr "Sélection de la langue"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Préférences de langue"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Paramètres linguistiques"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Langues"
@@ -2957,21 +3144,26 @@ msgstr "Langues"
msgid "Latest"
msgstr "Dernier"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "En savoir plus"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "En savoir plus sur la modération appliquée à ce contenu."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "En savoir plus sur cet avertissement"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "En savoir plus sur ce qui est public sur Bluesky."
@@ -3009,8 +3201,8 @@ msgid "left to go."
msgstr "devant vous dans la file."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Stockage ancien effacé, vous devez redémarrer l’application maintenant."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Stockage ancien effacé, vous devez redémarrer l’application maintenant."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3021,12 +3213,13 @@ msgstr "Laissez-moi choisir"
msgid "Let's get your password reset!"
msgstr "Réinitialisez votre mot de passe !"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Allons-y !"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Clair"
@@ -3034,8 +3227,8 @@ msgstr "Clair"
msgid "Like 10 posts"
msgstr "Liker 10 posts"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr "Liker 10 posts pour former le fil d’actu « Discover »"
@@ -3045,22 +3238,23 @@ msgid "Like this feed"
msgstr "Liker ce fil d’actu"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Liké par"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Liké par"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "liké votre fil d’actu personnalisé"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "liké votre post"
@@ -3068,11 +3262,11 @@ msgstr "liké votre post"
msgid "Likes"
msgstr "Likes"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Likes sur ce post"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Liste"
@@ -3080,20 +3274,28 @@ msgstr "Liste"
msgid "List Avatar"
msgstr "Liste des avatars"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Liste bloquée"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Liste par {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Liste supprimée"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Liste masquée"
@@ -3101,20 +3303,20 @@ msgstr "Liste masquée"
msgid "List Name"
msgstr "Nom de liste"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Liste débloquée"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Liste démasquée"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Listes"
@@ -3138,10 +3340,10 @@ msgstr "Charger d’autres suggestions de suivis"
msgid "Load new notifications"
msgstr "Charger les nouvelles notifications"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Charger les nouveaux posts"
@@ -3149,7 +3351,7 @@ msgstr "Charger les nouveaux posts"
msgid "Loading..."
msgstr "Chargement…"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Journaux"
@@ -3165,7 +3367,7 @@ msgstr "Se connecter ou s’inscrire"
msgid "Log out"
msgstr "Déconnexion"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Visibilité déconnectée"
@@ -3201,7 +3403,7 @@ msgstr "En faire un pour moi"
msgid "Make sure this is where you intend to go!"
msgstr "Assurez-vous que c’est bien là que vous avez l’intention d’aller !"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gérer les mots et les mots-clés masqués"
@@ -3210,20 +3412,20 @@ msgstr "Gérer les mots et les mots-clés masqués"
msgid "Mark as read"
msgstr "Marqué comme lu"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Média"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "comptes mentionnés"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Comptes mentionnés"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menu"
@@ -3254,7 +3456,7 @@ msgstr "Le message est trop long"
msgid "Message settings"
msgstr "Paramètres des messages"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3265,29 +3467,31 @@ msgstr "Messages"
msgid "Misleading Account"
msgstr "Compte trompeur"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Modération"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Détails de la modération"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Liste de modération par {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Liste de modération par <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Liste de modération par vous"
@@ -3299,20 +3503,24 @@ msgstr "Liste de modération créée"
msgid "Moderation list updated"
msgstr "Liste de modération mise à jour"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Listes de modération"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Listes de modération"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Paramètres de modération"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "États de modération"
@@ -3320,12 +3528,12 @@ msgstr "États de modération"
msgid "Moderation tools"
msgstr "Outils de modération"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "La modération a choisi d’ajouter un avertissement général sur le contenu."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Plus"
@@ -3333,7 +3541,7 @@ msgstr "Plus"
msgid "More feeds"
msgstr "Plus de fils d’actu"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Plus d’options"
@@ -3349,11 +3557,13 @@ msgstr "Cinéma"
msgid "Music"
msgstr "Musique"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Masquer"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Masquer {truncatedTag}"
@@ -3362,11 +3572,11 @@ msgstr "Masquer {truncatedTag}"
msgid "Mute Account"
msgstr "Masquer le compte"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Masquer les comptes"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Masquer tous les posts {displayTag}"
@@ -3376,48 +3586,68 @@ msgid "Mute conversation"
msgstr "Masquer la conversation"
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Masquer dans les mots-clés uniquement"
+#~ msgid "Mute in tags only"
+#~ msgstr "Masquer dans les mots-clés uniquement"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Masquer dans le texte et les mots-clés"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Masquer dans le texte et les mots-clés"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Masquer la liste"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Masquer ces comptes ?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Masquer ce mot dans le texte du post et les mots-clés"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Masquer ce mot dans les mots-clés uniquement"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Masquer ce fil de discussion"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Masquer les mots et les mots-clés"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Masqué"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Comptes masqués"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Comptes masqués"
@@ -3426,7 +3656,7 @@ msgstr "Comptes masqués"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Les comptes masqués voient leurs posts supprimés de votre fil d’actu et de vos notifications. Cette option est totalement privée."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Masqué par « {0} »"
@@ -3434,7 +3664,7 @@ msgstr "Masqué par « {0} »"
msgid "Muted words & tags"
msgstr "Les mots et les mots-clés masqués"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Ce que vous masquez reste privé. Les comptes masqués peuvent interagir avec vous, mais vous ne verrez pas leurs posts et ne recevrez pas de notifications de leur part."
@@ -3443,7 +3673,7 @@ msgstr "Ce que vous masquez reste privé. Les comptes masqués peuvent interagir
msgid "My Birthday"
msgstr "Ma date de naissance"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Mes fils d’actu"
@@ -3451,11 +3681,11 @@ msgstr "Mes fils d’actu"
msgid "My Profile"
msgstr "Mon profil"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Mes fils d’actu enregistrés"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Mes fils d’actu enregistrés"
@@ -3480,7 +3710,7 @@ msgstr "Nom ou description qui viole les normes communautaires"
msgid "Nature"
msgstr "Nature"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr "Navigue vers {0}"
@@ -3494,7 +3724,7 @@ msgstr "Navigue vers le kit de démarrage"
msgid "Navigates to the next screen"
msgstr "Navigue vers le prochain écran"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Navigue vers votre profil"
@@ -3502,7 +3732,7 @@ msgstr "Navigue vers votre profil"
msgid "Need to report a copyright violation?"
msgstr "Besoin de signaler une violation des droits d’auteur ?"
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Ne perdez jamais l’accès à vos abonné·e·s ou à vos données."
@@ -3510,7 +3740,7 @@ msgstr "Ne perdez jamais l’accès à vos abonné·e·s ou à vos données."
msgid "Nevermind, create a handle for me"
msgstr "Peu importe, créez un pseudo pour moi"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Nouveau"
@@ -3546,12 +3776,12 @@ msgctxt "action"
msgid "New post"
msgstr "Nouveau post"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Nouveau post"
@@ -3585,10 +3815,10 @@ msgstr "Actualités"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3599,17 +3829,17 @@ msgstr "Suivant"
msgid "Next image"
msgstr "Image suivante"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Non"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Aucune description"
@@ -3626,12 +3856,12 @@ msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose."
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Ne suit plus {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Pas plus de 253 caractères"
@@ -3643,7 +3873,7 @@ msgstr "Pas encore de messages"
msgid "No more conversations to show"
msgstr "Plus aucune conversation à afficher"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Pas encore de notifications !"
@@ -3654,6 +3884,10 @@ msgstr "Pas encore de notifications !"
msgid "No one"
msgstr "Personne"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr "Pas encore de posts."
@@ -3667,11 +3901,11 @@ msgstr "Aucun résultat"
msgid "No results"
msgstr "Aucun résultat"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Aucun résultat trouvé"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Aucun résultat trouvé pour « {query} »"
@@ -3692,13 +3926,13 @@ msgstr "Pas de résultats pour « {search} »."
msgid "No thanks"
msgstr "Non merci"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Personne"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "Personne ne peut répondre"
+#~ msgid "Nobody can reply"
+#~ msgstr "Personne ne peut répondre"
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -3713,7 +3947,7 @@ msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre.
msgid "Non-sexual Nudity"
msgstr "Nudité non sexuelle"
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Introuvable"
@@ -3724,12 +3958,12 @@ msgid "Not right now"
msgstr "Pas maintenant"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Note sur le partage"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Remarque : Bluesky est un réseau ouvert et public. Ce paramètre limite uniquement la visibilité de votre contenu sur l’application et le site Web de Bluesky, et d’autres applications peuvent ne pas respecter ce paramètre. Votre contenu peut toujours être montré aux personnes non connectées par d’autres applications et sites Web."
@@ -3739,16 +3973,16 @@ msgstr "Rien ici"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "Filtres de notification"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "Paramètres de notification"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "Paramètres de notification"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -3758,14 +3992,14 @@ msgstr "Sons de notification"
msgid "Notification Sounds"
msgstr "Sons de notification"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Notifications"
@@ -3790,12 +4024,12 @@ msgid "Off"
msgstr "Éteint"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Oh non !"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Oh non ! Il y a eu un problème."
@@ -3819,7 +4053,7 @@ msgstr "sur"
msgid "on {str}"
msgstr "le {str}"
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Réinitialiser le didacticiel"
@@ -3827,7 +4061,7 @@ msgstr "Réinitialiser le didacticiel"
msgid "Onboarding tour step {0}: {1}"
msgstr "Étape de la visite d’accueil {0} : {1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Une ou plusieurs images n’ont pas de texte alt."
@@ -3836,10 +4070,14 @@ msgid "Only .jpg and .png files are supported"
msgstr "Seuls les fichiers .jpg et .png sont acceptés"
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "Seul {0} peut répondre"
+#~ msgid "Only {0} can reply"
+#~ msgstr "Seul {0} peut répondre"
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Ne contient que des lettres, des chiffres et des traits d’union"
@@ -3847,7 +4085,7 @@ msgstr "Ne contient que des lettres, des chiffres et des traits d’union"
msgid "Oops, something went wrong!"
msgstr "Oups, quelque chose n’a pas marché !"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -3856,11 +4094,11 @@ msgstr "Oups, quelque chose n’a pas marché !"
msgid "Oops!"
msgstr "Oups !"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Ouvert"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "Ouvre le menu de raccourci du profil de {name}"
@@ -3873,8 +4111,8 @@ msgstr "Ouvre le créateur d’avatar"
msgid "Open conversation options"
msgstr "Ouvrir les options de conversation"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Ouvrir le sélecteur d’emoji"
@@ -3882,7 +4120,7 @@ msgstr "Ouvrir le sélecteur d’emoji"
msgid "Open feed options menu"
msgstr "Ouvrir le menu des options de fil d’actu"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Ouvrir des liens avec le navigateur interne à l’appli"
@@ -3898,20 +4136,20 @@ msgstr "Ouvrir les paramètres des mots masqués et mots-clés"
msgid "Open navigation"
msgstr "Navigation ouverte"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Ouvrir le menu d’options du post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "Ouvrir le menu du kit de démarrage"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Ouvrir la page Storybook"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Ouvrir le journal du système"
@@ -3919,11 +4157,11 @@ msgstr "Ouvrir le journal du système"
msgid "Opens {numItems} options"
msgstr "Ouvre {numItems} options"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "Ouvre une boîte de dialogue permettant de choisir qui peut répondre à ce fil de discussion"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Ouvre les paramètres d’accessibilité"
@@ -3931,19 +4169,23 @@ msgstr "Ouvre les paramètres d’accessibilité"
msgid "Opens additional details for a debug entry"
msgstr "Ouvre des détails supplémentaires pour une entrée de débug"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Ouvre l’appareil photo de l’appareil"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "Ouvre les paramètres de discussion"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Ouvre le rédacteur"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Ouvre les paramètres linguistiques configurables"
@@ -3951,7 +4193,7 @@ msgstr "Ouvre les paramètres linguistiques configurables"
msgid "Opens device photo gallery"
msgstr "Ouvre la galerie de photos de l’appareil"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Ouvre les paramètres d’intégration externe"
@@ -3973,27 +4215,27 @@ msgstr "Ouvre la sélection de GIF"
msgid "Opens list of invite codes"
msgstr "Ouvre la liste des codes d’invitation"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "Ouvre la fenêtre modale pour confirmer la désactivation du compte"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Ouvre la fenêtre modale pour confirmer la suppression du compte. Requiert un code e-mail."
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Ouvre une fenêtre modale pour changer le mot de passe de Bluesky"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Ouvre une fenêtre modale pour choisir un nouveau pseudo Bluesky"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Ouvre une fenêtre modale pour télécharger les données du compte Bluesky (dépôt)"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Ouvre une fenêtre modale pour la vérification de l’e-mail"
@@ -4001,7 +4243,7 @@ msgstr "Ouvre une fenêtre modale pour la vérification de l’e-mail"
msgid "Opens modal for using custom domain"
msgstr "Ouvre une fenêtre modale pour utiliser un domaine personnalisé"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Ouvre les paramètres de modération"
@@ -4009,15 +4251,15 @@ msgstr "Ouvre les paramètres de modération"
msgid "Opens password reset form"
msgstr "Ouvre le formulaire de réinitialisation du mot de passe"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Ouvre l’écran avec tous les fils d’actu enregistrés"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Ouvre les paramètres du mot de passe de l’application"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Ouvre les préférences du fil d’actu « Following »"
@@ -4025,21 +4267,21 @@ msgstr "Ouvre les préférences du fil d’actu « Following »"
msgid "Opens the linked website"
msgstr "Ouvre le site web lié"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Ouvre la page de l’historique"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Ouvre la page du journal système"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Ouvre les préférences relatives aux fils de discussion"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "Ouvre ce profil"
@@ -4052,11 +4294,15 @@ msgid "Option {0} of {numItems}"
msgstr "Option {0} sur {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Ajoutez des informations supplémentaires ci-dessous (optionnel) :"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Ou une combinaison de ces options :"
@@ -4076,6 +4322,10 @@ msgstr "Autre"
msgid "Other account"
msgstr "Autre compte"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Autre…"
@@ -4084,7 +4334,7 @@ msgstr "Autre…"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Notre modération a examiné les signalements qu’elle a reçu et a décidé de désactiver votre accès aux discussions sur Bluesky."
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Page introuvable"
@@ -4113,19 +4363,24 @@ msgid "Password updated!"
msgstr "Mot de passe mis à jour !"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Mettre en pause"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Personnes"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Personnes suivies par @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Personnes qui suivent @{0}"
@@ -4155,7 +4410,7 @@ msgid "Pictures meant for adults."
msgstr "Images destinées aux adultes."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Ajouter à l’accueil"
@@ -4167,11 +4422,12 @@ msgstr "Ajouter à l’accueil"
msgid "Pinned Feeds"
msgstr "Fils épinglés"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "Épinglé à vos fils d’actu"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Lire"
@@ -4183,6 +4439,11 @@ msgstr "Lire {0}"
msgid "Play or pause the GIF"
msgstr "Lire ou mettre en pause le GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4192,16 +4453,16 @@ msgstr "Lire la vidéo"
msgid "Plays the GIF"
msgstr "Lit le GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Veuillez choisir votre pseudo."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Veuillez choisir votre mot de passe."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Veuillez compléter le captcha de vérification."
@@ -4217,11 +4478,11 @@ msgstr "Veuillez entrer un nom pour votre mot de passe d’application. Les espa
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Veuillez saisir un nom unique pour le mot de passe de l’application ou utiliser celui que nous avons généré de manière aléatoire."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Veuillez entrer un mot, un mot-clé ou une phrase valide à masquer"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Veuillez entrer votre e-mail."
@@ -4234,7 +4495,7 @@ msgstr "Veuillez saisir votre code d’invitation."
msgid "Please enter your password as well:"
msgstr "Veuillez également entrer votre mot de passe :"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Veuillez expliquer pourquoi vous pensez que cette étiquette a été appliquée à tort par {0}"
@@ -4251,7 +4512,7 @@ msgstr "Veuillez vous identifier comme @{0}"
msgid "Please Verify Your Email"
msgstr "Veuillez vérifier votre e-mail"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Veuillez patienter le temps que votre carte de lien soit chargée"
@@ -4264,45 +4525,50 @@ msgstr "Politique"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Poster"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Post de {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Post de @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Post supprimé"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Post caché"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Post caché par mot masqué"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Post caché par vous"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Langue du post"
@@ -4311,23 +4577,27 @@ msgstr "Langue du post"
msgid "Post Languages"
msgstr "Langues du post"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Post introuvable"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "posts"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Posts"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Les posts peuvent être masqués en fonction de leur texte, de leurs mots-clés ou des deux."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Les posts peuvent être masqués en fonction de leur texte, de leurs mots-clés ou des deux."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4339,7 +4609,7 @@ msgstr "Lien potentiellement trompeur"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "Préférence enregistrée"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -4349,7 +4619,7 @@ msgstr "Appuyer pour tenter une reconnection"
msgid "Press to change hosting provider"
msgstr "Appuyer pour changer d’hébergeur"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4364,7 +4634,7 @@ msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez
msgid "Previous image"
msgstr "Image précédente"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Langue principale"
@@ -4374,18 +4644,18 @@ msgstr "Définissez des priorités de vos suivis"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "Notifications prioritaires"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Vie privée"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Charte de confidentialité"
@@ -4397,16 +4667,16 @@ msgstr "Discuter en privé avec d’autres comptes."
msgid "Processing..."
msgstr "Traitement…"
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "profil"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Profil"
@@ -4414,11 +4684,11 @@ msgstr "Profil"
msgid "Profile updated"
msgstr "Profil mis à jour"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Protégez votre compte en vérifiant votre e-mail."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Public"
@@ -4426,15 +4696,15 @@ msgstr "Public"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Listes publiques et partageables de comptes à masquer ou à bloquer."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Les listes publiques et partageables qui peuvent alimenter les fils d’actu."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Publier le post"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Publier la réponse"
@@ -4454,13 +4724,46 @@ msgstr "Code QR enregistré dans votre photothèque !"
msgid "Quick tip"
msgstr "Petite astuce"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Citer le post"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aléatoire"
@@ -4469,15 +4772,32 @@ msgstr "Aléatoire"
msgid "Ratios"
msgstr "Ratios"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "Réactiver votre compte"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "Raison :"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Recherches récentes"
@@ -4487,21 +4807,22 @@ msgstr "Se reconnecter"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "Rafraîchir les notifications"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "Rafraîchir les conversations"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Supprimer"
@@ -4509,11 +4830,11 @@ msgstr "Supprimer"
msgid "Remove {displayName} from starter pack"
msgstr "Supprimer {displayName} du kit de démarrage"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Supprimer compte"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Supprimer l’avatar"
@@ -4526,8 +4847,8 @@ msgid "Remove embed"
msgstr "Supprimer l’intégration"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Supprimer le fil d’actu"
@@ -4535,19 +4856,27 @@ msgstr "Supprimer le fil d’actu"
msgid "Remove feed?"
msgstr "Supprimer le fil d’actu ?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Supprimer de mes fils d’actu"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Supprimer de mes fils d’actu ?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Supprimer l’image"
@@ -4556,24 +4885,24 @@ msgstr "Supprimer l’image"
msgid "Remove image preview"
msgstr "Supprimer l’aperçu d’image"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Supprimer le mot masqué de votre liste"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "Supprimer le profil"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "Supprimer le profil de l’historique de recherche"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "Supprimer la citation"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Supprimer le repost"
@@ -4581,26 +4910,35 @@ msgstr "Supprimer le repost"
msgid "Remove this feed from your saved feeds"
msgstr "Supprimer ce fil d’actu de vos fils d’actu enregistrés"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Supprimé de la liste"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Supprimé de mes fils d’actu"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Supprimé de vos fils d’actu"
-#: src/view/com/composer/ExternalEmbed.tsx:88
-#~ msgid "Removes default thumbnail from {0}"
-#~ msgstr "Supprime la miniature par défaut de {0}"
-
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "Supprime le post cité"
@@ -4608,8 +4946,8 @@ msgstr "Supprime le post cité"
msgid "Removes the image preview"
msgstr "Supprime l’aperçu de l’image"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Remplacer par Discover"
@@ -4617,40 +4955,75 @@ msgstr "Remplacer par Discover"
msgid "Replies"
msgstr "Réponses"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "Les réponses sont désactivées"
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Les réponses à ce fil de discussion sont désactivées"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Les réponses à ce fil de discussion sont désactivées"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Répondre"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Filtres de réponse"
+#~ msgid "Reply Filters"
+#~ msgstr "Filtres de réponse"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Réponse à <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Réponse à un post bloqué"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr "Réponse à vous"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -4677,7 +5050,7 @@ msgstr "Fenêtre de dialogue de signalement"
msgid "Report feed"
msgstr "Signaler le fil d’actu"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Signaler la liste"
@@ -4685,13 +5058,13 @@ msgstr "Signaler la liste"
msgid "Report message"
msgstr "Signaler le message"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Signaler le post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "Signaler le kit de démarrage"
@@ -4725,47 +5098,48 @@ msgstr "Signaler ce kit de démarrage"
msgid "Report this user"
msgstr "Signaler ce compte"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Republier"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Republier"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Republier ou citer"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Republié par"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Republié par {0}"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Republié par <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr "Republié par vous"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "a republié votre post"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Reposts de ce post"
@@ -4779,7 +5153,7 @@ msgstr "Demande de modification"
msgid "Request Code"
msgstr "Demander un code"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Nécessiter un texte alt avant de publier"
@@ -4804,8 +5178,8 @@ msgstr "Réinitialiser le code"
msgid "Reset Code"
msgstr "Code de réinitialisation"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Réinitialisation du didacticiel"
@@ -4813,16 +5187,16 @@ msgstr "Réinitialisation du didacticiel"
msgid "Reset password"
msgstr "Réinitialiser mot de passe"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Réinitialiser l’état des préférences"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Réinitialise l’état d’accueil"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Réinitialise l’état des préférences"
@@ -4836,23 +5210,26 @@ msgid "Retries the last action, which errored out"
msgstr "Réessaye la dernière action, qui a échoué"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Réessayer"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Retourne à la page précédente"
@@ -4866,7 +5243,8 @@ msgid "Returns to previous page"
msgstr "Retour à la page précédente"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -4916,7 +5294,7 @@ msgstr "Enregistrer le code QR"
msgid "Save to my feeds"
msgstr "Enregistrer dans mes fils d’actu"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Fils d’actu enregistrés"
@@ -4925,7 +5303,7 @@ msgid "Saved to your camera roll"
msgstr "Enregistré dans votre photothèque"
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Enregistré à mes fils d’actu"
@@ -4943,8 +5321,8 @@ msgstr "Enregistre les paramètres de recadrage de l’image"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "Dites bonjour !"
@@ -4953,13 +5331,12 @@ msgstr "Dites bonjour !"
msgid "Science"
msgstr "Science"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Remonter en haut"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -4968,14 +5345,12 @@ msgstr "Remonter en haut"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Recherche"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Recherche de « {query} »"
@@ -4983,11 +5358,11 @@ msgstr "Recherche de « {query} »"
msgid "Search for \"{searchText}\""
msgstr "Recherche de « {searchText} »"
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Rechercher tous les posts de @{authorHandle} avec le mot-clé {displayTag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Rechercher tous les posts avec le mot-clé {displayTag}"
@@ -4995,8 +5370,6 @@ msgstr "Rechercher tous les posts avec le mot-clé {displayTag}"
msgid "Search for feeds that you want to suggest to others."
msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes."
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Rechercher des comptes"
@@ -5020,23 +5393,27 @@ msgstr "Rechercher dans Tenor"
msgid "Security Step Required"
msgstr "Étape de sécurité requise"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Voir les posts {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Voir les posts {truncatedTag} de ce compte"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Voir les posts <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Voir les posts <0>{displayTag}0> de ce compte"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Voir ce guide"
@@ -5072,7 +5449,11 @@ msgstr "Sélectionner le GIF"
msgid "Select GIF \"{0}\""
msgstr "Sélectionner le GIF « {0} »"
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Sélectionner les langues"
@@ -5088,7 +5469,7 @@ msgstr "Sélectionne l’option {i} sur {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Sélectionner l’emoji {emojiName} comme avatar"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Sélectionnez le(s) service(s) de modération destinataires du signalement"
@@ -5100,7 +5481,11 @@ msgstr "Sélectionnez le service qui héberge vos données."
msgid "Select video"
msgstr "Sélectionner une vidéo"
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Sélectionnez les langues que vous souhaitez voir figurer dans les fils d’actu que vous suivez. Si aucune langue n’est sélectionnée, toutes les langues seront affichées."
@@ -5112,11 +5497,11 @@ msgstr "Sélectionnez votre langue par défaut pour les textes de l’applicatio
msgid "Select your date of birth"
msgstr "Sélectionnez votre date de naissance"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu."
@@ -5138,7 +5523,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Envoyer l’e-mail"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Envoyer des commentaires"
@@ -5153,8 +5538,8 @@ msgstr "Envoyer le post à…"
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Envoyer le rapport"
@@ -5167,8 +5552,8 @@ msgstr "Envoyer le rapport à {0}"
msgid "Send verification email"
msgstr "Envoyer l’e-mail de vérification"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "Envoyer par message privé"
@@ -5180,7 +5565,7 @@ msgstr "Envoie un e-mail avec le code de confirmation pour la suppression du com
msgid "Server address"
msgstr "Adresse du serveur"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Entrez votre date de naissance"
@@ -5188,15 +5573,15 @@ msgstr "Entrez votre date de naissance"
msgid "Set new password"
msgstr "Définir un nouveau mot de passe"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Choisissez « Non » pour cacher toutes les citations sur votre fils d’actu. Les reposts seront toujours visibles."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Choisissez « Non » pour cacher toutes les réponses dans votre fils d’actu."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Choisissez « Non » pour cacher toutes les reposts de votre fils d’actu."
@@ -5204,7 +5589,7 @@ msgstr "Choisissez « Non » pour cacher toutes les reposts de votre fils d’
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Choisissez « Oui » pour afficher les réponses dans un fil de discussion. C’est une fonctionnalité expérimentale."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Choisissez « Oui » pour afficher des échantillons de vos fils d’actu enregistrés dans votre fil d’actu « Following ». C’est une fonctionnalité expérimentale."
@@ -5217,24 +5602,24 @@ msgid "Sets Bluesky username"
msgstr "Définit le pseudo Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Change le thème de couleur en sombre"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Change le thème de couleur en sombre"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Change le thème de couleur en clair"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Change le thème de couleur en clair"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Change le thème de couleur en fonction du paramètre système"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Change le thème de couleur en fonction du paramètre système"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Change le thème sombre comme étant le plus sombre"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Change le thème sombre comme étant le plus sombre"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Change le thème sombre comme étant le thème atténué"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Change le thème sombre comme étant le thème atténué"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5252,11 +5637,11 @@ msgstr "Définit le rapport d’aspect de l’image comme portrait"
msgid "Sets image aspect ratio to wide"
msgstr "Définit le rapport d’aspect de l’image comme paysage"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Paramètres"
@@ -5269,14 +5654,14 @@ msgid "Sexually Suggestive"
msgstr "Sexuellement suggestif"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Partager"
@@ -5294,8 +5679,8 @@ msgid "Share a fun fact!"
msgstr "Partagez une anecdote insolite !"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Partager quand même"
@@ -5306,7 +5691,7 @@ msgstr "Partager le fil d’actu"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "Partager le lien"
@@ -5324,7 +5709,7 @@ msgstr "Dialogue pour le partage d’un lien"
msgid "Share QR code"
msgstr "Partager le code QR"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "Partagez ce kit de démarrage"
@@ -5336,7 +5721,7 @@ msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre commu
msgid "Share your favorite feed!"
msgstr "Partagez votre fil d’actu favori !"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr "Testeur de préférences partagées"
@@ -5347,7 +5732,7 @@ msgstr "Partage le site web lié"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Afficher"
@@ -5355,8 +5740,9 @@ msgstr "Afficher"
msgid "Show alt text"
msgstr "Voir le texte alt"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Afficher quand même"
@@ -5377,19 +5763,23 @@ msgstr "Afficher les suivis similaires à {0}"
msgid "Show hidden replies"
msgstr "Afficher les réponses cachées"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "En montrer moins comme ça"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Voir plus"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "En montrer plus comme ça"
@@ -5397,15 +5787,15 @@ msgstr "En montrer plus comme ça"
msgid "Show muted replies"
msgstr "Afficher les réponses masquées"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Afficher les posts de mes fils d’actu"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Afficher les citations"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Afficher les réponses"
@@ -5413,7 +5803,12 @@ msgstr "Afficher les réponses"
msgid "Show replies by people you follow before all other replies."
msgstr "Afficher les réponses des personnes que vous suivez avant toutes les autres réponses."
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Afficher les reposts"
@@ -5471,11 +5866,15 @@ msgstr "Connectez-vous ou créez votre compte pour participer à la conversation
msgid "Sign into Bluesky or create a new account"
msgstr "Connectez-vous à Bluesky ou créez un nouveau compte"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Déconnexion"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5497,7 +5896,7 @@ msgstr "S’inscrire ou se connecter pour participer à la conversation"
msgid "Sign-in Required"
msgstr "Connexion requise"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Connecté en tant que"
@@ -5506,21 +5905,25 @@ msgstr "Connecté en tant que"
msgid "Signed in as @{0}"
msgstr "Connecté en tant que @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "s’est inscrit·e avec votre kit de démarrage"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "S’inscrire sans kit de démarrage"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Ignorer"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Passer cette étape"
@@ -5529,12 +5932,11 @@ msgstr "Passer cette étape"
msgid "Software Dev"
msgstr "Développement de logiciels"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr "Quelques autres fils d’actu qui pourraient vous intéresser"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "Quelques comptes peuvent répondre"
@@ -5553,13 +5955,13 @@ msgstr "Quelque chose n’a pas marché, veuillez réessayer"
msgid "Something went wrong, please try again."
msgstr "Quelque chose n’a pas marché, veuillez réessayer."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
-msgstr ""
+msgstr "Quelque chose n’a pas marché !"
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Désolé ! Votre session a expiré. Essayez de vous reconnecter."
@@ -5572,8 +5974,12 @@ msgid "Sort replies to the same post by:"
msgstr "Trier les réponses au même post par :"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "Source : <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr "Source : <0>{0}0>"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -5610,17 +6016,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr "Début de la fenêtre de la visite d’accueil. Ne revenez pas en arrière. Allez plutôt vers l’avant pour plus d’options, ou appuyez pour passer."
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "Kit de démarrage"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "Kit de démarrage par {0}"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "Le kit de démarrage n’est pas valide"
@@ -5632,31 +6038,31 @@ msgstr "Kits de démarrage"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d’actu et vos personnes préférées avec vos ami·e·s."
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "État du service"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Étape {0} sur {1}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Stockage effacé, vous devez redémarrer l’application maintenant."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Historique"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Envoyer"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "S’abonner"
@@ -5672,16 +6078,15 @@ msgstr "S’abonner à l’étiqueteur"
msgid "Subscribe to this labeler"
msgstr "S’abonner à cet étiqueteur"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "S’abonner à cette liste"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "Comptes suggérés"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Suggérés pour vous"
@@ -5689,7 +6094,7 @@ msgstr "Suggérés pour vous"
msgid "Suggestive"
msgstr "Suggestif"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -5704,30 +6109,35 @@ msgstr "Changer de compte"
msgid "Switch between feeds to control your experience."
msgstr "Basculez d’un fil d’actu à l’autre pour contrôler votre expérience."
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Basculer sur {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Bascule le compte auquel vous êtes connectés vers"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Système"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Journal système"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "mot-clé"
+#~ msgid "tag"
+#~ msgstr "mot-clé"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Menu de mot-clé : {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Grand"
@@ -5736,11 +6146,19 @@ msgstr "Grand"
msgid "Tap to dismiss"
msgstr "Tapper pour annuler"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Tapper pour voir en entier"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr "Tâche accomplie - 10 likes !"
@@ -5765,11 +6183,11 @@ msgstr "Dites-nous en un peu plus"
msgid "Terms"
msgstr "Conditions générales"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Conditions d’utilisation"
@@ -5781,16 +6199,20 @@ msgid "Terms used violate community standards"
msgstr "Termes utilisés qui violent les normes de la communauté"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "texte"
+#~ msgid "text"
+#~ msgstr "texte"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Champ de saisie de texte"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Nous vous remercions. Votre rapport a été envoyé."
@@ -5798,24 +6220,37 @@ msgstr "Nous vous remercions. Votre rapport a été envoyé."
msgid "That contains the following:"
msgstr "Qui contient les éléments suivants :"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Ce pseudo est déjà occupé."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "Ce kit de démarrage n’a pas pu être trouvé."
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
msgstr "Ce compte pourra interagir avec vous après le déblocage."
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>"
@@ -5824,12 +6259,16 @@ msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr "Le fil d’actu « Discover » sait désormais ce que vous aimez"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "L’expérience est meilleure dans l’application. Téléchargez Bluesky maintenant et nous reprendrons là où vous en étiez."
@@ -5837,11 +6276,11 @@ msgstr "L’expérience est meilleure dans l’application. Téléchargez Bluesk
msgid "The feed has been replaced with Discover."
msgstr "Ce fil d’actu a été remplacé par Discover."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Les étiquettes suivantes ont été appliquées à votre compte."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Les étiquettes suivantes ont été appliquées à votre contenu."
@@ -5849,8 +6288,8 @@ msgstr "Les étiquettes suivantes ont été appliquées à votre contenu."
msgid "The following steps will help customize your Bluesky experience."
msgstr "Les étapes suivantes vous aideront à personnaliser votre expérience avec Bluesky."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Ce post a peut-être été supprimé."
@@ -5858,7 +6297,11 @@ msgstr "Ce post a peut-être été supprimé."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Notre politique de confidentialité a été déplacée vers <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place."
@@ -5895,24 +6338,24 @@ msgid "There was an issue connecting to Tenor."
msgstr "Il y a eu un problème de connexion à Tenor."
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Il y a eu un problème de connexion au serveur"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Il y a eu un problème de connexion à votre serveur"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
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/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
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."
@@ -5920,13 +6363,13 @@ msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Il y a eu un problème lors de la récupération de la liste. Appuyez ici pour réessayer."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Il y a eu un problème lors de la récupération de vos listes. Appuyez ici pour réessayer."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Il y a eu un problème lors de l’envoi de votre rapport. Veuillez vérifier votre connexion internet."
@@ -5948,16 +6391,19 @@ msgstr "Il y a eu un problème lors de la récupération de vos mots de passe d
msgid "There was an issue! {0}"
msgstr "Il y a eu un problème ! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Il y a eu un problème. Veuillez vérifier votre connexion Internet et réessayez."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Un problème inattendu s’est produit dans l’application. N’hésitez pas à nous faire savoir si cela vous est arrivé !"
@@ -5966,11 +6412,11 @@ msgstr "Un problème inattendu s’est produit dans l’application. N’hésite
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Il y a eu un afflux de nouveaux personnes sur Bluesky ! Nous activerons ton compte dès que possible."
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Ce {screenDescription} a été signalé :"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Ce compte a demandé aux personnes de se connecter pour voir son profil."
@@ -5979,8 +6425,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr "Ce compte est bloqué par un ou plusieurs de vos listes de modération. Pour le débloquer, veuillez visiter les listes directement et en retirer ce compte."
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Cet appel sera envoyé à <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Cet appel sera envoyé à <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6002,8 +6452,8 @@ msgstr "Ce contenu a reçu un avertissement général de la part de la modérati
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Ce contenu est hébergé par {0}. Voulez-vous activer les médias externes ?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Ce contenu n’est pas disponible car l’un des comptes impliqués a bloqué l’autre."
@@ -6029,7 +6479,7 @@ msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de compt
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "Ce fil d’actu est vide."
@@ -6045,15 +6495,15 @@ msgstr "Ces informations ne sont pas partagées avec d’autres personnes."
msgid "This is important in case you ever need to change your email or reset your password."
msgstr "Ceci est important au cas où vous auriez besoin de changer d’e-mail ou de réinitialiser votre mot de passe."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "Cette étiquette a été apposée par <0>{0}0>."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "Cette étiquette a été apposée par l’auteur·ice."
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "Cette étiquette a été apposée par vous."
@@ -6065,7 +6515,11 @@ msgstr "Cet étiqueteur n’a pas déclaré les étiquettes qu’il publie et pe
msgid "This link is taking you to the following website:"
msgstr "Ce lien vous conduit au site Web suivant :"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Cette liste est vide !"
@@ -6077,23 +6531,35 @@ msgstr "Ce service de modération n’est pas disponible. Voir ci-dessous pour p
msgid "This name is already in use"
msgstr "Ce nom est déjà utilisé"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Ce post a été supprimé."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Ce post n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Ce post sera masqué des fils d’actu."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Ce post sera masqué des fils d’actu."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Ce profil n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Ce service n’a pas fourni de conditions d’utilisation ni de politique de confidentialité."
@@ -6110,8 +6576,8 @@ msgstr "Ce compte n’a pas d’abonné·e·s."
msgid "This user has blocked you"
msgstr "Ce compte vous a bloqué·e"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Ce compte vous a bloqué. Vous ne pouvez pas voir son contenu."
@@ -6119,11 +6585,11 @@ msgstr "Ce compte vous a bloqué. Vous ne pouvez pas voir son contenu."
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "Cette personne a demandé que son contenu ne soit affiché qu’aux personnes connectées."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Ce compte est inclus dans la liste <0>{0}0> que vous avez bloquée."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Ce compte est inclus dans la liste <0>{0}0> que vous avez masquée."
@@ -6135,28 +6601,40 @@ msgstr "Ce compte est nouveau ici. Appuyez pour obtenir plus d’informations su
msgid "This user isn't following anyone."
msgstr "Ce compte ne suit personne."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Cela supprimera {0} de vos mots masqués. Vous pourrez toujours le réintégrer plus tard."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Cela supprimera {0} de vos mots masqués. Vous pourrez toujours le réintégrer plus tard."
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Préférences des fils de discussion"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Préférences des fils de discussion"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "Paramètres du fil de discussion mis à jour"
+#~ msgid "Thread settings updated"
+#~ msgstr "Paramètres du fil de discussion mis à jour"
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Mode arborescent"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Préférences des fils de discussion"
@@ -6173,14 +6651,14 @@ msgid "To whom would you like to send this report?"
msgstr "À qui souhaitez-vous envoyer ce rapport ?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Basculer entre les options pour les mots masqués."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Basculer entre les options pour les mots masqués."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Activer le menu déroulant"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Activer ou désactiver le contenu pour adultes"
@@ -6195,10 +6673,10 @@ msgstr "Transformations"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Traduire"
@@ -6211,7 +6689,7 @@ msgstr "Réessayer"
msgid "TV"
msgstr "TV"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Authentification à deux facteurs"
@@ -6223,11 +6701,11 @@ msgstr "Écrivez votre message ici"
msgid "Type:"
msgstr "Type :"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Débloquer la liste"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Réafficher cette liste"
@@ -6235,12 +6713,12 @@ msgstr "Réafficher cette liste"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Impossible de contacter votre service. Veuillez vérifier votre connexion Internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "Impossible de supprimer"
@@ -6251,7 +6729,7 @@ msgstr "Impossible de supprimer"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Débloquer"
@@ -6275,9 +6753,9 @@ msgstr "Débloquer le compte"
msgid "Unblock Account?"
msgstr "Débloquer le compte ?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Annuler le repost"
@@ -6287,8 +6765,8 @@ msgid "Unfollow"
msgstr "Se désabonner"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Se désabonner"
+#~ msgid "Unfollow"
+#~ msgstr "Se désabonner"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6303,12 +6781,14 @@ msgstr "Se désabonner du compte"
msgid "Unlike this feed"
msgstr "Déliker ce fil d’actu"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Réafficher"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Réafficher {truncatedTag}"
@@ -6317,7 +6797,7 @@ msgstr "Réafficher {truncatedTag}"
msgid "Unmute Account"
msgstr "Réafficher ce compte"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Réafficher tous les posts {displayTag}"
@@ -6325,13 +6805,21 @@ msgstr "Réafficher tous les posts {displayTag}"
msgid "Unmute conversation"
msgstr "Réafficher la conversation"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Réafficher ce fil de discussion"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Désépingler"
@@ -6339,11 +6827,11 @@ msgstr "Désépingler"
msgid "Unpin from home"
msgstr "Désépingler de l’accueil"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Supprimer la liste de modération"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "Désépinglé de vos fils d’actu"
@@ -6351,16 +6839,25 @@ msgstr "Désépinglé de vos fils d’actu"
msgid "Unsubscribe"
msgstr "Se désabonner"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Se désabonner de cet étiqueteur"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Unwanted Sexual Content"
msgstr "Contenu sexuel non désiré"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Mise à jour de {displayName} dans les listes"
@@ -6368,6 +6865,14 @@ msgstr "Mise à jour de {displayName} dans les listes"
msgid "Update to {handle}"
msgstr "Mettre à jour pour {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Mise à jour…"
@@ -6380,20 +6885,20 @@ msgstr "Envoyer plutôt une photo"
msgid "Upload a text file to:"
msgstr "Envoyer un fichier texte vers :"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Envoyer à partir de l’appareil photo"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Envoyer à partir de fichiers"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6441,12 +6946,12 @@ msgstr "Utilisez-le pour vous connecter à l’autre application avec votre iden
msgid "Used by:"
msgstr "Utilisé par :"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Compte bloqué"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Compte bloqué par « {0} »"
@@ -6454,30 +6959,28 @@ msgstr "Compte bloqué par « {0} »"
msgid "User blocked by list"
msgstr "Compte bloqué par liste"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Compte bloqué par liste"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Compte qui vous bloque"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Compte qui vous bloque"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Liste de compte de {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Liste de compte par <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Liste de compte par vous"
@@ -6489,7 +6992,7 @@ msgstr "Liste de compte créée"
msgid "User list updated"
msgstr "Liste de compte mise à jour"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Listes de comptes"
@@ -6497,13 +7000,17 @@ msgstr "Listes de comptes"
msgid "Username or email address"
msgstr "Pseudo ou e-mail"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Comptes"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "comptes suivis par <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "comptes suivis par <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -6512,7 +7019,7 @@ msgstr "comptes suivis par <0/>"
msgid "Users I follow"
msgstr "Comptes que je suis"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Comptes dans « {0} »"
@@ -6528,15 +7035,15 @@ msgstr "Valeur :"
msgid "Verify DNS Record"
msgstr "Vérifier l’enregistrement DNS"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Confirmer l’e-mail"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Confirmer mon e-mail"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Confirmer mon e-mail"
@@ -6553,31 +7060,44 @@ msgstr "Vérifier le fichier texte"
msgid "Verify Your Email"
msgstr "Vérifiez votre e-mail"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "Version {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Jeux vidéo"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr "Les vidéos ne peuvent pas dépasser 100 Mo"
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr "Les vidéos ne peuvent pas dépasser 100 Mo"
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Voir l’avatar de {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "Voir le profil de {0}"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "Voir le profil du compte bloqué"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Afficher l’entrée de débogage"
@@ -6590,7 +7110,7 @@ msgstr "Voir les détails"
msgid "View details for reporting a copyright violation"
msgstr "Voir les détails pour signaler une violation du droit d’auteur"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Voir le fil de discussion entier"
@@ -6601,12 +7121,12 @@ msgstr "Voir les informations sur ces étiquettes"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Voir le profil"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Afficher l’avatar"
@@ -6618,11 +7138,23 @@ msgstr "Voir le service d’étiquetage fourni par @{0}"
msgid "View users who like this feed"
msgstr "Voir les comptes qui a liké ce fil d’actu"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr "Consultez vos fils d’actu et explorez-en plus"
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -6654,7 +7186,7 @@ msgstr "Nous ne pouvons pas charger cette conversation"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Nous estimons que votre compte sera prêt dans {estimatedTime}."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Nous espérons que vous passerez un excellent moment. N’oubliez pas que Bluesky est :"
@@ -6663,18 +7195,18 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Nous n’avons plus de posts provenant des comptes que vous suivez. Voici le dernier de <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Nous vous recommandons d’éviter les mots communs qui apparaissent dans de nombreux posts, car cela peut avoir pour conséquence qu’aucun post ne s’affiche."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Nous vous recommandons d’éviter les mots communs qui apparaissent dans de nombreux posts, car cela peut avoir pour conséquence qu’aucun post ne s’affiche."
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Nous n’avons pas pu charger vos préférences en matière de date de naissance. Veuillez réessayer."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "Nous n’avons pas pu charger vos étiqueteurs configurés pour le moment."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer à configurer votre compte. Si l’échec persiste, vous pouvez sauter cette étape."
@@ -6682,7 +7214,7 @@ msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer
msgid "We will let you know when your account is ready."
msgstr "Nous vous informerons lorsque votre compte sera prêt."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Nous utiliserons ces informations pour personnaliser votre expérience."
@@ -6690,15 +7222,15 @@ msgstr "Nous utiliserons ces informations pour personnaliser votre expérience."
msgid "We're having network issues, try again"
msgstr "Nous avons des soucis de réseau, réessayez"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Nous sommes ravis de vous accueillir !"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Nous sommes désolés, mais nous n’avons pas pu charger cette liste. Si cela persiste, veuillez contacter l’origine de la liste, @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Nous sommes désolés, mais nous n’avons pas pu charger vos mots masqués pour le moment. Veuillez réessayer."
@@ -6706,11 +7238,11 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger vos mots masqu
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Nous sommes désolés, mais votre recherche a été annulée. Veuillez réessayer dans quelques minutes."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé."
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Nous sommes désolés ! La page que vous recherchez est introuvable."
@@ -6727,7 +7259,7 @@ msgstr "Bienvenue !"
msgid "Welcome, friend!"
msgstr "Bienvenue et enchanté !"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Quels sont vos centres d’intérêt ?"
@@ -6737,7 +7269,7 @@ msgstr "Quel est le nom de votre kit de démarrage ?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Quoi de neuf ?"
@@ -6749,22 +7281,26 @@ msgstr "Quelles sont les langues utilisées dans ce post ?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Quelles langues aimeriez-vous voir apparaître dans vos fils d’actu algorithmiques ?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "Qui peut discuter avec vous ?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Qui peut répondre ?"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "Dialogue qui permet de changer qui peut répondre"
+#~ msgid "Who can reply dialog"
+#~ msgstr "Dialogue qui permet de changer qui peut répondre"
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "Qui peut répondre ?"
+#~ msgid "Who can reply?"
+#~ msgstr "Qui peut répondre ?"
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -6808,12 +7344,12 @@ msgstr "Large"
msgid "Write a message"
msgstr "Écrire un message"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Rédiger un post"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Rédigez votre réponse"
@@ -6823,10 +7359,10 @@ msgid "Writers"
msgstr "Écrivain·e·s"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -6837,10 +7373,18 @@ msgstr "Oui"
msgid "Yes, deactivate"
msgstr "Oui, désactiver"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr "Oui, supprimer ce kit de démarrage"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "Oui, réactiver mon compte"
@@ -6849,7 +7393,8 @@ msgstr "Oui, réactiver mon compte"
msgid "Yesterday, {time}"
msgstr "Hier, {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "vous"
@@ -6907,11 +7452,11 @@ msgstr "Vous n’avez encore aucun code d’invitation ! Nous vous en enverrons
msgid "You don't have any pinned feeds."
msgstr "Vous n’avez encore aucun fil d’actu épinglé."
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Vous n’avez encore aucun fil d’actu enregistré."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Vous avez bloqué cet auteur ou vous avez été bloqué par celui-ci."
@@ -6919,9 +7464,9 @@ msgstr "Vous avez bloqué cet auteur ou vous avez été bloqué par celui-ci."
msgid "You have blocked this user"
msgstr "Vous avez bloqué ce compte"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Vous avez bloqué ce compte. Vous ne pouvez pas voir son contenu."
@@ -6932,20 +7477,20 @@ msgstr "Vous avez bloqué ce compte. Vous ne pouvez pas voir son contenu."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Vous avez introduit un code non valide. Il devrait ressembler à XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Vous avez caché ce post"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Vous avez caché ce post."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Vous avez masqué ce compte."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Vous avez masqué ce compte"
@@ -6953,12 +7498,12 @@ msgstr "Vous avez masqué ce compte"
msgid "You have no conversations yet. Start one!"
msgstr "Vous n’avez pas encore de conversations. Démarrez en une !"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Vous n’avez aucun fil d’actu."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Vous n’avez aucune liste."
@@ -6982,27 +7527,40 @@ msgstr "Vous avez atteint la fin"
msgid "You haven't created a starter pack yet!"
msgstr "Vous n’avez pas encore créé de kit de démarrage !"
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Vous n’avez pas encore masqué de mot ou de mot-clé"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "Vous pouvez faire appel des étiquettes poseés par des tiers si vous pensez qu’elles ont été appliquées par erreur."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Vous pouvez faire appel de ces étiquettes si vous estimez qu’elles ont été apposées par erreur."
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "Vous ne pouvez ajouter que 50 fils d’actu au maximum"
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr "Vous ne pouvez ajouter que 50 fils d’actu au maximum"
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "Vous ne pouvez ajouter que 50 profils au maximum"
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr "Vous ne pouvez ajouter que 50 profils au maximum"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Vous devez avoir 13 ans ou plus pour vous inscrire."
@@ -7018,7 +7576,7 @@ msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer u
msgid "You must grant access to your photo library to save the image."
msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer l’image."
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "Vous devez sélectionner au moins un étiqueteur pour un rapport"
@@ -7026,11 +7584,11 @@ msgstr "Vous devez sélectionner au moins un étiqueteur pour un rapport"
msgid "You previously deactivated @{0}."
msgstr "Vous avez précédemment désactivé @{0}."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Vous recevrez désormais des notifications pour ce fil de discussion"
@@ -7050,23 +7608,23 @@ msgstr "Vous : {defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "Vous : {short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous aurez créé votre compte !"
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Vous suivrez les comptes suggérés une fois que vous aurez créé votre compte !"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "Vous suivrez ces personnes et {0} autres"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "Vous suivrez ces personnes immédiatement"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "Vous resterez informé grâce à ces fils d’actu"
@@ -7081,12 +7639,12 @@ msgstr "Vous êtes dans la file d’attente"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Vous êtes connecté·e avec un mot de passe d’application. Veuillez vous connecter avec votre mot de passe principal pour continuer à désactiver votre compte."
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Vous êtes prêt à partir !"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Vous avez choisi de masquer un mot ou un mot-clé dans ce post."
@@ -7094,7 +7652,7 @@ msgstr "Vous avez choisi de masquer un mot ou un mot-clé dans ce post."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres comptes à suivre."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Votre compte"
@@ -7110,6 +7668,10 @@ msgstr "Le dépôt de votre compte, qui contient toutes les données publiques,
msgid "Your birth date"
msgstr "Votre date de naissance"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "Vos discussions ont été désactivées"
@@ -7119,7 +7681,7 @@ msgid "Your choice will be saved, but can be changed later in settings."
msgstr "Votre choix sera enregistré, mais vous pourrez le modifier ultérieurement dans les paramètres."
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7133,7 +7695,7 @@ msgstr "Votre e-mail a été mis à jour, mais n’a pas été vérifié. L’é
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Votre e-mail n’a pas encore été vérifié. Il s’agit d’une mesure de sécurité importante que nous recommandons."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr "Votre premier « like » !"
@@ -7141,7 +7703,7 @@ msgstr "Votre premier « like » !"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes pour voir ce qui se passe."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Votre nom complet sera"
@@ -7149,7 +7711,7 @@ msgstr "Votre nom complet sera"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Votre pseudo complet sera <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Vos mots masqués"
@@ -7157,15 +7719,15 @@ msgstr "Vos mots masqués"
msgid "Your password has been changed successfully!"
msgstr "Votre mot de passe a été modifié avec succès !"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Votre post a été publié"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Vos posts, les likes et les blocages sont publics. Les silences (comptes masqués) sont privés."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Votre profil"
@@ -7173,7 +7735,7 @@ msgstr "Votre profil"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Votre profil, vos posts, vos fils d’actu et vos listes ne seront plus visibles par d’autres personnes sur Bluesky. Vous pouvez réactiver votre compte à tout moment en vous connectant."
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Votre réponse a été publiée"
@@ -7181,6 +7743,6 @@ msgstr "Votre réponse a été publiée"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Votre rapport sera envoyé au Service de Modération de Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Votre pseudo"
diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po
index 51d196a40c..c96693d8c6 100644
--- a/src/locale/locales/ga/messages.po
+++ b/src/locale/locales/ga/messages.po
@@ -20,7 +20,8 @@ msgstr "(tá ábhar leabaithe ann)"
msgid "(no email)"
msgstr "(gan ríomhphost)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {duine amháin eile} two {beirt eile} few {{formattedCount} dhuine eile} many {{formattedCount} nduine eile} other {{formattedCount} duine eile}}"
@@ -42,7 +43,7 @@ msgstr "{0, plural, one {Cuireadh lipéad amháin ar an gcuntas seo} two {Cuirea
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {Cuireadh lipéad amháin ar an ábhar seo} two {Cuireadh # lipéad ar an ábhar seo} few {Cuireadh # lipéad ar an ábhar seo} many {Cuireadh # lipéad ar an ábhar seo} other {Cuireadh # lipéad ar an ábhar seo}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}}"
@@ -60,16 +61,16 @@ msgstr "{0, plural, one {leantóir} two {leantóir} few {leantóir} many {leant
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {Mol (# mholadh)} two {Mol (# mholadh)} few {Mol (# mholadh)} many {Mol (# moladh)} other {Mol (# moladh)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsáideoirí} few {Molta ag # úsáideoir} many {Molta ag # n-úsáideoir} other {Molta ag # úsáideoir}}"
@@ -77,23 +78,37 @@ msgstr "{0, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsá
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {phostáil} two {phostáil} few {phostáil} many {bpostáil} other {postáil}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {Freagair (# fhreagra)} two {Freagair (# fhreagra)} few {Freagair (# fhreagra)} many {Freagair (# bhfreagra)} other {Freagair (# freagra)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {Dímhol (# mholadh)} two {Dímhol (# mholadh)} few {Dímhol (# mholadh)} many {Dímhol (# moladh)} other {Dímhol (# moladh)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -102,7 +117,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr "Sábháilte le mo chuid fothaí"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "abhatár {0}"
@@ -138,7 +153,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -165,7 +180,7 @@ msgstr "Ní féidir TD a chur chuig {handle}"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsáideoirí} few {Molta ag # úsáideoir} many {Molta ag # n-úsáideoir} other {Molta ag # úsáideoir}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} gan léamh"
@@ -178,12 +193,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {Taispeáin gach freagra} one {Taispeáin freagraí a bhfuil ar a laghad moladh amháin acu} two {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} few {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} many {Taispeáin freagraí a bhfuil ar a laghad # moladh acu} other {Taispeáin freagraí a bhfuil ar a laghad # moladh acu}}"
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr "{value, plural, =0 {Taispeáin gach freagra} one {Taispeáin freagraí a bhfuil ar a laghad moladh amháin acu} two {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} few {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} many {Taispeáin freagraí a bhfuil ar a laghad # moladh acu} other {Taispeáin freagraí a bhfuil ar a laghad # moladh acu}}"
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> ball"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> ball"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -203,11 +218,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}"
@@ -223,6 +238,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr "<0>{following} 0><1>{pluralizedFollowers}1>"
@@ -255,15 +274,27 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Leasainm Neamhbhailí"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Dearbhú 2FA"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Oscail nascanna agus socruithe"
@@ -273,16 +304,16 @@ msgid "Access profile and other navigation links"
msgstr "Oscail próifíl agus nascanna eile"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Inrochtaineacht"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Socruithe inrochtaineachta"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Socruithe Inrochtaineachta"
@@ -291,8 +322,8 @@ msgstr "Socruithe Inrochtaineachta"
#~ msgstr "cuntas"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Cuntas"
@@ -308,20 +339,20 @@ msgstr "Cuntas leanaithe"
msgid "Account muted"
msgstr "Cuireadh an cuntas i bhfolach"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Cuireadh an cuntas i bhfolach"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Cuireadh an cuntas i bhfolach trí liosta"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Roghanna cuntais"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Baineadh an cuntas ón mearliosta"
@@ -338,10 +369,10 @@ msgstr "Cuntas díleanaithe"
msgid "Account unmuted"
msgstr "Níl an cuntas i bhfolach a thuilleadh"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Cuir leis"
@@ -357,14 +388,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Cuir rabhadh faoin ábhar leis"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Cuir cuntas leis an liosta seo"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Cuir cuntas leis seo"
@@ -396,11 +427,11 @@ msgstr "Cuir pasfhocal aipe leis seo"
#~ msgid "Add link card:"
#~ msgstr "Cuir cárta leanúna leis seo:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Cuir focal atá le cur i bhfolach anseo le haghaidh socruithe a rinne tú"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Cuir focail agus clibeanna a cuireadh i bhfolach leis seo"
@@ -424,7 +455,7 @@ msgstr "Ná cuir ach fotha réamhshocraithe de na daoine a leanann tú leis seo"
msgid "Add the following DNS record to your domain:"
msgstr "Cuir an taifead DNS seo a leanas le d'fhearann:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -433,7 +464,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "Cuir le liostaí"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Cuir le mo chuid fothaí"
@@ -442,24 +473,25 @@ msgstr "Cuir le mo chuid fothaí"
#~ msgstr "Curtha leis"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Curtha leis an liosta"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Curtha le mo chuid fothaí"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Sonraigh an méid moltaí ar fhreagra atá de dhíth le bheith le feiceáil i d'fhotha."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Sonraigh an méid moltaí ar fhreagra atá de dhíth le bheith le feiceáil i d'fhotha."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Ábhar do dhaoine fásta"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -467,20 +499,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr "Tá ábhar do dhaoine fásta curtha ar ceal."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Ardleibhéal"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Na fothaí go léir a shábháil tú, in áit amháin."
@@ -499,6 +531,14 @@ msgstr "Ceadaigh fáil ar do chuid TDanna"
msgid "Allow new messages from"
msgstr "Ceadaigh teachtaireachtaí nua ó"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -516,7 +556,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Téacs malartach"
@@ -537,14 +577,27 @@ msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe fao
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Cuireadh teachtaireacht ríomhphoist chuig do sheanseoladh. {0}. Tá cód dearbhaithe faoi iamh."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Tharla earráid"
+#~ msgid "An error occured"
+#~ msgstr "Tharla earráid"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -558,10 +611,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr "Tharla earráid agus an teachtaireacht á scriosadh. Bain triail eile as."
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Rud nach bhfuil ar fáil sna roghanna seo"
@@ -576,21 +634,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Tharla fadhb. Déan iarracht eile, le do thoil."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "tharla earráid nach eol dúinn"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "agus"
@@ -607,6 +669,10 @@ msgstr "GIF beo"
msgid "Anti-Social Behavior"
msgstr "Iompar Frithshóisialta"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Teanga na haipe"
@@ -623,26 +689,26 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostrí
msgid "App Password names must be at least 4 characters long."
msgstr "Caithfear 4 charachtar ar a laghad a bheith in ainmneacha phasfhocal na haipe."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Socruithe phasfhocal na haipe"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Pasfhocal na haipe"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Achomharc"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Achomharc in aghaidh lipéid \"{0}\""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Achomharc déanta"
@@ -658,10 +724,19 @@ msgstr "Achomharc déanta"
msgid "Appeal this decision"
msgstr "Déan achomharc i gcoinne an chinnidh seo"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Cuma"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -684,7 +759,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat pasfhocal na haipe “{name}” a s
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse í ach ní don duine eile atá páirteach."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -697,19 +772,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "An bhfuil tú cinnte gur mhaith leat {0} a bhaint de do chuid fothaí?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "An bhfuil tú cinnte gur mhaith leat an dréacht seo a scriosadh?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Lánchinnte?"
@@ -726,13 +801,13 @@ msgstr "Ealaín"
msgid "Artistic or non-erotic nudity."
msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "3 charachtar ar a laghad"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -745,8 +820,8 @@ msgstr "3 charachtar ar a laghad"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Ar ais"
@@ -754,7 +829,7 @@ msgstr "Ar ais"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Toisc go bhfuil suim agat in {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Bunrudaí"
@@ -762,7 +837,7 @@ msgstr "Bunrudaí"
msgid "Birthday"
msgstr "Breithlá"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Breithlá:"
@@ -785,28 +860,27 @@ msgstr "Blocáil an cuntas seo"
msgid "Block Account?"
msgstr "Blocáil an cuntas seo?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Blocáil na cuntais seo"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Liosta blocála"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "An bhfuil fonn ort na cuntais seo a bhlocáil?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Blocáilte"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Cuntais bhlocáilte"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Cuntais bhlocáilte"
@@ -819,7 +893,7 @@ msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhr
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat. Ní fheicfidh tú a gcuid ábhair agus ní fheicfidh siad do chuid ábhair."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Postáil bhlocáilte."
@@ -827,7 +901,7 @@ msgstr "Postáil bhlocáilte."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Ní bhacann blocáil an lipéadóir seo ar lipéid a chur ar do chuntas."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Tá an bhlocáil poiblí. Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat."
@@ -835,7 +909,7 @@ msgstr "Tá an bhlocáil poiblí. Ní féidir leis na cuntais bhlocáilte freagr
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Ní chuirfidh blocáil cosc ar lipéid a bheith curtha ar do chuntas, ach bacfaidh sí an cuntas seo ar fhreagraí a thabhairt i do chuid snáitheanna agus ar chaidreamh a dhéanamh leat."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blag"
@@ -868,7 +942,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’úsáideoirí atá logáilte amach. Is féidir nach gcloífidh aipeanna eile leis an iarratas seo. I bhfocail eile, ní bheidh do chuntas anseo príobháideach."
@@ -885,21 +959,23 @@ msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad"
msgid "Books"
msgstr "Leabhair"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -908,11 +984,11 @@ msgstr ""
msgid "Browse other feeds"
msgstr "Tabhair súil ar fhothaí eile"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Gnó"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "le —"
@@ -928,15 +1004,15 @@ msgstr "Le {0}"
#~ msgid "by @{0}"
#~ msgstr "ag @{0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "le <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Le cruthú an chuntais aontaíonn tú leis na {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "leat"
@@ -948,13 +1024,13 @@ msgstr "Ceamara"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostríocanna a bheith ann. Caithfear 4 charachtar ar a laghad a bheith ann agus gan níos mó ná 32 charachtar."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -970,9 +1046,8 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostrí
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Cealaigh"
@@ -1000,7 +1075,7 @@ msgstr "Cealaigh bearradh na híomhá"
msgid "Cancel profile editing"
msgstr "Cealaigh eagarthóireacht na próifíle"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Ná déan athlua na postála"
@@ -1009,7 +1084,6 @@ msgid "Cancel reactivation and log out"
msgstr "Cuir an t-athghníomhú ar ceal agus logáil amach"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Cealaigh an cuardach"
@@ -1021,17 +1095,17 @@ msgstr "Cuireann sé seo oscailt an tsuímh gréasáin atá nasctha ar ceal"
msgid "Change"
msgstr "Athraigh"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Athraigh"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Athraigh mo leasainm"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Athraigh mo leasainm"
@@ -1039,12 +1113,12 @@ msgstr "Athraigh mo leasainm"
msgid "Change my email"
msgstr "Athraigh mo ríomhphost"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Athraigh mo phasfhocal"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Athraigh mo phasfhocal"
@@ -1056,7 +1130,7 @@ msgstr "Athraigh an teanga phostála go {0}"
msgid "Change Your Email"
msgstr "Athraigh do ríomhphost"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1068,14 +1142,14 @@ msgstr "Balbhaíodh an comhrá"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Socruithe comhrá"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "Socruithe Comhrá"
@@ -1112,15 +1186,15 @@ msgstr "Féach ar do bhosca ríomhphoist le haghaidh teachtaireachta leis an gc
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1128,7 +1202,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1136,7 +1210,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Roghnaigh Seirbhís"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaí."
@@ -1150,8 +1224,8 @@ msgstr "Roghnaigh an dath seo mar abhatár duit"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1162,18 +1236,18 @@ msgid "Choose your password"
msgstr "Roghnaigh do phasfhocal"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce."
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce."
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce. Ansin atosaigh."
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce. Ansin atosaigh."
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Glan na sonraí ar fad atá i dtaisce."
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh."
@@ -1183,10 +1257,10 @@ msgid "Clear search query"
msgstr "Glan an cuardach"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Glanann seo na sonraí oidhreachta ar fad atá i dtaisce"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Glanann seo na sonraí oidhreachta ar fad atá i dtaisce"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Glanann seo na sonraí ar fad atá i dtaisce"
@@ -1207,7 +1281,7 @@ msgstr "Cliceáil anseo do bhreis eolais."
#~ msgid "Click here to add one."
#~ msgstr "Cliceáil anseo do bhreis eolais."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Cliceáil anseo le clár na clibe le haghaidh {tag} a oscailt"
@@ -1215,6 +1289,14 @@ msgstr "Cliceáil anseo le clár na clibe le haghaidh {tag} a oscailt"
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr "Cliceáil anseo le clár na clibe le haghaidh #{tag} a oscailt"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi"
@@ -1228,12 +1310,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "Trup, Trup a Chapaillín 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1254,7 +1336,7 @@ msgid "Close bottom drawer"
msgstr "Dún an tarraiceán íochtair"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Dún an dialóg"
@@ -1278,8 +1360,8 @@ msgstr "Dún an fhuinneog"
msgid "Close navigation footer"
msgstr "Dún an buntásc"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Dún an dialóg seo"
@@ -1291,7 +1373,7 @@ msgstr "Dúnann sé seo an barra nascleanúna ag an mbun"
msgid "Closes password update alert"
msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Dúnann sé seo cumadóir na postálacha agus ní shábhálann sé an dréacht"
@@ -1299,11 +1381,11 @@ msgstr "Dúnann sé seo cumadóir na postálacha agus ní shábhálann sé an dr
msgid "Closes viewer for header image"
msgstr "Dúnann sé seo an t-amharcóir le haghaidh íomhá an cheanntáisc"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "Laghdaigh an liosta úsáideoirí"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Laghdaíonn sé seo liosta na n-úsáideoirí le haghaidh an fhógra sin"
@@ -1317,27 +1399,31 @@ msgstr "Greann"
msgid "Comics"
msgstr "Greannáin"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Treoirlínte an phobail"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas."
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Freagair an dúshlán"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Scríobh postálacha chomh fada le {MAX_GRAPHEME_LENGTH} litir agus carachtair eile"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Scríobh freagra"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Socraigh scagadh an ábhair le haghaidh catagóir: {0}"
@@ -1373,11 +1459,11 @@ msgstr "Dearbhaigh socruithe le haghaidh teanga an ábhair"
msgid "Confirm delete account"
msgstr "Dearbhaigh scriosadh an chuntais"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Dearbhaigh d'aois:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Dearbhaigh do bhreithlá"
@@ -1395,7 +1481,8 @@ msgstr "Cód dearbhaithe"
msgid "Connecting..."
msgstr "Ag nascadh…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Teagmháil le Support"
@@ -1407,24 +1494,24 @@ msgstr "Teagmháil le Support"
msgid "Content Blocked"
msgstr "Ábhar Blocáilte"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Scagthaí ábhair"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Teangacha ábhair"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Ábhar nach bhfuil ar fáil"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Rabhadh ábhair"
@@ -1436,7 +1523,7 @@ msgstr "Rabhadh ábhair"
msgid "Context menu backdrop, click to close the menu."
msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúnadh."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Lean ar aghaidh"
@@ -1449,7 +1536,7 @@ msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)"
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1476,7 +1563,7 @@ msgstr "Cócaireacht"
msgid "Copied"
msgstr "Cóipeáilte"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Leagan cóipeáilte sa ghearrthaisce"
@@ -1484,8 +1571,8 @@ msgstr "Leagan cóipeáilte sa ghearrthaisce"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Cóipeáilte sa ghearrthaisce"
@@ -1519,12 +1606,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Cóipeáil an nasc leis an liosta"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Cóipeáil an nasc leis an bpostáil"
@@ -1533,8 +1620,8 @@ msgstr "Cóipeáil an nasc leis an bpostáil"
msgid "Copy message text"
msgstr "Cóipeáil téacs na teachtaireachta"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Cóipeáil téacs na postála"
@@ -1542,14 +1629,14 @@ msgstr "Cóipeáil téacs na postála"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "An polasaí maidir le cóipcheart"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1559,7 +1646,7 @@ msgstr "Níor éiríodh ar an gcomhrá a fhágail"
msgid "Could not load feed"
msgstr "Ní féidir an fotha a lódáil"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Ní féidir an liosta a lódáil"
@@ -1585,7 +1672,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Cruthaigh cuntas nua"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Cruthaigh cuntas nua Bluesky"
@@ -1595,7 +1682,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1603,7 +1690,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Cruthaigh cuntas"
@@ -1659,42 +1746,54 @@ msgstr "Saincheaptha"
msgid "Custom domain"
msgstr "Sainfhearann"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Cruthaíonn an pobal fothaí chun eispéiris nua a chur ar fáil duit, agus chun cabhrú leat teacht ar an ábhar a thaitníonn leat"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Oiriúnaigh na meáin ó shuíomhanna seachtracha"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Dorcha"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Modh dorcha"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Téama Dorcha"
+#~ msgid "Dark Theme"
+#~ msgstr "Téama Dorcha"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Dáta breithe"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "Díghníomhaigh mo chuntas"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "Díghníomhaigh mo chuntas"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Dífhabhtaigh Modhnóireacht"
@@ -1703,16 +1802,16 @@ msgid "Debug panel"
msgstr "Painéal dífhabhtaithe"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Scrios"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Scrios an cuntas"
@@ -1732,8 +1831,8 @@ msgstr "Scrios pasfhocal na haipe"
msgid "Delete app password?"
msgstr "Scrios pasfhocal na haipe?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "Scrios taifead dearbhaithe comhrá"
@@ -1741,7 +1840,7 @@ msgstr "Scrios taifead dearbhaithe comhrá"
msgid "Delete for me"
msgstr "Scrios domsa"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Scrios an liosta"
@@ -1757,41 +1856,41 @@ msgstr "Scrios an teachtaireacht seo domsa"
msgid "Delete my account"
msgstr "Scrios mo chuntas"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Scrios mo chuntas…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Scrios an phostáil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "An bhfuil fonn ort an liosta seo a scriosadh?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Scriosta"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Scriosadh an phostáil."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "Scriosann sé seo an taifead dearbhaithe comhrá"
@@ -1806,11 +1905,25 @@ msgstr "Cur síos"
msgid "Descriptive alt text"
msgstr "Téacs malartach tuairisciúil"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Ar mhaith leat rud éigin a rá?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Breacdhorcha"
@@ -1818,7 +1931,7 @@ msgstr "Breacdhorcha"
msgid "Direct messages are here!"
msgstr "Tá teachtaireachtaí díreacha ar fáil anois!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Ná seinn GIFanna go huathoibríoch"
@@ -1826,7 +1939,7 @@ msgstr "Ná seinn GIFanna go huathoibríoch"
msgid "Disable Email 2FA"
msgstr "Ná húsáid 2FA trí ríomhphost"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Ná húsáid aiseolas haptach"
@@ -1834,6 +1947,10 @@ msgstr "Ná húsáid aiseolas haptach"
#~ msgid "Disable haptics"
#~ msgstr "Ná húsáid aiseolas haptach"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr "Ná húsáid creathadh"
@@ -1843,20 +1960,20 @@ msgstr "Ná húsáid aiseolas haptach"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Díchumasaithe"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Ná sábháil"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Faigh réidh leis an dréacht?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Cuir ina luí ar aipeanna gan mo chuntas a thaispeáint d'úsáideoirí atá logáilte amach"
@@ -1869,19 +1986,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr "Aimsigh sainfhothaí nua"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr ""
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Aimsigh Fothaí Nua"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1897,11 +2022,15 @@ msgstr "Ainm Taispeána"
msgid "DNS Panel"
msgstr "Painéal DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Níl lomnochtacht ann."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Ní thosaíonn ná chríochnaíonn sé le fleiscín"
@@ -1915,7 +2044,6 @@ msgstr "Fearann dearbhaithe!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1934,8 +2062,8 @@ msgstr "Déanta"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Déanta"
@@ -1944,7 +2072,7 @@ msgstr "Déanta"
msgid "Done{extraText}"
msgstr "Déanta{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -1961,6 +2089,10 @@ msgstr "Scaoil anseo chun íomhánna a chur leis"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "De bharr pholasaí Apple, ní féidir ábhar do dhaoine fásta ar an nGréasán a fháil roimh an logáil isteach a chríochnú."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "m.sh. cáit"
@@ -2001,11 +2133,11 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí"
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Oibríonn gach cód uair amháin. Gheobhaidh tú tuilleadh cód go tráthrialta."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2014,12 +2146,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Eagar"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Cuir an t-abhatár in eagar"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2028,7 +2160,12 @@ msgstr ""
msgid "Edit image"
msgstr "Cuir an íomhá seo in eagar"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Athraigh mionsonraí an liosta"
@@ -2036,10 +2173,10 @@ msgstr "Athraigh mionsonraí an liosta"
msgid "Edit Moderation List"
msgstr "Athraigh liosta na modhnóireachta"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Athraigh mo chuid fothaí"
@@ -2047,10 +2184,15 @@ msgstr "Athraigh mo chuid fothaí"
msgid "Edit my profile"
msgstr "Athraigh mo phróifíl"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2065,7 +2207,7 @@ msgstr "Athraigh an Phróifíl"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Athraigh na fothaí sábháilte"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2073,7 +2215,7 @@ msgstr ""
msgid "Edit User List"
msgstr "Athraigh an liosta d’úsáideoirí"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2085,7 +2227,7 @@ msgstr "Athraigh d’ainm taispeána"
msgid "Edit your profile description"
msgstr "Athraigh an cur síos ort sa phróifíl"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2095,8 +2237,8 @@ msgid "Education"
msgstr "Oideachas"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2124,7 +2266,7 @@ msgstr "Seoladh ríomhphoist uasdátaithe"
msgid "Email verified"
msgstr "Ríomhphost dearbhaithe"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Ríomhphost:"
@@ -2133,8 +2275,8 @@ msgid "Embed HTML code"
msgstr "Leabaigh an cód HTML"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Leabaigh an phostáil"
@@ -2146,7 +2288,7 @@ msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an
msgid "Enable {0} only"
msgstr "Cuir {0} amháin ar fáil"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Cuir ábhar do dhaoine fásta ar fáil"
@@ -2163,7 +2305,7 @@ msgstr "Cuir ábhar do dhaoine fásta ar fáil"
msgid "Enable external media"
msgstr "Cuir meáin sheachtracha ar fáil"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh"
@@ -2172,9 +2314,13 @@ msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Cuir an socrú seo ar siúl le gan ach freagraí i measc na ndaoine a leanann tú a fheiceáil."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Cuir an socrú seo ar siúl le gan ach freagraí i measc na ndaoine a leanann tú a fheiceáil."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2182,11 +2328,11 @@ msgstr "Cuir an foinse seo amháin ar fáil"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Cumasaithe"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Deireadh an fhotha"
@@ -2207,8 +2353,8 @@ msgstr "Cuir isteach ainm don phasfhocal aipe seo"
msgid "Enter a password"
msgstr "Cuir pasfhocal isteach"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Cuir focal na clib isteach"
@@ -2253,25 +2399,27 @@ msgstr "Cuir isteach do leasainm agus do phasfhocal"
msgid "Error occurred while saving file"
msgstr "Tharla earráid le linn comhad a shábháil"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Earráid agus an freagra ar an captcha á phróiseáil."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Earráid:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Chuile dhuine"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "Tig le chuile dhuine freagra a thabhairt"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2287,6 +2435,14 @@ msgstr "An iomarca tagairtí nó freagraí"
msgid "Excessive or unwanted messages"
msgstr "Teachtaireachtaí iomarcacha nó nach bhfuil de dhíth"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Fágann sé seo próiseas scrios an chuntais"
@@ -2304,7 +2460,6 @@ msgid "Exits image view"
msgstr "Fágann sé seo an radharc ar an íomhá"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Fágann sé seo an cuardach"
@@ -2312,7 +2467,7 @@ msgstr "Fágann sé seo an cuardach"
msgid "Expand alt text"
msgstr "Taispeáin an téacs malartach ina iomláine"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "Leathnaigh an liosta úsáideoirí"
@@ -2325,6 +2480,14 @@ msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt"
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach."
@@ -2333,12 +2496,12 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach."
msgid "Explicit sexual images."
msgstr "Íomhánna gnéasacha."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Easpórtáil mo chuid sonraí"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Easpórtáil mo chuid sonraí"
@@ -2348,17 +2511,17 @@ msgid "External Media"
msgstr "Meáin sheachtracha"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Roghanna maidir le meáin sheachtracha"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Socruithe maidir le meáin sheachtracha"
@@ -2367,8 +2530,8 @@ msgstr "Socruithe maidir le meáin sheachtracha"
msgid "Failed to create app password."
msgstr "Teip ar phasfhocal aipe a chruthú."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2380,16 +2543,16 @@ msgstr "Teip ar chruthú an liosta. Seiceáil do nasc leis an idirlíon agus dé
msgid "Failed to delete message"
msgstr "Teip ar theachtaireacht a scriosadh"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Teip ar scriosadh na postála. Déan iarracht eile."
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2411,12 +2574,12 @@ msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil"
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Teip ar lódáil na bhfothaí molta"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2437,16 +2600,16 @@ msgstr "Teip ar sheoladh"
#~ msgid "Failed to send message(s)."
#~ msgstr "Teip ar theachtaireacht a scriosadh"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2455,12 +2618,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr "Teip ar shocruithe a uasdátú"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Fotha"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Fotha le {0}"
@@ -2473,19 +2636,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Aiseolas"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Fothaí"
@@ -2493,7 +2656,7 @@ msgstr "Fothaí"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "Is iad na húsáideoirí a chruthaíonn na fothaí le hábhar is spéis leo a chur ar fáil. Roghnaigh cúpla fotha a bhfuil suim agat iontu."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Is sainalgartaim iad na fothaí. Cruthaíonn úsáideoirí a bhfuil beagán taithí acu ar chódáil iad. <0/> le tuilleadh eolais a fháil."
@@ -2501,7 +2664,7 @@ msgstr "Is sainalgartaim iad na fothaí. Cruthaíonn úsáideoirí a bhfuil beag
#~ msgid "Feeds can be topical as well!"
#~ msgstr "Is féidir le fothaí a bheith bunaithe ar chúrsaí reatha freisin!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2517,7 +2680,7 @@ msgstr "Sábháladh an comhad!"
msgid "Filter from feeds"
msgstr "Scag ó mo chuid fothaí"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Ag cur crích air"
@@ -2547,7 +2710,7 @@ msgstr "Aimsigh postálacha agus úsáideoirí ar Bluesky"
#~ msgid "Finding similar accounts..."
#~ msgstr "Cuntais eile atá cosúil leis seo á n-aimsiú..."
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Mionathraigh an t-ábhar a fheiceann tú ar an bhfotha Following."
@@ -2555,7 +2718,7 @@ msgstr "Mionathraigh an t-ábhar a fheiceann tú ar an bhfotha Following."
msgid "Fine-tune the discussion threads."
msgstr "Mionathraigh na snáitheanna chomhrá"
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2567,7 +2730,7 @@ msgstr ""
msgid "Fitness"
msgstr "Folláine"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Solúbtha"
@@ -2581,12 +2744,11 @@ msgid "Flip vertically"
msgstr "Iompaigh go hingearach é"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Lean"
@@ -2600,7 +2762,7 @@ msgstr "Lean"
msgid "Follow {0}"
msgstr "Lean {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "Lean {name}"
@@ -2613,8 +2775,8 @@ msgstr ""
msgid "Follow Account"
msgstr "Lean an cuntas seo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2626,7 +2788,7 @@ msgstr ""
msgid "Follow Back"
msgstr "Lean Ar Ais"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2662,19 +2824,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Cuntais a leanann tú"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Cuntais a leanann tú amháin"
+#~ msgid "Followed users only"
+#~ msgstr "Cuntais a leanann tú amháin"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "— lean sé/sí thú"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2683,7 +2845,7 @@ msgstr ""
msgid "Followers"
msgstr "Leantóirí"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2693,34 +2855,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Á leanúint"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Ag leanúint {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "Ag leanacht {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Roghanna le haghaidh an fhotha Following"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Roghanna don Fhotha Following"
@@ -2732,7 +2894,7 @@ msgstr ""
msgid "Follows you"
msgstr "Leanann sé/sí thú"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Leanann sé/sí thú"
@@ -2749,6 +2911,10 @@ msgstr "Ar chúiseanna slándála, beidh orainn cód dearbhaithe a chur chuig do
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Ar chúiseanna slándála, ní bheidh tú in ann é seo a fheiceáil arís. Má chailleann tú an pasfhocal seo beidh ort ceann nua a chruthú."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2770,7 +2936,7 @@ msgstr "Is minic a phostálann siad ábhar nach bhfuil de dhíth"
msgid "From @{sanitizedAuthor}"
msgstr "Ó @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Ó <0/>"
@@ -2783,7 +2949,7 @@ msgstr "Gailearaí"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2812,24 +2978,25 @@ msgstr "Tabhair gnúis do do phróifíl"
msgid "Glaring violations of law or terms of service"
msgstr "Deargshárú an dlí nó na dtéarmaí seirbhíse"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Ar ais"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Ar ais"
@@ -2839,14 +3006,14 @@ msgstr "Ar ais"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Fill ar an gcéim roimhe seo"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2887,7 +3054,7 @@ msgstr "Téigh go próifíl an úsáideora"
msgid "Graphic Media"
msgstr "Meáin Ghrafacha"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2895,7 +3062,7 @@ msgstr ""
msgid "Handle"
msgstr "Leasainm"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Haptaic"
@@ -2903,7 +3070,7 @@ msgstr "Haptaic"
msgid "Harassment, trolling, or intolerance"
msgstr "Ciapadh, trolláil, nó éadulaingt"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Haischlib"
@@ -2911,12 +3078,12 @@ msgstr "Haischlib"
msgid "Hashtag: #{tag}"
msgstr "Haischlib: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Fadhb ort?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Cúnamh"
@@ -2940,6 +3107,10 @@ msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abh
msgid "Here is your app password."
msgstr "Seo é do phasfhocal aipe."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2947,30 +3118,50 @@ msgstr "Seo é do phasfhocal aipe."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Cuir i bhfolach"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Cuir i bhfolach"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Cuir an phostáil seo i bhfolach"
+#~ msgid "Hide post"
+#~ msgstr "Cuir an phostáil seo i bhfolach"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Cuir an t-ábhar seo i bhfolach"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Cuir liosta na gcuntas i bhfolach"
@@ -3002,12 +3193,12 @@ msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féa
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Baile"
@@ -3040,7 +3231,7 @@ msgstr "Tá cód dearbhaithe agam"
msgid "I have my own domain"
msgstr "Tá fearann de mo chuid féin agam"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "Tuigim"
@@ -3053,15 +3244,15 @@ msgstr "Má tá an téacs malartach rófhada, athraíonn sé seo go téacs leath
msgid "If none are selected, suitable for all ages."
msgstr "Mura roghnaítear tada, tá sé oiriúnach do gach aois."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Ní duine fásta thú de réir dhlí do thíre, tá ar do thuismitheoir nó do chaomhnóir dlíthiúil na Téarmaí seo a léamh ar do shon."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Má scriosann tú an liosta seo, ní bheidh tú in ann é a fháil ar ais."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Má bhaineann tú an phostáil seo, ní bheidh tú in ann í a fháil ar ais."
@@ -3137,10 +3328,14 @@ msgstr "Cuir isteach do phasfhocal"
msgid "Input your preferred hosting provider"
msgstr "Cuir isteach an soláthraí óstála is fearr leat"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Cuir isteach do leasainm"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "Ag cur Teachtaireachtaí Díreacha in aithne duit"
@@ -3150,7 +3345,7 @@ msgstr "Ag cur Teachtaireachtaí Díreacha in aithne duit"
msgid "Invalid 2FA confirmation code."
msgstr "Tá an cód 2FA seo neamhbhailí."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Taifead postála atá neamhbhailí nó gan bhunús"
@@ -3166,7 +3361,7 @@ msgstr "Tabhair cuireadh chuig cara leat"
msgid "Invite code"
msgstr "Cód cuiridh"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Níor glacadh leis an gcód cuiridh. Bí cinnte gur scríobh tú i gceart é agus bain triail eile as."
@@ -3198,14 +3393,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Jabanna"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3242,11 +3437,11 @@ msgstr "Nótaí faoi úsáideoirí nó ábhar is ea lipéid. Is féidir úsáid
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr "cuireadh lipéid ar an {labelTarget}"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Lipéid ar do chuntas"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Lipéid ar do chuid ábhair"
@@ -3254,16 +3449,16 @@ msgstr "Lipéid ar do chuid ábhair"
msgid "Language selection"
msgstr "Rogha teanga"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Socruithe teanga"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Socruithe teanga"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Teangacha"
@@ -3272,21 +3467,26 @@ msgstr "Teangacha"
msgid "Latest"
msgstr "Is Déanaí"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Le tuilleadh a fhoghlaim"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "Foghlaim níos mó faoin modhnóireacht a dhéantar ar an ábhar seo."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Le tuilleadh a fhoghlaim faoi céard atá poiblí ar Bluesky"
@@ -3324,8 +3524,8 @@ msgid "left to go."
msgstr "le déanamh fós."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3336,12 +3536,13 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Socraímis do phasfhocal arís!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Ar aghaidh linn!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Sorcha"
@@ -3353,8 +3554,8 @@ msgstr "Sorcha"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3364,14 +3565,15 @@ msgid "Like this feed"
msgstr "Mol an fotha seo"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Molta ag"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Molta ag"
@@ -3387,11 +3589,11 @@ msgstr "Molta ag"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Molta ag {likeCount} {0}"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "a mhol do shainfhotha"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "a mhol do phostáil"
@@ -3399,11 +3601,11 @@ msgstr "a mhol do phostáil"
msgid "Likes"
msgstr "Moltaí"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Moltaí don phostáil seo"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Liosta"
@@ -3411,20 +3613,28 @@ msgstr "Liosta"
msgid "List Avatar"
msgstr "Abhatár an Liosta"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Liosta blocáilte"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Liosta le {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Scriosadh an liosta"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Balbhaíodh an liosta"
@@ -3432,20 +3642,20 @@ msgstr "Balbhaíodh an liosta"
msgid "List Name"
msgstr "Ainm an liosta"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Liosta díbhlocáilte"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Liosta nach bhfuil balbhaithe níos mó"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Liostaí"
@@ -3469,10 +3679,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Lódáil fógraí nua"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Lódáil postálacha nua"
@@ -3480,7 +3690,7 @@ msgstr "Lódáil postálacha nua"
msgid "Loading..."
msgstr "Ag lódáil …"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Logleabhar"
@@ -3496,7 +3706,7 @@ msgstr "Logáil isteach nó cláraigh le Bluesky"
msgid "Log out"
msgstr "Logáil amach"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Feiceálacht le linn a bheith logáilte amach"
@@ -3537,7 +3747,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Bí cinnte go bhfuil tú ag iarraidh cuairt a thabhairt ar an áit sin!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Bainistigh do chuid clibeanna agus na focail a chuir tú i bhfolach"
@@ -3546,20 +3756,20 @@ msgstr "Bainistigh do chuid clibeanna agus na focail a chuir tú i bhfolach"
msgid "Mark as read"
msgstr "Marcáil léite"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Meáin"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "úsáideoirí luaite"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Úsáideoirí luaite"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Clár"
@@ -3590,7 +3800,7 @@ msgstr "Tá an teachtaireacht rófhada"
msgid "Message settings"
msgstr "Socruithe teachtaireachta"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3606,29 +3816,31 @@ msgstr "Teachtaireachtaí"
msgid "Misleading Account"
msgstr "Cuntas atá Míthreorach"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Modhnóireacht"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Mionsonraí modhnóireachta"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Liosta modhnóireachta le {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Liosta modhnóireachta le <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Liosta modhnóireachta leat"
@@ -3640,20 +3852,24 @@ msgstr "Liosta modhnóireachta cruthaithe"
msgid "Moderation list updated"
msgstr "Liosta modhnóireachta uasdátaithe"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Liostaí modhnóireachta"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Liostaí modhnóireachta"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Socruithe modhnóireachta"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "Stádais modhnóireachta"
@@ -3661,12 +3877,12 @@ msgstr "Stádais modhnóireachta"
msgid "Moderation tools"
msgstr "Uirlisí modhnóireachta"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Chuir an modhnóir rabhadh ginearálta ar an ábhar."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Tuilleadh"
@@ -3674,7 +3890,7 @@ msgstr "Tuilleadh"
msgid "More feeds"
msgstr "Tuilleadh fothaí"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Tuilleadh roghanna"
@@ -3690,11 +3906,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Cuir i bhfolach"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Cuir {truncatedTag} i bhfolach"
@@ -3703,11 +3921,11 @@ msgstr "Cuir {truncatedTag} i bhfolach"
msgid "Mute Account"
msgstr "Cuir an cuntas i bhfolach"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Cuir na cuntais i bhfolach"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Cuir gach postáil {displayTag} i bhfolach"
@@ -3717,14 +3935,18 @@ msgid "Mute conversation"
msgstr "Balbhaigh an comhrá"
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Ná cuir i bhfolach ach i gclibeanna"
+#~ msgid "Mute in tags only"
+#~ msgstr "Ná cuir i bhfolach ach i gclibeanna"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Cuir i bhfolach i dtéacs agus i gclibeanna"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Cuir i bhfolach i dtéacs agus i gclibeanna"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Cuir an liosta i bhfolach"
@@ -3733,37 +3955,53 @@ msgstr "Cuir an liosta i bhfolach"
#~ msgid "Mute notifications"
#~ msgstr "Fógraí"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "An bhfuil fonn ort na cuntais seo a chur i bhfolach"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Cuir an focal seo i bhfolach i dtéacs postálacha agus i gclibeanna"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Ná cuir an focal seo i bhfolach ach i gclibeanna"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Cuir an snáithe seo i bhfolach"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Cuir focail ⁊ clibeanna i bhfolach"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Curtha i bhfolach"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Cuntais a cuireadh i bhfolach"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Cuntais a Cuireadh i bhFolach"
@@ -3772,7 +4010,7 @@ msgstr "Cuntais a Cuireadh i bhFolach"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Baintear na postálacha ó na cuntais a chuir tú i bhfolach as d’fhotha agus as do chuid fógraí. Is príobháideach ar fad é an cur i bhfolach."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Curtha i bhfolach ag \"{0}\""
@@ -3780,7 +4018,7 @@ msgstr "Curtha i bhfolach ag \"{0}\""
msgid "Muted words & tags"
msgstr "Focail ⁊ clibeanna a cuireadh i bhfolach"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Tá an cur i bhfolach príobháideach. Is féidir leis na cuntais a chuir tú i bhfolach do chuid postálacha a fheiceáil agus is féidir leo scríobh chugat ach ní fheicfidh tú a gcuid postálacha eile ná aon fhógraí uathu."
@@ -3789,7 +4027,7 @@ msgstr "Tá an cur i bhfolach príobháideach. Is féidir leis na cuntais a chui
msgid "My Birthday"
msgstr "Mo Bhreithlá"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Mo Chuid Fothaí"
@@ -3797,11 +4035,11 @@ msgstr "Mo Chuid Fothaí"
msgid "My Profile"
msgstr "Mo Phróifíl"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Na fothaí a shábháil mé"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Na Fothaí a Shábháil Mé"
@@ -3826,7 +4064,7 @@ msgstr "Sáraíonn an tAinm nó an Cur Síos Caighdeáin an Phobail"
msgid "Nature"
msgstr "Nádúr"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3840,7 +4078,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Téann sé seo chuig an gcéad scáileán eile"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Téann sé seo chuig do phróifíl"
@@ -3852,7 +4090,7 @@ msgstr "An bhfuil tú ag iarraidh sárú cóipchirt a thuairisciú?"
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo."
@@ -3860,7 +4098,7 @@ msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go de
msgid "Nevermind, create a handle for me"
msgstr "Is cuma, cruthaigh leasainm dom"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Nua"
@@ -3896,12 +4134,12 @@ msgctxt "action"
msgid "New post"
msgstr "Postáil nua"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Postáil nua"
@@ -3935,10 +4173,10 @@ msgstr "Nuacht"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3954,17 +4192,17 @@ msgstr "Ar aghaidh"
msgid "Next image"
msgstr "An chéad íomhá eile"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Níl"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Gan chur síos"
@@ -3981,12 +4219,12 @@ msgstr "Níor aimsíodh GIFanna speisialta. D'fhéadfadh sé gur tharla fadhb le
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Ní leantar {0} níos mó"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Gan a bheith níos faide na 253 charachtar"
@@ -3998,7 +4236,7 @@ msgstr "Níl aon teachtaireacht ann fós"
msgid "No more conversations to show"
msgstr "Níl aon chomhráite eile le taispeáint"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Níl aon fhógra ann fós!"
@@ -4009,6 +4247,10 @@ msgstr "Níl aon fhógra ann fós!"
msgid "No one"
msgstr "Duine ar bith"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4022,11 +4264,11 @@ msgstr "Gan torthaí"
msgid "No results"
msgstr "Toradh ar bith"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Gan torthaí"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Gan torthaí ar “{query}”"
@@ -4052,13 +4294,13 @@ msgstr "Gan torthaí ar \"{search}\"."
msgid "No thanks"
msgstr "Níor mhaith liom é sin."
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Duine ar bith"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "Níl cead ag éinne freagra a thabhairt"
+#~ msgid "Nobody can reply"
+#~ msgstr "Níl cead ag éinne freagra a thabhairt"
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4077,7 +4319,7 @@ msgstr "Lomnochtacht Neamhghnéasach"
#~ msgid "Not Applicable."
#~ msgstr "Ní bhaineann sé sin le hábhar."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Ní bhfuarthas é sin"
@@ -4088,12 +4330,12 @@ msgid "Not right now"
msgstr "Ní anois"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Nóta faoi roinnt"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nod leat: is gréasán oscailte poiblí Bluesky. Ní chuireann an socrú seo srian ar fheiceálacht do chuid ábhair ach amháin ar aip agus suíomh Bluesky. Is féidir nach gcloífidh aipeanna eile leis an socrú seo. Is féidir go dtaispeánfar do chuid ábhair d’úsáideoirí atá lógáilte amach ar aipeanna agus suíomhanna eile."
@@ -4105,7 +4347,7 @@ msgstr "Tada anseo"
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4122,14 +4364,14 @@ msgstr "Fuaimeanna fógra"
msgid "Notification Sounds"
msgstr "Fuaimeanna Fógra"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Fógraí"
@@ -4158,12 +4400,12 @@ msgid "Off"
msgstr "As"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Úps!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Úps! Theip ar rud éigin."
@@ -4187,7 +4429,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Atosú an chláraithe"
@@ -4195,7 +4437,7 @@ msgstr "Atosú an chláraithe"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu."
@@ -4204,14 +4446,14 @@ msgid "Only .jpg and .png files are supported"
msgstr "Ní oibríonn ach comhaid .jpg agus .png"
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Ní féidir ach le {0} freagra a thabhairt."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Ní féidir ach le {0} freagra a thabhairt."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Níl ann ach litreacha, uimhreacha, agus fleiscíní"
@@ -4219,7 +4461,7 @@ msgstr "Níl ann ach litreacha, uimhreacha, agus fleiscíní"
msgid "Oops, something went wrong!"
msgstr "Úps! Theip ar rud éigin!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4228,11 +4470,11 @@ msgstr "Úps! Theip ar rud éigin!"
msgid "Oops!"
msgstr "Úps!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Oscail"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "Oscail roghchlár giorrúcháin phróifíl {name}"
@@ -4245,8 +4487,8 @@ msgstr "Oscail an cruthaitheoir abhatáir"
msgid "Open conversation options"
msgstr "Oscail na roghanna comhrá"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Oscail roghnóir na n-emoji"
@@ -4254,7 +4496,7 @@ msgstr "Oscail roghnóir na n-emoji"
msgid "Open feed options menu"
msgstr "Oscail roghchlár na bhfothaí"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Oscail nascanna leis an mbrabhsálaí san aip"
@@ -4270,20 +4512,20 @@ msgstr "Oscail suíomhanna na gclibeanna agus na bhfocal a cuireadh i bhfolach"
msgid "Open navigation"
msgstr "Oscail an nascleanúint"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Oscail roghchlár na bpostálacha"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Oscail leathanach an Storybook"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Oscail logleabhar an chórais"
@@ -4291,11 +4533,11 @@ msgstr "Oscail logleabhar an chórais"
msgid "Opens {numItems} options"
msgstr "Osclaíonn sé seo {numItems} rogha"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Osclaíonn sé seo na socruithe inrochtaineachta"
@@ -4307,19 +4549,23 @@ msgstr "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaith
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Osclaíonn sé seo liosta méadaithe d’úsáideoirí san fhógra seo"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Osclaíonn sé seo an ceamara ar an ngléas"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "Osclaíonn sé seo na socruithe comhrá"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Osclaíonn sé seo an t-eagarthóir"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Osclaíonn sé seo na socruithe teanga is féidir a dhéanamh"
@@ -4327,7 +4573,7 @@ msgstr "Osclaíonn sé seo na socruithe teanga is féidir a dhéanamh"
msgid "Opens device photo gallery"
msgstr "Osclaíonn sé seo gailearaí na ngrianghraf ar an ngléas"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Osclaíonn sé seo na socruithe le haghaidh leabuithe seachtracha"
@@ -4349,27 +4595,27 @@ msgstr "Osclaíonn sé seo fuinneog chun GIF a roghnú"
msgid "Opens list of invite codes"
msgstr "Osclaíonn sé seo liosta na gcód cuiridh"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "Osclaíonn sé seo fuinneog chun díghníomhú an chuntais a dhearbhú"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Osclaíonn sé seo an fhuinneog le scriosadh an chuntais a dhearbhú. Tá cód ríomhphoist riachtanach"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Osclaíonn sé seo an fhuinneog le do phasfhocal Bluesky a athrú"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Osclaíonn sé seo an fhuinneog le leasainm nua Bluesky a roghnú"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Osclaíonn sé seo an fhuinneog le stór sonraí do chuntais Bluesky a íoslódáil"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Osclaíonn sé seo fuinneog le deimhniú an ríomhphoist"
@@ -4377,7 +4623,7 @@ msgstr "Osclaíonn sé seo fuinneog le deimhniú an ríomhphoist"
msgid "Opens modal for using custom domain"
msgstr "Osclaíonn sé seo an fhuinneog le sainfhearann a úsáid"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Osclaíonn sé seo socruithe na modhnóireachta"
@@ -4389,15 +4635,15 @@ msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte a athrú"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte go léir"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Osclaíonn sé seo an leathanach a bhfuil socruithe phasfhocal na haipe air"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Osclaíonn sé seo roghanna don fhotha Following"
@@ -4410,21 +4656,21 @@ msgstr "Osclaíonn sé seo an suíomh gréasáin atá nasctha"
#~ msgid "Opens the message settings page"
#~ msgstr "Osclaíonn sé seo logleabhar an chórais"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Osclaíonn sé seo leathanach an Storybook"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Osclaíonn sé seo logleabhar an chórais"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Osclaíonn sé seo roghanna na snáitheanna"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "Osclaíonn sé an phróifíl seo"
@@ -4437,11 +4683,15 @@ msgid "Option {0} of {numItems}"
msgstr "Rogha {0} as {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Is féidir tuilleadh eolais a chur ar fáil thíos:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Nó cuir na roghanna seo le chéile:"
@@ -4461,6 +4711,10 @@ msgstr "Eile"
msgid "Other account"
msgstr "Cuntas eile"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Eile…"
@@ -4469,7 +4723,7 @@ msgstr "Eile…"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Ta ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí. Chinn siad gan ligean duit comhráite a úsáid ar Bluesky."
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Leathanach gan aimsiú"
@@ -4498,19 +4752,24 @@ msgid "Password updated!"
msgstr "Pasfhocal uasdátaithe!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Sos"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Daoine"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Na daoine atá leanta ag @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Na leantóirí atá ag @{0}"
@@ -4540,7 +4799,7 @@ msgid "Pictures meant for adults."
msgstr "Pictiúir le haghaidh daoine fásta."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Greamaigh le baile"
@@ -4552,11 +4811,12 @@ msgstr "Greamaigh le Baile"
msgid "Pinned Feeds"
msgstr "Fothaí greamaithe"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "Greamaithe le do chuid fothaí"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Seinn"
@@ -4573,6 +4833,11 @@ msgstr "Seinn {0}"
msgid "Play or pause the GIF"
msgstr "Seinn nó stop an GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4582,16 +4847,16 @@ msgstr "Seinn an físeán"
msgid "Plays the GIF"
msgstr "Seinneann sé seo an GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Roghnaigh do leasainm, le do thoil."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Roghnaigh do phasfhocal, le do thoil."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Déan an captcha, le do thoil."
@@ -4607,11 +4872,11 @@ msgstr "Cuir isteach ainm le haghaidh phasfhocal na haipe, le do thoil. Ní chea
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Cuir isteach ainm nach bhfuil in úsáid cheana féin le haghaidh Phasfhocal na hAipe nó bain úsáid as an gceann a chruthóidh muid go randamach."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Cuir focal, clib, nó frása inghlactha isteach le cur i bhfolach"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil."
@@ -4624,7 +4889,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Cuir isteach do phasfhocal freisin, le do thoil."
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Abair linn, le do thoil, cén fáth a gcreideann tú gur chuir {0} an lipéad seo i bhfeidhm go mícheart"
@@ -4641,7 +4906,7 @@ msgstr "Logáil isteach mar @{0}"
msgid "Please Verify Your Email"
msgstr "Dearbhaigh do ríomhphost, le do thoil."
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Fan le lódáil ar fad do chárta naisc, le do thoil."
@@ -4654,45 +4919,50 @@ msgstr "Polaitíocht"
msgid "Porn"
msgstr "Pornagrafaíocht"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Postáil"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Postáil"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Postáil ó {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Postáil ó @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Scriosadh an phostáil"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Cuireadh an phostáil i bhfolach"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Postáil nach bhfuil le feiceáil de bharr focail a cuireadh i bhfolach"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Postáil a chuir tú i bhfolach"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Teanga postála"
@@ -4701,23 +4971,27 @@ msgstr "Teanga postála"
msgid "Post Languages"
msgstr "Teangacha postála"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Ní bhfuarthas an phostáil"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "postálacha"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Postálacha"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Is féidir postálacha a chuir i bhfolach de bharr a gcuid téacs, a gcuid clibeanna, nó an dá rud."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Is féidir postálacha a chuir i bhfolach de bharr a gcuid téacs, a gcuid clibeanna, nó an dá rud."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4739,7 +5013,7 @@ msgstr "Brúigh le iarracht a thabhairt ar nascadh arís"
msgid "Press to change hosting provider"
msgstr "Brúigh leis an soláthraí óstála a athrú"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4759,7 +5033,7 @@ msgstr ""
msgid "Previous image"
msgstr "An íomhá roimhe seo"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Príomhtheanga"
@@ -4771,16 +5045,16 @@ msgstr "Tabhair Tosaíocht do Do Chuid Leantóirí"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Príobháideacht"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Polasaí príobháideachta"
@@ -4792,16 +5066,16 @@ msgstr "Roinn TDanna príobháideacha le úsáideoirí eile."
msgid "Processing..."
msgstr "Á phróiseáil..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "próifíl"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Próifíl"
@@ -4809,11 +5083,11 @@ msgstr "Próifíl"
msgid "Profile updated"
msgstr "Próifíl uasdátaithe"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Dearbhaigh do ríomhphost le do chuntas a chosaint."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Poiblí"
@@ -4821,15 +5095,15 @@ msgstr "Poiblí"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Liostaí poiblí agus inroinnte d’úsáideoirí le cur i bhfolach nó le blocáil ar an mórchóir"
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Liostaí poiblí agus inroinnte atá in ann fothaí a bheathú"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Foilsigh an phostáil"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Foilsigh an freagra"
@@ -4849,10 +5123,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Postáil athluaite"
@@ -4866,6 +5140,39 @@ msgstr "Postáil athluaite"
#~ msgid "Quote Post"
#~ msgstr "Luaigh an phostáil seo"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Randamach"
@@ -4874,10 +5181,27 @@ msgstr "Randamach"
msgid "Ratios"
msgstr "Cóimheasa"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "Athghníomhaigh do chuntas"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "Fáth:"
@@ -4887,7 +5211,7 @@ msgstr "Fáth:"
#~ msgid "Reason: {0}"
#~ msgstr "Fáth:"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Cuardaigh a Rinneadh le Déanaí"
@@ -4911,15 +5235,16 @@ msgstr ""
msgid "Reload conversations"
msgstr "Athlódáil comhráite"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Scrios"
@@ -4927,11 +5252,11 @@ msgstr "Scrios"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Bain an cuntas de"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Bain an tAbhatár Amach"
@@ -4944,8 +5269,8 @@ msgid "Remove embed"
msgstr "Bain an leabú"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Bain an fotha de"
@@ -4953,19 +5278,27 @@ msgstr "Bain an fotha de"
msgid "Remove feed?"
msgstr "An bhfuil fonn ort an fotha a bhaint?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Bain de mo chuid fothaí"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "É sin a bhaint de mo chuid fothaí?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Bain an íomhá de"
@@ -4974,24 +5307,24 @@ msgstr "Bain an íomhá de"
msgid "Remove image preview"
msgstr "Bain réamhléiriú den íomhá"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Bain focal folaigh de do liosta"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "Bain an phróifíl"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "Bain an phróifíl seo as an stair cuardaigh"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "Bain an t-athfhriotal de"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Scrios an athphostáil"
@@ -4999,18 +5332,31 @@ msgstr "Scrios an athphostáil"
msgid "Remove this feed from your saved feeds"
msgstr "Bain an fotha seo de do chuid fothaí sábháilte"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Baineadh den liosta é"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Baineadh de do chuid fothaí é"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Baineadh de do chuid fothaí é"
@@ -5018,7 +5364,7 @@ msgstr "Baineadh de do chuid fothaí é"
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Baineann sé seo an mhionsamhail réamhshocraithe de {0}"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "Baineann sé seo an t-athfhriotal"
@@ -5026,8 +5372,8 @@ msgstr "Baineann sé seo an t-athfhriotal"
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Cuir an fotha Discover ina áit"
@@ -5035,7 +5381,7 @@ msgstr "Cuir an fotha Discover ina áit"
msgid "Replies"
msgstr "Freagraí"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5043,41 +5389,76 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Scagairí freagra"
+#~ msgid "Reply Filters"
+#~ msgstr "Scagairí freagra"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:NaN
#~ msgctxt "description"
#~ msgid "Reply to <0/>"
#~ msgstr "Freagra ar <0/>"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Freagra ar <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5109,7 +5490,7 @@ msgstr "Tuairiscigh comhrá"
msgid "Report feed"
msgstr "Déan gearán faoi fhotha"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Déan gearán faoi liosta"
@@ -5117,13 +5498,13 @@ msgstr "Déan gearán faoi liosta"
msgid "Report message"
msgstr "Tuairiscigh an teachtaireacht seo"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Déan gearán faoi phostáil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5157,30 +5538,31 @@ msgstr ""
msgid "Report this user"
msgstr "Déan gearán faoin úsáideoir seo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Athphostáil"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Athphostáil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Athphostáil nó luaigh postáil"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Athphostáilte ag"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Athphostáilte ag {0}"
@@ -5188,20 +5570,20 @@ msgstr "Athphostáilte ag {0}"
#~ msgid "Reposted by <0/>"
#~ msgstr "Athphostáilte ag <0/>"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Athphostáilte ag <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "— d'athphostáil sé/sí do phostáil"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Athphostálacha den phostáil seo"
@@ -5215,7 +5597,7 @@ msgstr "Iarr Athrú"
msgid "Request Code"
msgstr "Iarr Cód"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí"
@@ -5240,8 +5622,8 @@ msgstr "Cód athshocraithe"
msgid "Reset Code"
msgstr "Cód Athshocraithe"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Athshocraigh an próiseas cláraithe"
@@ -5249,16 +5631,16 @@ msgstr "Athshocraigh an próiseas cláraithe"
msgid "Reset password"
msgstr "Athshocraigh an pasfhocal"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Athshocraigh na roghanna"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Athshocraíonn sé seo an clárú"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Athshocraíonn sé seo na roghanna"
@@ -5272,17 +5654,19 @@ msgid "Retries the last action, which errored out"
msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Bain triail eile as"
@@ -5291,9 +5675,10 @@ msgstr "Bain triail eile as"
#~ msgid "Retry."
#~ msgstr "Bain triail eile as"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Fill ar an leathanach roimhe seo"
@@ -5307,7 +5692,8 @@ msgid "Returns to previous page"
msgstr "Filleann sé seo ar an leathanach roimhe seo"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5357,7 +5743,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr "Sábháil i mo chuid fothaí"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Fothaí Sábháilte"
@@ -5370,7 +5756,7 @@ msgstr "Sábháladh i do rolla ceamara é"
#~ msgstr "Sábháilte i do rolla ceamara."
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Sábháilte le mo chuid fothaí"
@@ -5388,8 +5774,8 @@ msgstr "Sábhálann sé seo na socruithe le haghaidh íomhánna a laghdú"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "Abair heileo!"
@@ -5398,13 +5784,12 @@ msgstr "Abair heileo!"
msgid "Science"
msgstr "Eolaíocht"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Fill ar an mbarr"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5413,14 +5798,12 @@ msgstr "Fill ar an mbarr"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Cuardaigh"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Déan cuardach ar “{query}”"
@@ -5428,11 +5811,11 @@ msgstr "Déan cuardach ar “{query}”"
msgid "Search for \"{searchText}\""
msgstr "Déan cuardach ar \"{searchText}\""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Lorg na postálacha uile le @{authorHandle} leis an gclib {displayTag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Lorg na postálacha uile leis an gclib {displayTag}"
@@ -5444,8 +5827,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr "Lorg duine éigin le comhrá a dhéanamh leo."
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Cuardaigh úsáideoirí"
@@ -5469,27 +5850,31 @@ msgstr "Cuardaigh Tenor"
msgid "Security Step Required"
msgstr "Céim Slándála de dhíth"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Féach na postálacha {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Féach na postálacha {truncatedTag} leis an úsáideoir"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Féach na postálacha <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Féach na postálacha <0>{displayTag}0> leis an úsáideoir seo"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:NaN
#~ msgid "See profile"
#~ msgstr "Féach ar an bpróifíl"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Féach ar an treoirleabhar seo"
@@ -5529,7 +5914,11 @@ msgstr "Roghnaigh GIF"
msgid "Select GIF \"{0}\""
msgstr "Roghnaigh GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Roghnaigh teangacha"
@@ -5549,7 +5938,7 @@ msgstr "Roghnaigh rogha {i} as {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Roghnaigh an emoji {emojiName} mar abhatár"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Roghnaigh na seirbhísí modhnóireachta le tuairisciú chuige"
@@ -5565,11 +5954,15 @@ msgstr "Roghnaigh an tseirbhís a óstálann do chuid sonraí."
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Roghnaigh na rudaí ba mhaith leat a fheiceáil (nó gan a fheiceáil), agus leanfaimid ar aghaidh as sin"
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Roghnaigh na teangacha ba mhaith leat a fheiceáil i do chuid fothaí. Mura roghnaíonn tú, taispeánfar ábhar i ngach teanga duit."
@@ -5581,11 +5974,11 @@ msgstr "Roghnaigh teanga an téacs a thaispeánfar san aip."
msgid "Select your date of birth"
msgstr "Roghnaigh do dháta breithe"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Do rogha teanga nuair a dhéanfar aistriúchán ar ábhar i d'fhotha."
@@ -5615,7 +6008,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Seol ríomhphost"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Seol aiseolas"
@@ -5630,8 +6023,8 @@ msgstr "Seol an phostáil seo chuig..."
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Seol an tuairisc"
@@ -5644,8 +6037,8 @@ msgstr "Seol an tuairisc chuig {0}"
msgid "Send verification email"
msgstr "Seol ríomhphost dearbhaithe"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "Seol mar theachtaireacht dhíreach"
@@ -5657,7 +6050,7 @@ msgstr "Seolann sé seo ríomhphost ina bhfuil cód dearbhaithe chun an cuntas a
msgid "Server address"
msgstr "Seoladh an fhreastalaí"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Socraigh do bhreithlá"
@@ -5665,15 +6058,15 @@ msgstr "Socraigh do bhreithlá"
msgid "Set new password"
msgstr "Socraigh pasfhocal nua"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Roghnaigh “Níl” chun postálacha athluaite a chur i bhfolach i d'fhotha. Feicfidh tú athphostálacha fós."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Roghnaigh “Níl” chun freagraí a chur i bhfolach i d'fhotha."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Roghnaigh “Níl” chun athphostálacha a chur i bhfolach i d'fhotha."
@@ -5681,7 +6074,7 @@ msgstr "Roghnaigh “Níl” chun athphostálacha a chur i bhfolach i d'fhotha."
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Roghnaigh “Tá” le freagraí a thaispeáint i snáitheanna. Is gné thurgnamhach é seo."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Roghnaigh “Tá” le samplaí ó do chuid fothaí sábháilte a thaispeáint in ”Á Leanúint”. Is gné thurgnamhach é seo."
@@ -5694,24 +6087,24 @@ msgid "Sets Bluesky username"
msgstr "Socraíonn sé seo d'ainm úsáideora ar Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Roghnaíonn sé seo an modh dorcha"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Roghnaíonn sé seo an modh dorcha"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Roghnaíonn sé seo an modh sorcha"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Roghnaíonn sé seo an modh sorcha"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Roghnaíonn sé seo scéim dathanna an chórais"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Roghnaíonn sé seo scéim dathanna an chórais"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Úsáideann sé seo an téama dorcha mar théama dorcha"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Úsáideann sé seo an téama dorcha mar théama dorcha"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Úsáideann sé seo an téama breacdhorcha mar théama dorcha"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Úsáideann sé seo an téama breacdhorcha mar théama dorcha"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5729,11 +6122,11 @@ msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go hard"
msgid "Sets image aspect ratio to wide"
msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go leathan"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Socruithe"
@@ -5746,14 +6139,14 @@ msgid "Sexually Suggestive"
msgstr "Graosta"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Comhroinn"
@@ -5771,8 +6164,8 @@ msgid "Share a fun fact!"
msgstr "Roinn rud éigin fútsa féin!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Comhroinn mar sin féin"
@@ -5783,7 +6176,7 @@ msgstr "Comhroinn an fotha"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5801,7 +6194,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5813,7 +6206,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr "Roinn an fotha is fearr leat!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5824,7 +6217,7 @@ msgstr "Roinneann sé seo na suíomh gréasáin atá nasctha"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Taispeáin"
@@ -5836,8 +6229,9 @@ msgstr "Taispeáin"
msgid "Show alt text"
msgstr "Taispeáin an téacs malartach"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Taispeáin mar sin féin"
@@ -5858,19 +6252,23 @@ msgstr "Taispeáin cuntais cosúil le {0}"
msgid "Show hidden replies"
msgstr "Taispeáin freagraí i bhfolach"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "Níos lú den sórt seo"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Tuilleadh"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "Níos mó den sórt seo"
@@ -5878,11 +6276,11 @@ msgstr "Níos mó den sórt seo"
msgid "Show muted replies"
msgstr "Taispeáin freagraí balbhaithe"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Taispeáin postálacha ó mo chuid fothaí"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Taispeáin postálacha athluaite"
@@ -5898,7 +6296,7 @@ msgstr "Taispeáin postálacha athluaite"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Taispeáin athphostálacha san fhotha “Á Leanúint”"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Taispeáin freagraí"
@@ -5918,7 +6316,12 @@ msgstr "Taispeáin freagraí ó na daoine a leanann tú roimh aon fhreagra eile.
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "Taispeáin freagraí a bhfuil ar a laghad {value} {0} acu"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Taispeáin athphostálacha"
@@ -5984,11 +6387,15 @@ msgstr "Logáil isteach nó cláraigh chun páirt a ghlacadh sa chomhrá!"
msgid "Sign into Bluesky or create a new account"
msgstr "Logáil isteach i Bluesky nó cruthaigh cuntas nua"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Logáil amach"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6010,7 +6417,7 @@ msgstr "Cláraigh nó logáil isteach chun páirt a ghlacadh sa chomhrá"
msgid "Sign-in Required"
msgstr "Caithfidh tú logáil isteach"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Logáilte isteach mar"
@@ -6019,21 +6426,25 @@ msgstr "Logáilte isteach mar"
msgid "Signed in as @{0}"
msgstr "Logáilte isteach mar @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Ná bac leis"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Ná bac leis an bpróiseas seo"
@@ -6042,12 +6453,11 @@ msgstr "Ná bac leis an bpróiseas seo"
msgid "Software Dev"
msgstr "Forbairt Bogearraí"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "Tá daoine áirithe in ann freagra a thabhairt"
@@ -6070,13 +6480,13 @@ msgstr "Chuaigh rud éigin amú, bain triail eile as"
msgid "Something went wrong, please try again."
msgstr "Chuaigh rud éigin ó rath. Bain triail eile as."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Ár leithscéal. Chuaigh do sheisiún i léig. Ní mór duit logáil isteach arís."
@@ -6093,8 +6503,12 @@ msgstr "Sórtáil freagraí ar an bpostáil chéanna de réir:"
#~ msgstr "Foinse:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "Foinse: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr "Foinse: <0>{0}0>"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -6131,17 +6545,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6157,7 +6571,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Leathanach stádais"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "Leathanach Stádais"
@@ -6165,27 +6579,27 @@ msgstr "Leathanach Stádais"
#~ msgid "Step"
#~ msgstr "Céim"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Céim {0} as {1}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Stóráil scriosta, tá ort an aip a atosú anois."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Seol"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Liostáil"
@@ -6205,11 +6619,11 @@ msgstr "Glac síntiús le lipéadóir"
msgid "Subscribe to this labeler"
msgstr "Glac síntiús leis an lipéadóir seo"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Liostáil leis an liosta seo"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6217,8 +6631,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Cuntais le leanúint"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Molta duit"
@@ -6226,7 +6639,7 @@ msgstr "Molta duit"
msgid "Suggestive"
msgstr "Gáirsiúil"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6241,30 +6654,35 @@ msgstr "Athraigh an cuntas"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Athraigh go {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Athraíonn sé seo an cuntas beo"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Córas"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Logleabhar an chórais"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "clib"
+#~ msgid "tag"
+#~ msgstr "clib"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Roghchlár na gclibeanna: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Ard"
@@ -6273,11 +6691,19 @@ msgstr "Ard"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Tapáil leis an rud iomlán a fheiceáil"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6302,11 +6728,11 @@ msgstr ""
msgid "Terms"
msgstr "Téarmaí"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Téarmaí Seirbhíse"
@@ -6318,16 +6744,20 @@ msgid "Terms used violate community standards"
msgstr "Sárú ar chaighdeáin an phobail atá sna téarmaí a úsáideadh"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "téacs"
+#~ msgid "text"
+#~ msgstr "téacs"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Réimse téacs"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Go raibh maith agat. Seoladh do thuairisc."
@@ -6335,19 +6765,23 @@ msgstr "Go raibh maith agat. Seoladh do thuairisc."
msgid "That contains the following:"
msgstr "Ina bhfuil an méid seo a leanas:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Tá an leasainm sin in úsáid cheana féin."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6357,6 +6791,15 @@ msgstr "Beidh an cuntas seo in ann caidreamh a dhéanamh leat tar éis duit é a
#~ msgid "the author"
#~ msgstr "an t-údar"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Bogadh Treoirlínte an Phobail go dtí <0/>"
@@ -6365,12 +6808,16 @@ msgstr "Bogadh Treoirlínte an Phobail go dtí <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6378,11 +6825,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr "Tá Discover curtha in áit an fhotha seo."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Cuireadh na lipéid seo a leanas le do chuntas."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Cuireadh na lipéid seo a leanas le do chuid ábhair."
@@ -6390,8 +6837,8 @@ msgstr "Cuireadh na lipéid seo a leanas le do chuid ábhair."
msgid "The following steps will help customize your Bluesky experience."
msgstr "Cuideoidh na céimeanna seo a leanas leat Bluesky a chur in oiriúint duit féin."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Is féidir gur scriosadh an phostáil seo."
@@ -6399,7 +6846,11 @@ msgstr "Is féidir gur scriosadh an phostáil seo."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Bogadh Polasaí na Príobháideachta go dtí <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6445,24 +6896,24 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor."
#~ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor."
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le do fhreastálaí"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
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/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
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."
@@ -6470,13 +6921,13 @@ msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail e
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Bhí fadhb ann maidir leis an liosta a fháil. Tapáil anseo le triail eile a bhaint as."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Bhí fadhb ann maidir le do chuid liostaí a fháil. Tapáil anseo le triail eile a bhaint as."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Níor seoladh do thuairisc. Seiceáil do nasc leis an idirlíon, le do thoil."
@@ -6502,16 +6953,19 @@ msgstr "Bhí fadhb ann maidir le do chuid pasfhocal don aip a fháil"
msgid "There was an issue! {0}"
msgstr "Bhí fadhb ann! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Bhí fadhb ann. Seiceáil do cheangal leis an idirlíon, le do thoil, agus bain triail eile as."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "D’éirigh fadhb gan choinne leis an aip. Abair linn, le do thoil, má tharla sé sin duit!"
@@ -6524,11 +6978,11 @@ msgstr "Tá ráchairt ar Bluesky le déanaí! Cuirfidh muid do chuntas ag obair
#~ msgid "These are popular accounts you might like:"
#~ msgstr "Is cuntais iad seo a bhfuil a lán leantóirí acu. Is féidir go dtaitneoidh siad leat."
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Cuireadh bratach leis an {screenDescription} seo:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Ní mór duit logáil isteach le próifíl an chuntais seo a fheiceáil."
@@ -6537,8 +6991,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr "Tá an cuntas seo blocáilte i liosta modhnóireachta amháin ar a laghad de do chuid. Chun é a díbhlocáil bain an t-úsáideoir de na liostaí sin."
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Cuirfear an t-achomharc seo chuig <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Cuirfear an t-achomharc seo chuig <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6565,8 +7023,8 @@ msgstr "Chuir na modhnóirí foláireamh ginearálta leis an ábhar seo."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Tá an t-ábhar seo ar fáil ó {0}. An bhfuil fonn ort na meáin sheachtracha a thaispeáint?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsáideoirí an duine eile."
@@ -6596,7 +7054,7 @@ msgstr "Tá an fotha seo folamh! Is féidir go mbeidh ort tuilleadh úsáideoir
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6616,11 +7074,11 @@ msgstr "Tá sé seo tábhachtach má bhíonn ort do ríomhphost nó do phasfhoca
#~ msgid "This label was applied by {0}."
#~ msgstr "Cuireadh an lipéad seo ag {0}."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "Chuir <0>{0}0> an lipéad seo leis."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "Chuir an t-údar an lipéad seo leis."
@@ -6629,7 +7087,7 @@ msgstr "Chuir an t-údar an lipéad seo leis."
#~ msgid "This label was applied by you"
#~ msgstr "Chuir tusa an lipéad seo leis."
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "Chuir tusa an lipéad seo leis."
@@ -6641,7 +7099,11 @@ msgstr "Ní dúirt an lipéadóir seo céard iad na lipéid a fhoilsíonn sé, a
msgid "This link is taking you to the following website:"
msgstr "Téann an nasc seo go dtí an suíomh idirlín seo:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Tá an liosta seo folamh!"
@@ -6653,23 +7115,35 @@ msgstr "Níl an tseirbhís modhnóireachta ar fáil. Féach tuilleadh sonraí th
msgid "This name is already in use"
msgstr "Tá an t-ainm seo in úsáid cheana féin"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Scriosadh an phostáil seo."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Níl an phostáil seo le feiceáil ach ag úsáideoirí atá logáilte isteach. Ní bheidh daoine nach bhfuil logáilte isteach in ann í a fheiceáil."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Níl an phróifíl seo le feiceáil ach ag úsáideoirí atá logáilte isteach. Ní bheidh daoine nach bhfuil logáilte isteach in ann í a fheiceáil."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Níor chuir an tseirbhís seo téarmaí seirbhíse ná polasaí príobháideachta ar fáil."
@@ -6686,8 +7160,8 @@ msgstr "Níl aon leantóirí ag an úsáideoir seo."
msgid "This user has blocked you"
msgstr "Tá tú blocáilte ag an úsáideoir seo."
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Tá an t-úsáideoir seo tar éis thú a bhlocáil. Ní féidir leat a gcuid ábhair a fheiceáil."
@@ -6695,11 +7169,11 @@ msgstr "Tá an t-úsáideoir seo tar éis thú a bhlocáil. Ní féidir leat a g
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "Is mian leis an úsáideoir seo nach mbeidh a chuid ábhair ar fáil ach d’úsáideoirí atá sínithe isteach."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Tá an t-úsáideoir seo ar an liosta <0>{0}0> a bhlocáil tú."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Tá an t-úsáideoir seo ar an liosta <0>{0}0> a chuir tú i bhfolach."
@@ -6715,28 +7189,40 @@ msgstr "Níl éinne á leanúint ag an úsáideoir seo."
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Níl an rabhadh seo ar fáil ach le haghaidh postálacha a bhfuil meáin ceangailte leo."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Bainfidh sé seo {0} de do chuid focal i bhfolach. Tig leat é a chur ar ais níos déanaí."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Bainfidh sé seo {0} de do chuid focal i bhfolach. Tig leat é a chur ar ais níos déanaí."
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Roghanna snáitheanna"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Roghanna Snáitheanna"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Modh Snáithithe"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Roghanna Snáitheanna"
@@ -6753,14 +7239,14 @@ msgid "To whom would you like to send this report?"
msgstr "Cé chuige ar mhaith leat an tuairisc seo a sheoladh?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Scoránaigh idir na roghanna maidir le focail atá le cur i bhfolach."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Scoránaigh idir na roghanna maidir le focail atá le cur i bhfolach."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Scoránaigh an bosca anuas"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Scoránaigh le ábhar do dhaoine fásta a cheadú nó gan a cheadú"
@@ -6775,10 +7261,10 @@ msgstr "Trasfhoirmithe"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Aistrigh"
@@ -6791,7 +7277,7 @@ msgstr "Bain triail eile as"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Fíordheimhniú déshraithe (2FA)"
@@ -6803,11 +7289,11 @@ msgstr "Scríobh do theachtaireacht anseo"
msgid "Type:"
msgstr "Clóscríobh:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Díbhlocáil an liosta"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Ná coinnigh an liosta sin i bhfolach níos mó"
@@ -6815,12 +7301,12 @@ msgstr "Ná coinnigh an liosta sin i bhfolach níos mó"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheangal leis an idirlíon, le do thoil."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6831,7 +7317,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Díbhlocáil"
@@ -6855,9 +7341,9 @@ msgstr "Díbhlocáil an cuntas"
msgid "Unblock Account?"
msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Cuir stop leis an athphostáil"
@@ -6867,8 +7353,8 @@ msgid "Unfollow"
msgstr "Dílean"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Dílean"
+#~ msgid "Unfollow"
+#~ msgstr "Dílean"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6887,12 +7373,14 @@ msgstr "Dílean an cuntas seo"
msgid "Unlike this feed"
msgstr "Dímhol an fotha seo"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Ná coinnigh i bhfolach"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Ná coinnigh {truncatedTag} i bhfolach"
@@ -6901,7 +7389,7 @@ msgstr "Ná coinnigh {truncatedTag} i bhfolach"
msgid "Unmute Account"
msgstr "Ná coinnigh an cuntas seo i bhfolach níos mó"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Ná coinnigh aon phostáil {displayTag} i bhfolach"
@@ -6914,13 +7402,21 @@ msgstr "Díbhalbhaigh an comhrá seo"
#~ msgid "Unmute notifications"
#~ msgstr "Lódáil fógraí nua"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Ná coinnigh an snáithe seo i bhfolach níos mó"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Díghreamaigh"
@@ -6928,11 +7424,11 @@ msgstr "Díghreamaigh"
msgid "Unpin from home"
msgstr "Díghreamaigh ón mbaile"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Díghreamaigh an liosta modhnóireachta"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "Díghreamaithe ó do chuid fothaí"
@@ -6940,10 +7436,19 @@ msgstr "Díghreamaithe ó do chuid fothaí"
msgid "Unsubscribe"
msgstr "Díliostáil"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Díliostáil ón lipéadóir seo"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#, fuzzy
#~ msgid "Unwanted sexual content"
@@ -6954,7 +7459,7 @@ msgstr "Díliostáil ón lipéadóir seo"
msgid "Unwanted Sexual Content"
msgstr "Ábhar graosta nach mian liom"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Uasdátú {displayName} sna Liostaí"
@@ -6962,6 +7467,14 @@ msgstr "Uasdátú {displayName} sna Liostaí"
msgid "Update to {handle}"
msgstr "Déan uasdátú go {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Á uasdátú…"
@@ -6974,20 +7487,20 @@ msgstr "Uaslódáil grianghraf in ionad"
msgid "Upload a text file to:"
msgstr "Uaslódáil comhad téacs chuig:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Uaslódáil ó Cheamara"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Uaslódáil ó Chomhaid"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7035,12 +7548,12 @@ msgstr "Úsáid é seo le logáil isteach ar an aip eile in éindí le do leasai
msgid "Used by:"
msgstr "In úsáid ag:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Úsáideoir blocáilte"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Úsáideoir blocáilte ag \"{0}\""
@@ -7048,30 +7561,28 @@ msgstr "Úsáideoir blocáilte ag \"{0}\""
msgid "User blocked by list"
msgstr "Úsáideoir blocáilte trí liosta"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Úsáideoir blocáilte le liosta"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Úsáideoir a bhlocálann thú"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Blocálann an t-úsáideoir seo thú"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Liosta úsáideoirí le {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Liosta úsáideoirí le <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Liosta úsáideoirí leat"
@@ -7083,7 +7594,7 @@ msgstr "Liosta úsáideoirí cruthaithe"
msgid "User list updated"
msgstr "Liosta úsáideoirí uasdátaithe"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Liostaí Úsáideoirí"
@@ -7091,13 +7602,17 @@ msgstr "Liostaí Úsáideoirí"
msgid "Username or email address"
msgstr "Ainm úsáideora nó ríomhphost"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Úsáideoirí"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "Úsáideoirí a bhfuil <0/> á leanúint"
+#~ msgid "users followed by <0/>"
+#~ msgstr "Úsáideoirí a bhfuil <0/> á leanúint"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7106,7 +7621,7 @@ msgstr "Úsáideoirí a bhfuil <0/> á leanúint"
msgid "Users I follow"
msgstr "Úsáideoirí a leanaim"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Úsáideoirí in ”{0}“"
@@ -7126,15 +7641,15 @@ msgstr "Luach:"
msgid "Verify DNS Record"
msgstr "Dearbhaigh taifead DNS"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Dearbhaigh ríomhphost"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Dearbhaigh mo ríomhphost"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Dearbhaigh Mo Ríomhphost"
@@ -7155,31 +7670,44 @@ msgstr "Dearbhaigh Do Ríomhphost"
#~ msgid "Version {0}"
#~ msgstr "Leagan {0}"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "Leagan {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Físchluichí"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Féach ar an abhatár atá ag {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "Amharc ar phróifíl {0}"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Féach ar an iontráil dífhabhtaithe"
@@ -7192,7 +7720,7 @@ msgstr "Féach ar shonraí"
msgid "View details for reporting a copyright violation"
msgstr "Féach ar shonraí maidir le sárú cóipchirt a thuairisciú"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Féach ar an snáithe iomlán"
@@ -7203,12 +7731,12 @@ msgstr "Féach ar eolas faoi na lipéid seo"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Féach ar an bpróifíl"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Féach ar an abhatár"
@@ -7220,11 +7748,23 @@ msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}"
msgid "View users who like this feed"
msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7256,7 +7796,7 @@ msgstr "Theip orainn an comhrá seo a lódáil"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Measaimid go mbeidh do chuntas réidh i gceann {estimatedTime}"
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Tá súil againn go mbeidh an-chraic agat anseo. Ná déan dearmad go bhfuil Bluesky:"
@@ -7265,8 +7805,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Níl aon ábhar nua le taispeáint ó na cuntais a leanann tú. Seo duit an t-ábhar is déanaí ó <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Molaimid focail choitianta a bhíonn i go leor póstálacha a sheachaint, toisc gur féidir nach dtaispeánfaí aon phostáil dá bharr."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Molaimid focail choitianta a bhíonn i go leor póstálacha a sheachaint, toisc gur féidir nach dtaispeánfaí aon phostáil dá bharr."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7276,11 +7816,11 @@ msgstr "Molaimid focail choitianta a bhíonn i go leor póstálacha a sheachaint
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Theip orainn do rogha maidir le dáta breithe a lódáil. Bain triail as arís."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "Theip orainn na lipéadóirí a roghnaigh tú a lódáil faoi láthair."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a shocrú. Má mhaireann an fhadhb, ní gá duit an próiseas seo a chur i gcrích."
@@ -7288,7 +7828,7 @@ msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a
msgid "We will let you know when your account is ready."
msgstr "Déarfaidh muid leat nuair a bheidh do chuntas réidh."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit."
@@ -7296,15 +7836,15 @@ msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit."
msgid "We're having network issues, try again"
msgstr "Tá fadhbanna líonra againn, bain triail as arís"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Tá muid an-sásta go bhfuil tú linn!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Ár leithscéal, ach ní féidir linn an liosta seo a thaispeáint. Má mhaireann an fhadhb, déan teagmháil leis an duine a chruthaigh an liosta, @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Tá brón orainn, ach theip orainn na focail a chuir tú i bhfolach a lódáil an uair seo. Bain triail as arís."
@@ -7312,11 +7852,11 @@ msgstr "Tá brón orainn, ach theip orainn na focail a chuir tú i bhfolach a l
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Ár leithscéal, ach níorbh fhéidir linn do chuardach a chur i gcrích. Bain triail eile as i gceann cúpla nóiméad."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a aimsiú."
@@ -7341,7 +7881,7 @@ msgstr "Fáilte ar ais!"
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Cad iad na rudaí a bhfuil suim agat iontu?"
@@ -7351,7 +7891,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Aon scéal?"
@@ -7363,22 +7903,26 @@ msgstr "Cad iad na teangacha sa phostáil seo?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Cad iad na teangacha ba mhaith leat a fheiceáil i do chuid fothaí algartamacha?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "Cé ar féidir leo teachtaireacht a sheoladh chugat?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Cé atá in ann freagra a thabhairt"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7422,12 +7966,12 @@ msgstr "Leathan"
msgid "Write a message"
msgstr "Scríobh teachtaireacht"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Scríobh postáil"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Scríobh freagra"
@@ -7437,10 +7981,10 @@ msgid "Writers"
msgstr "Scríbhneoirí"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7451,10 +7995,18 @@ msgstr "Tá"
msgid "Yes, deactivate"
msgstr "Tá, díghníomhaigh"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "Tá, athghníomhaigh mo chuntas"
@@ -7463,7 +8015,8 @@ msgstr "Tá, athghníomhaigh mo chuntas"
msgid "Yesterday, {time}"
msgstr "Inné, {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7529,11 +8082,11 @@ msgstr "Níl aon fhothaí greamaithe agat."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "Níl aon fhothaí sábháilte agat!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Níl aon fhothaí sábháilte agat."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Bhlocáil tú an t-údar nó tá tú blocáilte ag an údar."
@@ -7541,9 +8094,9 @@ msgstr "Bhlocáil tú an t-údar nó tá tú blocáilte ag an údar."
msgid "You have blocked this user"
msgstr "Bhlocáil tú an t-úsáideoir seo"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Bhlocáil tú an cuntas seo. Ní féidir leat a gcuid ábhar a fheiceáil."
@@ -7554,20 +8107,20 @@ msgstr "Bhlocáil tú an cuntas seo. Ní féidir leat a gcuid ábhar a fheiceái
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Tá tú tar éis cód míchruinn a chur isteach. Ba cheart an cruth seo a bheith air: XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Chuir tú an phostáil seo i bhfolach"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Chuir tú an phostáil seo i bhfolach."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Chuir tú an cuntas seo i bhfolach."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Chuir tú an t-úsáideoir seo i bhfolach"
@@ -7575,12 +8128,12 @@ msgstr "Chuir tú an t-úsáideoir seo i bhfolach"
msgid "You have no conversations yet. Start one!"
msgstr "Níl comhrá ar bith agat fós. Tosaigh ceann!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Níl aon fhothaí agat."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Níl aon liostaí agat."
@@ -7609,27 +8162,40 @@ msgstr "Tá deireadh sroichte agat"
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Níor chuir tú aon fhocal ná clib i bhfolach fós"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "Is féidir leat achomharc a dhéanamh maidir le lipéid nár chuir tú féin má shíleann tú iad a bheith in earráid."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Is féidir leat achomharc a dhéanamh maidir leis na lipéad seo má shíleann tú gur cuireadh in earráid iad."
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Caithfidh tú a bheith 13 bliana d’aois nó níos sine le clárú."
@@ -7649,7 +8215,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "Caithfidh tú ar a laghad lipéadóir amháin a roghnú do thuairisc"
@@ -7657,11 +8223,11 @@ msgstr "Caithfidh tú ar a laghad lipéadóir amháin a roghnú do thuairisc"
msgid "You previously deactivated @{0}."
msgstr "Rinne tú díghníomhú ar @{0} cheana."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Ní bhfaighidh tú fógraí don snáithe seo a thuilleadh."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Gheobhaidh tú fógraí don snáithe seo anois."
@@ -7681,23 +8247,23 @@ msgstr "Tusa: {defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "Tusa: {short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7716,12 +8282,12 @@ msgstr "Tá tú sa scuaine"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Tá tú logáilte isteach le pasfhocal aipe. Logáil isteach le do phríomh-phasfhocal chun dul ar aghaidh le díghníomhú do chuntais."
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Tá tú réidh!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Roghnaigh tú focal nó clib atá sa phostáil seo a chur i bhfolach."
@@ -7729,7 +8295,7 @@ msgstr "Roghnaigh tú focal nó clib atá sa phostáil seo a chur i bhfolach."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Do chuntas"
@@ -7745,6 +8311,10 @@ msgstr "Is féidir cartlann do chuntais, a bhfuil na taifid phoiblí uile inti,
msgid "Your birth date"
msgstr "Do bhreithlá"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "Cuireadh do chuid comhráite ar ceal"
@@ -7758,7 +8328,7 @@ msgstr "Sábhálfar do rogha, ach is féidir é athrú níos déanaí sna socrui
#~ msgstr "Is é “Following” d’fhotha réamhshocraithe"
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7772,7 +8342,7 @@ msgstr "Uasdátaíodh do sheoladh ríomhphoist ach níor dearbhaíodh é. An ch
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Níor dearbhaíodh do sheoladh ríomhphoist fós. Is tábhachtach an chéim shábháilteachta é sin agus molaimid é."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7780,7 +8350,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Tá an fotha de na daoine a leanann tú folamh! Lean tuilleadh úsáideoirí le feiceáil céard atá ar siúl."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Do leasainm iomlán anseo:"
@@ -7788,7 +8358,7 @@ msgstr "Do leasainm iomlán anseo:"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Do leasainm iomlán anseo: <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Na focail a chuir tú i bhfolach"
@@ -7796,15 +8366,15 @@ msgstr "Na focail a chuir tú i bhfolach"
msgid "Your password has been changed successfully!"
msgstr "Athraíodh do phasfhocal!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Foilsíodh do phostáil"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Tá do chuid postálacha, moltaí, agus blocálacha poiblí. Is príobháideach iad na cuntais a chuireann tú i bhfolach."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Do phróifíl"
@@ -7812,7 +8382,7 @@ msgstr "Do phróifíl"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Ní bheidh do phróifíl, postálacha, fothaí ná liostaí infheicthe ag úsáideoirí eile Bluesky. Is féidir leat do chuntas a athghníomhú uair ar bith trí logáil isteach."
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Foilsíodh do fhreagra"
@@ -7820,6 +8390,6 @@ msgstr "Foilsíodh do fhreagra"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Seolfar do thuairisc go dtí Seirbhís Modhnóireachta Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Do leasainm"
diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po
index 413ff8f5d8..c6969c3ed9 100644
--- a/src/locale/locales/hi/messages.po
+++ b/src/locale/locales/hi/messages.po
@@ -21,7 +21,8 @@ msgstr ""
msgid "(no email)"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -45,7 +46,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr ""
@@ -63,16 +64,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -80,23 +81,37 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -104,7 +119,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -140,7 +155,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -181,7 +196,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr ""
@@ -194,12 +209,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr ""
+#~ msgid "<0/> members"
+#~ msgstr ""
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -219,11 +234,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -239,6 +254,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr ""
@@ -276,10 +295,22 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/view/com/util/moderation/LabelInfo.tsx:45
#~ msgid "A content warning has been applied to this {0}."
#~ msgstr ""
@@ -292,7 +323,7 @@ msgstr ""
#~ msgid "A new version of the app is available. Please update to continue using the app."
#~ msgstr "ऐप का एक नया संस्करण उपलब्ध है. कृपया ऐप का उपयोग जारी रखने के लिए अपडेट करें।"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr ""
@@ -302,16 +333,16 @@ msgid "Access profile and other navigation links"
msgstr ""
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "प्रवेर्शयोग्यता"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr ""
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr ""
@@ -320,8 +351,8 @@ msgstr ""
#~ msgstr ""
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "अकाउंट"
@@ -337,20 +368,20 @@ msgstr ""
msgid "Account muted"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "अकाउंट के विकल्प"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr ""
@@ -367,10 +398,10 @@ msgstr ""
msgid "Account unmuted"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "ऐड करो"
@@ -386,14 +417,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "सामग्री चेतावनी जोड़ें"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "इस सूची में किसी को जोड़ें"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "अकाउंट जोड़ें"
@@ -433,11 +464,11 @@ msgstr ""
#~ msgid "Add link card:"
#~ msgstr "लिंक कार्ड जोड़ें:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr ""
@@ -461,7 +492,7 @@ msgstr ""
msgid "Add the following DNS record to your domain:"
msgstr "अपने डोमेन में निम्नलिखित DNS रिकॉर्ड जोड़ें:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -470,7 +501,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "सूचियों में जोड़ें"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "इस फ़ीड को सहेजें"
@@ -479,19 +510,20 @@ msgstr "इस फ़ीड को सहेजें"
#~ msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "पसंद की संख्या को समायोजित करें उत्तर को आपके फ़ीड में दिखाया जाना चाहिए।।"
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "पसंद की संख्या को समायोजित करें उत्तर को आपके फ़ीड में दिखाया जाना चाहिए।।"
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "वयस्क सामग्री"
@@ -500,7 +532,7 @@ msgstr "वयस्क सामग्री"
#~ msgid "Adult content can only be enabled via the Web at <0/>."
#~ msgstr ""
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -508,20 +540,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "विकसित"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr ""
@@ -540,6 +572,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -557,7 +597,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "वैकल्पिक पाठ"
@@ -578,14 +618,27 @@ msgstr "{0} को ईमेल भेजा गया है। इसमें
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "{0} को ईमेल भेजा गया है। इसमें एक OTP कोड शामिल है जिसे आप नीचे दर्ज कर सकते हैं।।"
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#~ msgid "An error occured"
+#~ msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -599,10 +652,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr ""
@@ -617,21 +675,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr ""
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "और"
@@ -648,6 +710,10 @@ msgstr ""
msgid "Anti-Social Behavior"
msgstr ""
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "ऐप भाषा"
@@ -664,7 +730,7 @@ msgstr ""
msgid "App Password names must be at least 4 characters long."
msgstr ""
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr ""
@@ -672,18 +738,18 @@ msgstr ""
#~ msgid "App passwords"
#~ msgstr "ऐप पासवर्ड"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "ऐप पासवर्ड"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr ""
@@ -696,7 +762,7 @@ msgstr ""
#~ msgid "Appeal Content Warning"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr ""
@@ -716,10 +782,19 @@ msgstr ""
#~ msgid "Appeal this decision."
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "दिखावट"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -741,7 +816,7 @@ msgstr "क्या आप वाकई ऐप पासवर्ड \"{name}\"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -753,19 +828,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr ""
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "क्या आप वाकई इस ड्राफ्ट को हटाना करना चाहेंगे?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "क्या आप वास्तव में इसे करना चाहते हैं?"
@@ -786,13 +861,13 @@ msgstr ""
msgid "Artistic or non-erotic nudity."
msgstr "कलात्मक या गैर-कामुक नग्नता।।"
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -805,8 +880,8 @@ msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "वापस"
@@ -819,7 +894,7 @@ msgstr "वापस"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "मूल बातें"
@@ -827,7 +902,7 @@ msgstr "मूल बातें"
msgid "Birthday"
msgstr "जन्मदिन"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "जन्मदिन:"
@@ -850,15 +925,15 @@ msgstr "खाता ब्लॉक करें"
msgid "Block Account?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "खाता ब्लॉक करें"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "खाता ब्लॉक करें?"
@@ -866,16 +941,15 @@ msgstr "खाता ब्लॉक करें?"
#~ msgid "Block this List"
#~ msgstr ""
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr ""
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "ब्लॉक किए गए खाते"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "ब्लॉक किए गए खाते"
@@ -888,7 +962,7 @@ msgstr "अवरुद्ध खाते आपके थ्रेड्स
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपके साथ बातचीत नहीं कर सकते। आप उनकी सामग्री नहीं देख पाएंगे और उन्हें आपकी सामग्री देखने से रोका जाएगा।"
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "ब्लॉक पोस्ट।"
@@ -896,7 +970,7 @@ msgstr "ब्लॉक पोस्ट।"
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "अवरोधन सार्वजनिक है. अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपके साथ बातचीत नहीं कर सकते।"
@@ -904,7 +978,7 @@ msgstr "अवरोधन सार्वजनिक है. अवरुद
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr ""
@@ -944,7 +1018,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr ""
@@ -965,21 +1039,23 @@ msgstr ""
msgid "Books"
msgstr ""
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -992,7 +1068,7 @@ msgstr ""
#~ msgid "Build version {0} {1}"
#~ msgstr "Build version {0} {1}"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr ""
@@ -1000,7 +1076,7 @@ msgstr ""
#~ msgid "Button disabled. Input custom domain to proceed."
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr ""
@@ -1016,15 +1092,15 @@ msgstr ""
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr ""
@@ -1036,13 +1112,13 @@ msgstr "कैमरा"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "केवल अक्षर, संख्या, रिक्त स्थान, डैश और अंडरस्कोर हो सकते हैं। कम से कम 4 अक्षर लंबा होना चाहिए, लेकिन 32 अक्षरों से अधिक लंबा नहीं होना चाहिए।।"
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -1058,9 +1134,8 @@ msgstr "केवल अक्षर, संख्या, रिक्त स्
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "कैंसिल"
@@ -1088,7 +1163,7 @@ msgstr "तस्वीर को क्रॉप मत करो"
msgid "Cancel profile editing"
msgstr "प्रोफ़ाइल संपादन मत करो"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "कोटे पोस्ट मत करो"
@@ -1097,7 +1172,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "खोज मत करो"
@@ -1113,17 +1187,17 @@ msgstr ""
msgid "Change"
msgstr ""
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "परिवर्तन"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "हैंडल बदलें"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "हैंडल बदलें"
@@ -1131,12 +1205,12 @@ msgstr "हैंडल बदलें"
msgid "Change my email"
msgstr "मेरा ईमेल बदलें"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr ""
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr ""
@@ -1152,7 +1226,7 @@ msgstr ""
msgid "Change Your Email"
msgstr "मेरा ईमेल बदलें"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1164,14 +1238,14 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr ""
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1208,7 +1282,7 @@ msgstr "नीचे प्रवेश करने के लिए OTP को
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
@@ -1216,11 +1290,11 @@ msgstr ""
#~ msgid "Choose a new Bluesky username or create"
#~ msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1228,7 +1302,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1236,7 +1310,7 @@ msgstr ""
msgid "Choose Service"
msgstr "सेवा चुनें"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr ""
@@ -1251,8 +1325,8 @@ msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:103
#~ msgid "Choose your algorithmic feeds"
@@ -1267,18 +1341,18 @@ msgid "Choose your password"
msgstr "अपना पासवर्ड चुनें"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr ""
+#~ msgid "Clear all legacy storage data"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr ""
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr ""
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr ""
@@ -1288,10 +1362,10 @@ msgid "Clear search query"
msgstr "खोज क्वेरी साफ़ करें"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr ""
+#~ msgid "Clears all legacy storage data"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr ""
@@ -1311,7 +1385,7 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr ""
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr ""
@@ -1319,6 +1393,14 @@ msgstr ""
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1332,12 +1414,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1358,7 +1440,7 @@ msgid "Close bottom drawer"
msgstr "बंद करो"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr ""
@@ -1382,8 +1464,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr "नेविगेशन पाद बंद करें"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr ""
@@ -1395,7 +1477,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -1403,11 +1485,11 @@ msgstr ""
msgid "Closes viewer for header image"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr ""
@@ -1421,27 +1503,31 @@ msgstr ""
msgid "Comics"
msgstr ""
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "समुदाय दिशानिर्देश"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr ""
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "जवाब लिखो"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr ""
@@ -1487,11 +1573,11 @@ msgstr "खाते को हटा दें"
#~ msgid "Confirm your age to enable adult content."
#~ msgstr ""
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr ""
@@ -1513,7 +1599,8 @@ msgstr "OTP कोड"
msgid "Connecting..."
msgstr "कनेक्टिंग ..।"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr ""
@@ -1533,24 +1620,24 @@ msgstr ""
#~ msgid "Content Filtering"
#~ msgstr "सामग्री फ़िल्टरिंग"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr ""
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "सामग्री भाषा"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "सामग्री चेतावनी"
@@ -1562,7 +1649,7 @@ msgstr "सामग्री चेतावनी"
msgid "Context menu backdrop, click to close the menu."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "आगे बढ़ें"
@@ -1575,7 +1662,7 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1602,7 +1689,7 @@ msgstr ""
msgid "Copied"
msgstr "कॉपी कर ली"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr ""
@@ -1610,8 +1697,8 @@ msgstr ""
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr ""
@@ -1645,12 +1732,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr ""
@@ -1663,8 +1750,8 @@ msgstr ""
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "पोस्ट टेक्स्ट कॉपी करें"
@@ -1672,14 +1759,14 @@ msgstr "पोस्ट टेक्स्ट कॉपी करें"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "कॉपीराइट नीति"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1689,7 +1776,7 @@ msgstr ""
msgid "Could not load feed"
msgstr "फ़ीड लोड नहीं कर सकता"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "सूची लोड नहीं कर सकता"
@@ -1718,7 +1805,7 @@ msgstr ""
msgid "Create a new account"
msgstr "नया खाता बनाएं"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr ""
@@ -1728,7 +1815,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1736,7 +1823,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "खाता बनाएँ"
@@ -1800,46 +1887,58 @@ msgstr ""
msgid "Custom domain"
msgstr "कस्टम डोमेन"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr ""
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
#: src/view/screens/Settings.tsx:687
#~ msgid "Danger Zone"
#~ msgstr "खतरा क्षेत्र"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "डार्क मोड"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr ""
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr ""
+#: src/view/screens/Settings/index.tsx:473
+#~ msgid "Dark Theme"
+#~ msgstr ""
+
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr ""
@@ -1848,16 +1947,16 @@ msgid "Debug panel"
msgstr ""
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr ""
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "खाता हटाएं"
@@ -1877,8 +1976,8 @@ msgstr "अप्प पासवर्ड हटाएं"
msgid "Delete app password?"
msgstr ""
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1886,7 +1985,7 @@ msgstr ""
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "सूची हटाएँ"
@@ -1906,41 +2005,41 @@ msgstr "मेरा खाता हटाएं"
#~ msgid "Delete my account…"
#~ msgstr "मेरा खाता हटाएं…"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "पोस्ट को हटाएं"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "इस पोस्ट को डीलीट करें?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "यह पोस्ट मिटाई जा चुकी है"
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1955,15 +2054,29 @@ msgstr "विवरण"
msgid "Descriptive alt text"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
#: src/view/screens/Settings.tsx:760
#~ msgid "Developer Tools"
#~ msgstr "डेवलपर उपकरण"
-#: src/view/com/composer/Composer.tsx:295
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr ""
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr ""
@@ -1971,7 +2084,7 @@ msgstr ""
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr ""
@@ -1979,7 +2092,7 @@ msgstr ""
msgid "Disable Email 2FA"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr ""
@@ -1987,6 +2100,10 @@ msgstr ""
#~ msgid "Disable haptics"
#~ msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr ""
@@ -1996,11 +2113,11 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr ""
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr ""
@@ -2008,12 +2125,12 @@ msgstr ""
#~ msgid "Discard draft"
#~ msgstr "ड्राफ्ट हटाएं"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr ""
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr ""
@@ -2026,19 +2143,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "नए फ़ीड की खोज करें"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr ""
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -2054,11 +2179,15 @@ msgstr "प्रदर्शन का नाम"
msgid "DNS Panel"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr ""
@@ -2076,7 +2205,6 @@ msgstr "डोमेन सत्यापित!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -2095,8 +2223,8 @@ msgstr "खत्म"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr ""
@@ -2109,7 +2237,7 @@ msgstr "खत्म {extraText}"
#~ msgid "Double tap to sign in"
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -2130,6 +2258,10 @@ msgstr ""
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr ""
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr ""
@@ -2170,11 +2302,11 @@ msgstr ""
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2183,12 +2315,12 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2197,7 +2329,12 @@ msgstr ""
msgid "Edit image"
msgstr "छवि संपादित करें"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "सूची विवरण संपादित करें"
@@ -2205,10 +2342,10 @@ msgstr "सूची विवरण संपादित करें"
msgid "Edit Moderation List"
msgstr ""
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "मेरी फ़ीड संपादित करें"
@@ -2216,10 +2353,15 @@ msgstr "मेरी फ़ीड संपादित करें"
msgid "Edit my profile"
msgstr "मेरी प्रोफ़ाइल संपादित करें"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2235,7 +2377,7 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे
#~ msgid "Edit Saved Feeds"
#~ msgstr "एडिट सेव्ड फीड"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2243,7 +2385,7 @@ msgstr ""
msgid "Edit User List"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2255,7 +2397,7 @@ msgstr ""
msgid "Edit your profile description"
msgstr ""
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2265,8 +2407,8 @@ msgid "Education"
msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2294,7 +2436,7 @@ msgstr "ईमेल अपडेट किया गया"
msgid "Email verified"
msgstr ""
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "ईमेल:"
@@ -2303,8 +2445,8 @@ msgid "Embed HTML code"
msgstr ""
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr ""
@@ -2316,7 +2458,7 @@ msgstr ""
msgid "Enable {0} only"
msgstr ""
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr ""
@@ -2338,7 +2480,7 @@ msgstr ""
#~ msgid "Enable External Media"
#~ msgstr ""
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr ""
@@ -2347,9 +2489,13 @@ msgstr ""
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "इस सेटिंग को केवल उन लोगों के बीच जवाब देखने में सक्षम करें जिन्हें आप फॉलो करते हैं।।"
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "इस सेटिंग को केवल उन लोगों के बीच जवाब देखने में सक्षम करें जिन्हें आप फॉलो करते हैं।।"
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2357,11 +2503,11 @@ msgstr ""
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr ""
@@ -2381,8 +2527,8 @@ msgstr ""
msgid "Enter a password"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr ""
@@ -2435,25 +2581,27 @@ msgstr "अपने यूज़रनेम और पासवर्ड द
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr ""
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2469,6 +2617,14 @@ msgstr ""
msgid "Excessive or unwanted messages"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr ""
@@ -2486,7 +2642,6 @@ msgid "Exits image view"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr ""
@@ -2498,7 +2653,7 @@ msgstr ""
msgid "Expand alt text"
msgstr "ऑल्ट टेक्स्ट"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2511,6 +2666,14 @@ msgstr ""
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr ""
@@ -2519,12 +2682,12 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr ""
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr ""
@@ -2534,17 +2697,17 @@ msgid "External Media"
msgstr ""
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr ""
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr ""
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr ""
@@ -2553,8 +2716,8 @@ msgstr ""
msgid "Failed to create app password."
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2566,16 +2729,16 @@ msgstr ""
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2597,12 +2760,12 @@ msgstr ""
#~ msgid "Failed to load recommended feeds"
#~ msgstr "अनुशंसित फ़ीड लोड करने में विफल"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2622,16 +2785,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2640,12 +2803,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr ""
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr ""
@@ -2662,19 +2825,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "प्रतिक्रिया"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "सभी फ़ीड"
@@ -2690,7 +2853,7 @@ msgstr "सभी फ़ीड"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "सामग्री को व्यवस्थित करने के लिए उपयोगकर्ताओं द्वारा फ़ीड बनाए जाते हैं। कुछ फ़ीड चुनें जो आपको दिलचस्प लगें।"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "फ़ीड कस्टम एल्गोरिदम हैं जिन्हें उपयोगकर्ता थोड़ी कोडिंग विशेषज्ञता के साथ बनाते हैं। <0/> अधिक जानकारी के लिए."
@@ -2698,7 +2861,7 @@ msgstr "फ़ीड कस्टम एल्गोरिदम हैं ज
#~ msgid "Feeds can be topical as well!"
#~ msgstr ""
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2714,7 +2877,7 @@ msgstr ""
msgid "Filter from feeds"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr ""
@@ -2744,7 +2907,7 @@ msgstr ""
#~ msgid "Finding similar accounts..."
#~ msgstr "मिलते-जुलते खाते ढूँढना"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr ""
@@ -2756,7 +2919,7 @@ msgstr ""
msgid "Fine-tune the discussion threads."
msgstr "चर्चा धागे को ठीक-ट्यून करें।।"
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2768,7 +2931,7 @@ msgstr ""
msgid "Fitness"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr ""
@@ -2782,12 +2945,11 @@ msgid "Flip vertically"
msgstr ""
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "फॉलो"
@@ -2801,7 +2963,7 @@ msgstr ""
msgid "Follow {0}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2814,8 +2976,8 @@ msgstr ""
msgid "Follow Account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2827,7 +2989,7 @@ msgstr ""
msgid "Follow Back"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2863,19 +3025,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "केवल वे यूजर को फ़ॉलो किया गया"
+#~ msgid "Followed users only"
+#~ msgstr "केवल वे यूजर को फ़ॉलो किया गया"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2884,7 +3046,7 @@ msgstr ""
msgid "Followers"
msgstr "यह यूजर आपका फ़ोलो करता है"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2894,34 +3056,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "फोल्लोविंग"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr ""
@@ -2933,7 +3095,7 @@ msgstr ""
msgid "Follows you"
msgstr "यह यूजर आपका फ़ोलो करता है"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr ""
@@ -2950,6 +3112,10 @@ msgstr "सुरक्षा कारणों के लिए, हमें
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "सुरक्षा कारणों के लिए, आप इसे फिर से देखने में सक्षम नहीं होंगे। यदि आप इस पासवर्ड को खो देते हैं, तो आपको एक नया उत्पन्न करना होगा।।"
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/view/com/auth/login/LoginForm.tsx:244
#~ msgid "Forgot"
#~ msgstr "भूल"
@@ -2979,7 +3145,7 @@ msgstr ""
msgid "From @{sanitizedAuthor}"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr ""
@@ -2992,7 +3158,7 @@ msgstr "गैलरी"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -3021,24 +3187,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "वापस जाओ"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "वापस जाओ"
@@ -3048,14 +3215,14 @@ msgstr "वापस जाओ"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -3097,7 +3264,7 @@ msgstr ""
msgid "Graphic Media"
msgstr ""
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -3105,7 +3272,7 @@ msgstr ""
msgid "Handle"
msgstr "हैंडल"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr ""
@@ -3113,7 +3280,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr ""
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr ""
@@ -3125,12 +3292,12 @@ msgstr ""
msgid "Hashtag: #{tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "सहायता"
@@ -3154,6 +3321,10 @@ msgstr ""
msgid "Here is your app password."
msgstr "यहां आपका ऐप पासवर्ड है."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -3161,18 +3332,33 @@ msgstr "यहां आपका ऐप पासवर्ड है."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "इसे छिपाएं"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr ""
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
+#~ msgid "Hide post"
+#~ msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
msgstr ""
#: src/components/moderation/ContentHider.tsx:68
@@ -3180,11 +3366,16 @@ msgstr ""
msgid "Hide the content"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "उपयोगकर्ता सूची छुपाएँ"
@@ -3220,12 +3411,12 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "होम फीड"
@@ -3265,7 +3456,7 @@ msgstr ""
msgid "I have my own domain"
msgstr "मेरे पास अपना डोमेन है"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -3278,15 +3469,15 @@ msgstr ""
msgid "If none are selected, suitable for all ages."
msgstr "यदि किसी को चुना जाता है, तो सभी उम्र के लिए उपयुक्त है।।"
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -3387,10 +3578,14 @@ msgstr ""
msgid "Input your preferred hosting provider"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr ""
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3400,7 +3595,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr ""
@@ -3420,7 +3615,7 @@ msgstr "एक दोस्त को आमंत्रित करें"
msgid "Invite code"
msgstr "आमंत्रण कोड"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr ""
@@ -3456,14 +3651,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3513,11 +3708,11 @@ msgstr ""
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr ""
@@ -3525,16 +3720,16 @@ msgstr ""
msgid "Language selection"
msgstr "अपनी भाषा चुने"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr ""
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "भाषा सेटिंग्स"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "भाषा"
@@ -3551,21 +3746,26 @@ msgstr ""
#~ msgid "Learn more"
#~ msgstr ""
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "अधिक जानें"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr ""
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "इस चेतावनी के बारे में अधिक जानें"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr ""
@@ -3603,8 +3803,8 @@ msgid "left to go."
msgstr ""
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr ""
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3615,7 +3815,7 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "चलो अपना पासवर्ड रीसेट करें!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr ""
@@ -3625,7 +3825,8 @@ msgstr ""
#~ msgid "Library"
#~ msgstr "चित्र पुस्तकालय"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "लाइट मोड"
@@ -3637,8 +3838,8 @@ msgstr "लाइट मोड"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3648,14 +3849,15 @@ msgid "Like this feed"
msgstr "इस फ़ीड को लाइक करो"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "इन यूजर ने लाइक किया है"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr ""
@@ -3673,11 +3875,11 @@ msgstr ""
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr ""
@@ -3685,11 +3887,11 @@ msgstr ""
msgid "Likes"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr ""
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr ""
@@ -3697,20 +3899,28 @@ msgstr ""
msgid "List Avatar"
msgstr "सूची अवतार"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr ""
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr ""
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr ""
@@ -3718,20 +3928,20 @@ msgstr ""
msgid "List Name"
msgstr "सूची का नाम"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr ""
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "सूची"
@@ -3760,10 +3970,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "नई सूचनाएं लोड करें"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "नई पोस्ट लोड करें"
@@ -3775,7 +3985,7 @@ msgstr ""
#~ msgid "Local dev server"
#~ msgstr "स्थानीय देव सर्वर"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr ""
@@ -3791,7 +4001,7 @@ msgstr ""
msgid "Log out"
msgstr ""
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr ""
@@ -3831,7 +4041,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "यह सुनिश्चित करने के लिए कि आप कहाँ जाना चाहते हैं!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr ""
@@ -3848,20 +4058,20 @@ msgstr ""
#~ msgid "May only contain letters and numbers"
#~ msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr ""
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "मेनू"
@@ -3892,7 +4102,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3907,29 +4117,31 @@ msgstr ""
msgid "Misleading Account"
msgstr ""
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "मॉडरेशन"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr ""
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr ""
@@ -3941,20 +4153,24 @@ msgstr ""
msgid "Moderation list updated"
msgstr ""
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "मॉडरेशन सूचियाँ"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr ""
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr ""
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr ""
@@ -3962,12 +4178,12 @@ msgstr ""
msgid "Moderation tools"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr ""
@@ -3975,7 +4191,7 @@ msgstr ""
msgid "More feeds"
msgstr "अधिक फ़ीड"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "अधिक विकल्प"
@@ -3999,11 +4215,13 @@ msgstr ""
#~ msgid "Must be at least 3 characters"
#~ msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr ""
@@ -4012,11 +4230,11 @@ msgstr ""
msgid "Mute Account"
msgstr "खाता म्यूट करें"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "खातों को म्यूट करें"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr ""
@@ -4030,14 +4248,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr ""
+#~ msgid "Mute in tags only"
+#~ msgstr ""
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
+#~ msgid "Mute in text & tags"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr ""
@@ -4046,7 +4268,7 @@ msgstr ""
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "इन खातों को म्यूट करें?"
@@ -4054,33 +4276,49 @@ msgstr "इन खातों को म्यूट करें?"
#~ msgid "Mute this List"
#~ msgstr ""
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "थ्रेड म्यूट करें"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr ""
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "म्यूट किए गए खाते"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "म्यूट किए गए खाते"
@@ -4089,7 +4327,7 @@ msgstr "म्यूट किए गए खाते"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "म्यूट किए गए खातों की पोस्ट आपके फ़ीड और आपकी सूचनाओं से हटा दी जाती हैं। म्यूट पूरी तरह से निजी हैं."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr ""
@@ -4097,7 +4335,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "म्यूट करना निजी है. म्यूट किए गए खाते आपके साथ इंटरैक्ट कर सकते हैं, लेकिन आप उनकी पोस्ट नहीं देखेंगे या उनसे सूचनाएं प्राप्त नहीं करेंगे।"
@@ -4106,7 +4344,7 @@ msgstr "म्यूट करना निजी है. म्यूट कि
msgid "My Birthday"
msgstr "जन्मदिन"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "मेरी फ़ीड"
@@ -4114,11 +4352,11 @@ msgstr "मेरी फ़ीड"
msgid "My Profile"
msgstr "मेरी प्रोफाइल"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr ""
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "मेरी फ़ीड"
@@ -4147,7 +4385,7 @@ msgstr ""
msgid "Nature"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -4161,7 +4399,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr ""
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr ""
@@ -4179,7 +4417,7 @@ msgstr ""
#~ msgid "Never lose access to your followers and data."
#~ msgstr "अपने फ़ॉलोअर्स और डेटा तक पहुंच कभी न खोएं।"
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr ""
@@ -4191,7 +4429,7 @@ msgstr ""
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr ""
@@ -4227,12 +4465,12 @@ msgctxt "action"
msgid "New post"
msgstr ""
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "नई पोस्ट"
@@ -4266,10 +4504,10 @@ msgstr ""
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -4285,17 +4523,17 @@ msgstr "अगला"
msgid "Next image"
msgstr "अगली फोटो"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "नहीं"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "कोई विवरण नहीं"
@@ -4312,12 +4550,12 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr ""
@@ -4329,7 +4567,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr ""
@@ -4340,6 +4578,10 @@ msgstr ""
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4353,11 +4595,11 @@ msgstr ""
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr ""
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला"
@@ -4382,13 +4624,13 @@ msgstr ""
msgid "No thanks"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr ""
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4407,7 +4649,7 @@ msgstr ""
#~ msgid "Not Applicable."
#~ msgstr "लागू नहीं।"
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr ""
@@ -4418,12 +4660,12 @@ msgid "Not right now"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr ""
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""
@@ -4435,7 +4677,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4452,14 +4694,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "सूचनाएं"
@@ -4492,12 +4734,12 @@ msgid "Off"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "अरे नहीं!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr ""
@@ -4521,7 +4763,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr ""
@@ -4529,7 +4771,7 @@ msgstr ""
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "एक या अधिक छवियाँ alt पाठ याद आती हैं।।"
@@ -4538,14 +4780,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
-
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
+#~ msgid "Only {0} can reply"
#~ msgstr ""
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr ""
+
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
@@ -4553,7 +4795,7 @@ msgstr ""
msgid "Oops, something went wrong!"
msgstr ""
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4562,11 +4804,11 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr ""
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4583,8 +4825,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr ""
@@ -4592,7 +4834,7 @@ msgstr ""
msgid "Open feed options menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr ""
@@ -4612,20 +4854,20 @@ msgstr ""
msgid "Open navigation"
msgstr "ओपन नेविगेशन"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr ""
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr ""
@@ -4633,11 +4875,11 @@ msgstr ""
msgid "Opens {numItems} options"
msgstr ""
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr ""
@@ -4649,19 +4891,23 @@ msgstr ""
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr ""
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr ""
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr ""
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "भाषा सेटिंग्स खोलें"
@@ -4673,7 +4919,7 @@ msgstr ""
#~ msgid "Opens editor for profile display name, avatar, background image, and description"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr ""
@@ -4707,11 +4953,11 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr ""
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr ""
@@ -4719,19 +4965,19 @@ msgstr ""
#~ msgid "Opens modal for account deletion confirmation. Requires email code."
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr ""
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr ""
@@ -4739,7 +4985,7 @@ msgstr ""
msgid "Opens modal for using custom domain"
msgstr "कस्टम डोमेन का उपयोग करने के लिए मोडल खोलें"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "मॉडरेशन सेटिंग्स खोलें"
@@ -4752,11 +4998,11 @@ msgstr ""
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "सभी बचाया फ़ीड के साथ स्क्रीन खोलें"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr ""
@@ -4764,7 +5010,7 @@ msgstr ""
#~ msgid "Opens the app password settings page"
#~ msgstr "ऐप पासवर्ड सेटिंग पेज खोलें"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr ""
@@ -4780,21 +5026,21 @@ msgstr ""
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "स्टोरीबुक पेज खोलें"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "सिस्टम लॉग पेज खोलें"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "धागे वरीयताओं को खोलता है"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4807,11 +5053,15 @@ msgid "Option {0} of {numItems}"
msgstr ""
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr ""
@@ -4835,6 +5085,10 @@ msgstr ""
msgid "Other account"
msgstr "अन्य खाता"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/modals/ServerInput.tsx:88
#~ msgid "Other service"
#~ msgstr "अन्य सेवा"
@@ -4847,7 +5101,7 @@ msgstr "अन्य..।"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "पृष्ठ नहीं मिला"
@@ -4876,19 +5130,24 @@ msgid "Password updated!"
msgstr "पासवर्ड अद्यतन!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr ""
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr ""
@@ -4922,7 +5181,7 @@ msgid "Pictures meant for adults."
msgstr "चित्र वयस्कों के लिए थे।।"
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr ""
@@ -4934,11 +5193,12 @@ msgstr ""
msgid "Pinned Feeds"
msgstr "पिन किया गया फ़ीड"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr ""
@@ -4955,6 +5215,11 @@ msgstr ""
msgid "Play or pause the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4964,16 +5229,16 @@ msgstr ""
msgid "Plays the GIF"
msgstr ""
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr ""
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr ""
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr ""
@@ -4993,7 +5258,7 @@ msgstr ""
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "कृपया इस ऐप पासवर्ड के लिए एक अद्वितीय नाम दर्ज करें या हमारे यादृच्छिक रूप से उत्पन्न एक का उपयोग करें।।"
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr ""
@@ -5005,7 +5270,7 @@ msgstr ""
#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}."
#~ msgstr ""
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr ""
@@ -5018,7 +5283,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "कृपया अपना पासवर्ड भी दर्ज करें:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -5040,7 +5305,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr ""
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr ""
@@ -5057,45 +5322,50 @@ msgstr ""
#~ msgid "Pornography"
#~ msgstr ""
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "पोस्ट"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr ""
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "छुपा पोस्ट"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "पोस्ट भाषा"
@@ -5104,22 +5374,26 @@ msgstr "पोस्ट भाषा"
msgid "Post Languages"
msgstr "पोस्ट भाषा"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "पोस्ट नहीं मिला"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
@@ -5142,7 +5416,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr ""
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -5162,7 +5436,7 @@ msgstr ""
msgid "Previous image"
msgstr "पिछली छवि"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "प्राथमिक भाषा"
@@ -5174,16 +5448,16 @@ msgstr "अपने फ़ॉलोअर्स को प्राथमिक
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "गोपनीयता"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "गोपनीयता नीति"
@@ -5195,16 +5469,16 @@ msgstr ""
msgid "Processing..."
msgstr "प्रसंस्करण..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr ""
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "प्रोफ़ाइल"
@@ -5212,11 +5486,11 @@ msgstr "प्रोफ़ाइल"
msgid "Profile updated"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "अपने ईमेल को सत्यापित करके अपने खाते को सुरक्षित रखें।।"
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr ""
@@ -5224,15 +5498,15 @@ msgstr ""
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr ""
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "सार्वजनिक, साझा करने योग्य सूचियाँ जो फ़ीड चला सकती हैं।"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr ""
@@ -5252,10 +5526,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "कोटे पोस्ट"
@@ -5269,6 +5543,39 @@ msgstr "कोटे पोस्ट"
#~ msgid "Quote Post"
#~ msgstr "कोटे पोस्ट"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr ""
@@ -5277,10 +5584,27 @@ msgstr ""
msgid "Ratios"
msgstr "अनुपात"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -5289,7 +5613,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr ""
@@ -5313,15 +5637,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "निकालें"
@@ -5333,11 +5658,11 @@ msgstr "निकालें"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "खाता हटाएं"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr ""
@@ -5350,8 +5675,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "फ़ीड हटाएँ"
@@ -5359,19 +5684,27 @@ msgstr "फ़ीड हटाएँ"
msgid "Remove feed?"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "मेरे फ़ीड से हटाएँ"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr ""
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "छवि निकालें"
@@ -5380,24 +5713,24 @@ msgstr "छवि निकालें"
msgid "Remove image preview"
msgstr "छवि पूर्वावलोकन निकालें"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr ""
@@ -5413,18 +5746,31 @@ msgstr ""
#~ msgid "Remove this feed from your saved feeds?"
#~ msgstr "इस फ़ीड को सहेजे गए फ़ीड से हटा दें?"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr ""
@@ -5432,7 +5778,7 @@ msgstr ""
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -5440,8 +5786,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -5449,7 +5795,7 @@ msgstr ""
msgid "Replies"
msgstr ""
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5457,18 +5803,40 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr ""
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "फिल्टर"
+#~ msgid "Reply Filters"
+#~ msgstr "फिल्टर"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -5476,23 +5844,36 @@ msgstr "फिल्टर"
#~ msgid "Reply to <0/>"
#~ msgstr ""
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5528,7 +5909,7 @@ msgstr ""
msgid "Report feed"
msgstr "रिपोर्ट फ़ीड"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "रिपोर्ट सूची"
@@ -5536,13 +5917,13 @@ msgstr "रिपोर्ट सूची"
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "रिपोर्ट पोस्ट"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5576,30 +5957,31 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "पुन: पोस्ट"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "पोस्ट दोबारा पोस्ट करें या उद्धृत करे"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "द्वारा दोबारा पोस्ट किया गया"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr ""
@@ -5607,20 +5989,20 @@ msgstr ""
#~ msgid "Reposted by <0/>"
#~ msgstr ""
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr ""
@@ -5638,7 +6020,7 @@ msgstr "अनुरोध बदलें"
msgid "Request Code"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "पोस्ट करने से पहले वैकल्पिक टेक्स्ट की आवश्यकता है"
@@ -5667,8 +6049,8 @@ msgstr ""
#~ msgid "Reset onboarding"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें"
@@ -5680,16 +6062,16 @@ msgstr "पासवर्ड रीसेट"
#~ msgid "Reset preferences"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "प्राथमिकताओं को रीसेट करें"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "प्राथमिकताओं की स्थिति को रीसेट करें"
@@ -5703,17 +6085,19 @@ msgid "Retries the last action, which errored out"
msgstr ""
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "फिर से कोशिश करो"
@@ -5721,9 +6105,10 @@ msgstr "फिर से कोशिश करो"
#~ msgid "Retry."
#~ msgstr ""
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr ""
@@ -5741,7 +6126,8 @@ msgstr ""
#~ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5791,7 +6177,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr ""
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "सहेजे गए फ़ीड"
@@ -5804,7 +6190,7 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr ""
@@ -5822,8 +6208,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5832,13 +6218,12 @@ msgstr ""
msgid "Science"
msgstr ""
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr ""
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5847,14 +6232,12 @@ msgstr ""
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "खोज"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr ""
@@ -5862,7 +6245,7 @@ msgstr ""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr ""
@@ -5870,7 +6253,7 @@ msgstr ""
#~ msgid "Search for all posts by @{authorHandle} with tag {tag}"
#~ msgstr ""
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr ""
@@ -5886,8 +6269,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr ""
@@ -5911,19 +6292,19 @@ msgstr ""
msgid "Security Step Required"
msgstr "सुरक्षा चरण आवश्यक"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr ""
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr ""
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr ""
@@ -5935,12 +6316,16 @@ msgstr ""
#~ msgid "See <0>{tag}0> posts by this user"
#~ msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr ""
@@ -5984,7 +6369,11 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr ""
@@ -6009,7 +6398,7 @@ msgstr ""
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr ""
@@ -6029,11 +6418,15 @@ msgstr ""
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr ""
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "चुनें कि आप अपनी सदस्यता वाली फ़ीड में कौन सी भाषाएँ शामिल करना चाहते हैं। यदि कोई भी चयनित नहीं है, तो सभी भाषाएँ दिखाई जाएंगी।"
@@ -6049,7 +6442,7 @@ msgstr ""
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr ""
@@ -6057,7 +6450,7 @@ msgstr ""
#~ msgid "Select your phone's country"
#~ msgstr ""
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "अपने फ़ीड में अनुवाद के लिए अपनी पसंदीदा भाषा चुनें।"
@@ -6087,7 +6480,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "ईमेल भेजें"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "प्रतिक्रिया भेजें"
@@ -6102,8 +6495,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr ""
@@ -6120,8 +6513,8 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -6143,7 +6536,7 @@ msgstr ""
#~ msgid "Set Age"
#~ msgstr ""
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr ""
@@ -6175,15 +6568,15 @@ msgstr "नया पासवर्ड सेट करें"
#~ msgid "Set password"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "अपने फ़ीड से सभी उद्धरण पदों को छिपाने के लिए इस सेटिंग को \"नहीं\" में सेट करें। Reposts अभी भी दिखाई देगा।।"
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "इस सेटिंग को अपने फ़ीड से सभी उत्तरों को छिपाने के लिए \"नहीं\" पर सेट करें।।"
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "इस सेटिंग को अपने फ़ीड से सभी पोस्ट छिपाने के लिए \"नहीं\" करने के लिए सेट करें।।"
@@ -6195,7 +6588,7 @@ msgstr "इस सेटिंग को \"हाँ\" में सेट क
#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature."
#~ msgstr "इस सेटिंग को अपने निम्नलिखित फ़ीड में अपने सहेजे गए फ़ीड के नमूने दिखाने के लिए \"हाँ\" पर सेट करें। यह एक प्रयोगात्मक विशेषता है।।"
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr ""
@@ -6208,24 +6601,24 @@ msgid "Sets Bluesky username"
msgstr ""
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr ""
+#~ msgid "Sets color theme to dark"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr ""
+#~ msgid "Sets color theme to light"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr ""
+#~ msgid "Sets color theme to system setting"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -6252,11 +6645,11 @@ msgstr ""
#~ msgid "Sets server for the Bluesky client"
#~ msgstr ""
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "सेटिंग्स"
@@ -6269,14 +6662,14 @@ msgid "Sexually Suggestive"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "शेयर"
@@ -6294,8 +6687,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr ""
@@ -6306,7 +6699,7 @@ msgstr ""
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -6324,7 +6717,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -6336,7 +6729,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -6347,7 +6740,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "दिखाओ"
@@ -6359,8 +6752,9 @@ msgstr "दिखाओ"
msgid "Show alt text"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "दिखाओ"
@@ -6385,19 +6779,23 @@ msgstr ""
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -6405,11 +6803,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "मेरी फीड से पोस्ट दिखाएं"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "उद्धरण पोस्ट दिखाओ"
@@ -6425,7 +6823,7 @@ msgstr "उद्धरण पोस्ट दिखाओ"
#~ msgid "Show re-posts in Following feed"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "उत्तर दिखाएँ"
@@ -6445,7 +6843,12 @@ msgstr "अन्य सभी उत्तरों से पहले उन
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "रीपोस्ट दिखाएँ"
@@ -6525,11 +6928,15 @@ msgstr ""
msgid "Sign into Bluesky or create a new account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "साइन आउट"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6551,7 +6958,7 @@ msgstr ""
msgid "Sign-in Required"
msgstr ""
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "आपने इस रूप में साइन इन करा है:"
@@ -6560,7 +6967,7 @@ msgstr "आपने इस रूप में साइन इन करा
msgid "Signed in as @{0}"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
@@ -6568,17 +6975,21 @@ msgstr ""
#~ msgid "Signs {0} out of Bluesky"
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "स्किप"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr ""
@@ -6591,12 +7002,11 @@ msgstr ""
msgid "Software Dev"
msgstr ""
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -6623,7 +7033,7 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr ""
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
@@ -6632,8 +7042,8 @@ msgstr ""
#~ msgid "Something went wrong. Check your email and try again."
#~ msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr ""
@@ -6650,7 +7060,11 @@ msgstr "उसी पोस्ट के उत्तरों को इस प
#~ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6692,17 +7106,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6718,7 +7132,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "स्थिति पृष्ठ"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6726,7 +7140,7 @@ msgstr ""
#~ msgid "Step"
#~ msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr ""
@@ -6734,23 +7148,23 @@ msgstr ""
#~ msgid "Step {0} of {numSteps}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr ""
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr ""
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "सब्सक्राइब"
@@ -6771,11 +7185,11 @@ msgstr ""
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "इस सूची को सब्सक्राइब करें"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6783,8 +7197,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "अनुशंसित लोग"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr ""
@@ -6792,7 +7205,7 @@ msgstr ""
msgid "Suggestive"
msgstr ""
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6811,27 +7224,28 @@ msgstr "खाते बदलें"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr ""
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "प्रणाली"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "सिस्टम लॉग"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr ""
+#~ msgid "tag"
+#~ msgstr ""
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr ""
@@ -6839,6 +7253,10 @@ msgstr ""
#~ msgid "Tag menu: {tag}"
#~ msgstr ""
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "लंबा"
@@ -6847,11 +7265,19 @@ msgstr "लंबा"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr ""
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6876,11 +7302,11 @@ msgstr ""
msgid "Terms"
msgstr "शर्तें"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "सेवा की शर्तें"
@@ -6892,16 +7318,20 @@ msgid "Terms used violate community standards"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
+#~ msgid "text"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "पाठ इनपुट फ़ील्ड"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr ""
@@ -6909,19 +7339,23 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6931,6 +7365,15 @@ msgstr "अनब्लॉक करने के बाद अकाउंट
#~ msgid "the author"
#~ msgstr ""
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "सामुदायिक दिशानिर्देशों को <0/> पर स्थानांतरित कर दिया गया है"
@@ -6939,12 +7382,16 @@ msgstr "सामुदायिक दिशानिर्देशों क
msgid "The Copyright Policy has been moved to <0/>"
msgstr "कॉपीराइट नीति को <0/> पर स्थानांतरित कर दिया गया है"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6952,11 +7399,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr ""
@@ -6964,8 +7411,8 @@ msgstr ""
msgid "The following steps will help customize your Bluesky experience."
msgstr ""
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "हो सकता है कि यह पोस्ट हटा दी गई हो।"
@@ -6973,7 +7420,11 @@ msgstr "हो सकता है कि यह पोस्ट हटा द
msgid "The Privacy Policy has been moved to <0/>"
msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -7018,24 +7469,24 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -7043,13 +7494,13 @@ msgstr ""
msgid "There was an issue fetching the list. Tap here to try again."
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr ""
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
@@ -7075,16 +7526,19 @@ msgstr ""
msgid "There was an issue! {0}"
msgstr ""
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "एप्लिकेशन में एक अप्रत्याशित समस्या थी. कृपया हमें बताएं कि क्या आपके साथ ऐसा हुआ है!"
@@ -7101,11 +7555,11 @@ msgstr ""
#~ msgid "These are popular accounts you might like:"
#~ msgstr ""
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "यह {screenDescription} फ्लैग किया गया है:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr ""
@@ -7114,7 +7568,11 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
@@ -7141,8 +7599,8 @@ msgstr ""
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr ""
@@ -7178,7 +7636,7 @@ msgstr ""
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -7198,11 +7656,11 @@ msgstr "अगर आपको कभी अपना ईमेल बदलन
#~ msgid "This label was applied by {0}."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -7210,7 +7668,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -7222,7 +7680,11 @@ msgstr ""
msgid "This link is taking you to the following website:"
msgstr "यह लिंक आपको निम्नलिखित वेबसाइट पर ले जा रहा है:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr ""
@@ -7234,23 +7696,35 @@ msgstr ""
msgid "This name is already in use"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "इस पोस्ट को हटा दिया गया है।।"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr ""
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
@@ -7267,8 +7741,8 @@ msgstr ""
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr ""
@@ -7284,11 +7758,11 @@ msgstr ""
#~ msgid "This user is included in the <0/> list which you have muted."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr ""
@@ -7308,32 +7782,44 @@ msgstr ""
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "यह चेतावनी केवल मीडिया संलग्न पोस्ट के लिए उपलब्ध है।"
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:282
#~ msgid "This will hide this post from your feeds."
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr ""
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "थ्रेड प्राथमिकता"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "थ्रेड मोड"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr ""
@@ -7350,14 +7836,14 @@ msgid "To whom would you like to send this report?"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr ""
+#~ msgid "Toggle between muted word options."
+#~ msgstr ""
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "ड्रॉपडाउन टॉगल करें"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -7372,10 +7858,10 @@ msgstr "परिवर्तन"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "अनुवाद"
@@ -7388,7 +7874,7 @@ msgstr "फिर से कोशिश करो"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr ""
@@ -7400,11 +7886,11 @@ msgstr ""
msgid "Type:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr ""
@@ -7412,12 +7898,12 @@ msgstr ""
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "आपकी सेवा से संपर्क करने में असमर्थ। कृपया अपने इंटरनेट कनेक्शन की जांच करें।।"
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -7428,7 +7914,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "अनब्लॉक"
@@ -7452,9 +7938,9 @@ msgstr "अनब्लॉक खाता"
msgid "Unblock Account?"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "पुनः पोस्ट पूर्ववत करें"
@@ -7464,8 +7950,8 @@ msgid "Unfollow"
msgstr ""
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr ""
+#~ msgid "Unfollow"
+#~ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -7488,12 +7974,14 @@ msgstr ""
msgid "Unlike this feed"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr ""
@@ -7502,7 +7990,7 @@ msgstr ""
msgid "Unmute Account"
msgstr "अनम्यूट खाता"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr ""
@@ -7518,13 +8006,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "थ्रेड को अनम्यूट करें"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr ""
@@ -7532,11 +8028,11 @@ msgstr ""
msgid "Unpin from home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr ""
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -7548,10 +8044,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -7561,7 +8066,7 @@ msgstr ""
msgid "Unwanted Sexual Content"
msgstr ""
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "सूची में {displayName} अद्यतन करें"
@@ -7573,6 +8078,14 @@ msgstr "सूची में {displayName} अद्यतन करें"
msgid "Update to {handle}"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "अद्यतन..।"
@@ -7585,20 +8098,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr "एक पाठ फ़ाइल अपलोड करने के लिए:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7650,12 +8163,12 @@ msgstr "अपने हैंडल के साथ दूसरे ऐप म
msgid "Used by:"
msgstr "के द्वारा उपयोग:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr ""
@@ -7663,15 +8176,15 @@ msgstr ""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr ""
@@ -7679,18 +8192,16 @@ msgstr ""
#~ msgid "User handle"
#~ msgstr "यूजर हैंडल"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr ""
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr ""
@@ -7702,7 +8213,7 @@ msgstr ""
msgid "User list updated"
msgstr ""
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "लोग सूचियाँ"
@@ -7710,12 +8221,16 @@ msgstr "लोग सूचियाँ"
msgid "Username or email address"
msgstr "यूजर नाम या ईमेल पता"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "यूजर लोग"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr ""
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
@@ -7725,7 +8240,7 @@ msgstr ""
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr ""
@@ -7749,15 +8264,15 @@ msgstr ""
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "ईमेल सत्यापित करें"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "मेरी ईमेल सत्यापित करें"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "मेरी ईमेल सत्यापित करें"
@@ -7778,31 +8293,44 @@ msgstr ""
#~ msgid "Version {0}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr ""
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "डीबग प्रविष्टि देखें"
@@ -7815,7 +8343,7 @@ msgstr ""
msgid "View details for reporting a copyright violation"
msgstr ""
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr ""
@@ -7826,12 +8354,12 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "अवतार देखें"
@@ -7843,11 +8371,23 @@ msgstr ""
msgid "View users who like this feed"
msgstr ""
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7883,7 +8423,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr ""
@@ -7896,8 +8436,8 @@ msgstr ""
#~ msgstr ""
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr ""
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7907,11 +8447,11 @@ msgstr ""
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr ""
@@ -7923,7 +8463,7 @@ msgstr ""
#~ msgid "We'll look into your appeal promptly."
#~ msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr ""
@@ -7931,15 +8471,15 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "हम आपके हमारी सेवा में शामिल होने को लेकर बहुत उत्साहित हैं!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr ""
@@ -7947,11 +8487,11 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr ""
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हम क्षमा चाहते हैं! हमें वह पेज नहीं मिल रहा जिसे आप ढूंढ रहे थे।"
@@ -7976,7 +8516,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr ""
@@ -7990,7 +8530,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr ""
@@ -8002,22 +8542,26 @@ msgstr "इस पोस्ट में किस भाषा का उपय
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "कौन से भाषाएं आपको अपने एल्गोरिदमिक फ़ीड में देखना पसंद करती हैं?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr ""
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -8061,12 +8605,12 @@ msgstr "चौड़ा"
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "पोस्ट लिखो"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "अपना जवाब दें"
@@ -8080,10 +8624,10 @@ msgstr ""
#~ msgstr ""
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -8094,10 +8638,18 @@ msgstr "हाँ"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -8106,7 +8658,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -8180,11 +8733,11 @@ msgstr "आपके पास कोई पिन किया हुआ फ़
#~ msgid "You don't have any saved feeds!"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "आपके पास कोई सहेजी गई फ़ीड नहीं है."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "आपने लेखक को अवरुद्ध किया है या आपने लेखक द्वारा अवरुद्ध किया है।।"
@@ -8192,9 +8745,9 @@ msgstr "आपने लेखक को अवरुद्ध किया ह
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr ""
@@ -8205,20 +8758,20 @@ msgstr ""
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr ""
@@ -8230,12 +8783,12 @@ msgstr ""
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr ""
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "आपके पास कोई सूची नहीं है।।"
@@ -8271,27 +8824,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr ""
@@ -8315,7 +8881,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -8323,11 +8889,11 @@ msgstr ""
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr ""
@@ -8347,23 +8913,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -8382,12 +8948,12 @@ msgstr ""
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
@@ -8395,7 +8961,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "आपका खाता"
@@ -8411,6 +8977,10 @@ msgstr ""
msgid "Your birth date"
msgstr "जन्म तिथि"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -8424,7 +8994,7 @@ msgstr ""
#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -8442,7 +9012,7 @@ msgstr "आपका ईमेल अद्यतन किया गया ह
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "आपका ईमेल अभी तक सत्यापित नहीं हुआ है। यह एक महत्वपूर्ण सुरक्षा कदम है जिसे हम अनुशंसा करते हैं।।"
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -8450,7 +9020,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "आपका पूरा हैंडल होगा"
@@ -8464,7 +9034,7 @@ msgstr ""
#~ msgid "Your invite codes are hidden when logged in using an App Password"
#~ msgstr ""
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr ""
@@ -8472,15 +9042,15 @@ msgstr ""
msgid "Your password has been changed successfully!"
msgstr ""
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "आपकी पोस्ट, पसंद और ब्लॉक सार्वजनिक हैं। म्यूट निजी हैं।।"
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "आपकी प्रोफ़ाइल"
@@ -8488,7 +9058,7 @@ msgstr "आपकी प्रोफ़ाइल"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr ""
@@ -8496,6 +9066,6 @@ msgstr ""
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "आपका यूजर हैंडल"
diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po
index 30e9bba3fa..fc085450d9 100644
--- a/src/locale/locales/id/messages.po
+++ b/src/locale/locales/id/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: id\n"
"Project-Id-Version: bluesky-id\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-06-30 10:47\n"
+"PO-Revision-Date: 2024-08-04 13:05\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -26,7 +26,8 @@ msgstr "(berisi konten yang disisipkan)"
msgid "(no email)"
msgstr "(tidak ada email)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, other {{formattedCount} lainnya}}"
@@ -46,7 +47,7 @@ msgstr "{0, plural, other {# label telah diterapkan pada akun ini}}"
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, other {# label telah diterapkan pada konten ini}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, other {# postingan ulang}}"
@@ -64,16 +65,16 @@ msgstr "{0, plural, other {pengikut}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {mengikuti}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, other {Suka (# menyukai)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {suka}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, other {Disukai oleh # pengguna}}"
@@ -81,23 +82,37 @@ msgstr "{0, plural, other {Disukai oleh # pengguna}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {postingan}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, other {Balas (# balasan)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {posting ulang}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, other {Batal suka (# menyukai)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "{0} telah bergabung minggu ini"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0} orang telah menggunakan paket pemula ini!"
@@ -105,7 +120,7 @@ msgstr "{0} orang telah menggunakan paket pemula ini!"
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "Avatar {0}"
@@ -141,7 +156,7 @@ msgstr "{diff, plural, other {bulan}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, other {detik}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "Paket Pemula {displayName}"
@@ -168,7 +183,7 @@ msgstr "{handle} tidak dapat dikirimi pesan"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, other {Disukai oleh # pengguna}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} belum dibaca"
@@ -181,12 +196,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} bergabung di Bluesky menggunakan paket pemula {0} yang lalu"
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {Tampilkan semua balasan} other {Tampilkan balasan dengan minimal # suka}}"
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr "{value, plural, =0 {Tampilkan semua balasan} other {Tampilkan balasan dengan minimal # suka}}"
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "anggota <0/>"
+#~ msgid "<0/> members"
+#~ msgstr "anggota <0/>"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -206,11 +221,11 @@ msgstr "<0>{0}, 0><1>{1}, 1>dan {2, plural, other {# lainnya}} sudah diserta
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {pengikut}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {mengikuti}}"
@@ -226,6 +241,10 @@ msgstr "<0>{0}0> dan<1> 1><2>{1} 2>sudah disertakan dalam paket pemula And
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0> sudah disertakan dalam paket pemula Anda"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr ""
@@ -259,15 +278,27 @@ msgstr "<0>Anda0> dan<1> 1><2>{0} 2>sudah disertakan dalam paket pemula"
msgid "⚠Invalid Handle"
msgstr "⚠Panggilan Tidak Valid"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Konfirmasi 2FA"
-#: src/tours/Tooltip.tsx:70
-msgid "A help tooltip"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
+#: src/tours/Tooltip.tsx:70
+msgid "A help tooltip"
+msgstr "Infotip bantuan"
+
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Akses tautan navigasi dan pengaturan"
@@ -277,16 +308,16 @@ msgid "Access profile and other navigation links"
msgstr "Akses profil dan tautan navigasi lain"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Aksesibilitas"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Pengaturan aksesibilitas"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Pengaturan Aksesibilitas"
@@ -295,8 +326,8 @@ msgstr "Pengaturan Aksesibilitas"
#~ msgstr ""
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Akun"
@@ -312,20 +343,20 @@ msgstr "Akun diikuti"
msgid "Account muted"
msgstr "Akun dibisukan"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Akun Dibisukan"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Akun Dibisukan oleh Daftar"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Pengaturan akun"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Akun dihapus dari akses cepat"
@@ -342,10 +373,10 @@ msgstr "Akun batal diikuti"
msgid "Account unmuted"
msgstr "Akun batal dibisukan"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Tambah"
@@ -361,14 +392,14 @@ msgstr "Tambahkan {displayName} dalam paket pemula"
msgid "Add a content warning"
msgstr "Tambahkan peringatan konten"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Tambahkan pengguna ke daftar ini"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Tambahkan akun"
@@ -399,11 +430,11 @@ msgstr "Tambahkan Sandi Aplikasi"
#~ msgid "Add link card:"
#~ msgstr ""
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Tambahkan kata yang akan dibisukan ke pengaturan terpilih"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Tambah kata dan tagar untuk dibisukan"
@@ -427,7 +458,7 @@ msgstr "Tambahkan feed bawaan hanya untuk orang yang Anda ikuti"
msgid "Add the following DNS record to your domain:"
msgstr "Tambahkan catatan DNS berikut ke domain Anda:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "Tambahkan feed ini ke daftar feed Anda"
@@ -436,7 +467,7 @@ msgstr "Tambahkan feed ini ke daftar feed Anda"
msgid "Add to Lists"
msgstr "Tambahkan ke Daftar"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Tambahkan ke daftar feed saya"
@@ -445,24 +476,25 @@ msgstr "Tambahkan ke daftar feed saya"
#~ msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Ditambahkan ke daftar"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Ditambahkan ke daftar feed saya"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Sesuaikan jumlah suka yang harus dimiliki oleh balasan agar ditampilkan di feed Anda."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Sesuaikan jumlah suka yang harus dimiliki oleh balasan agar ditampilkan di feed Anda."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Konten Dewasa"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app0>."
@@ -470,20 +502,20 @@ msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app0>."
msgid "Adult content is disabled."
msgstr "Konten dewasa dinonaktifkan."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Lanjutan"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
-msgstr ""
+msgstr "Pelatihan algoritma selesai!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "Semua akun telah diikuti!"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat."
@@ -502,6 +534,14 @@ msgstr "Izinkan akses ke pesan langsung Anda"
msgid "Allow new messages from"
msgstr "Izinkan pesan baru dari"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -519,7 +559,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Teks alt"
@@ -540,14 +580,27 @@ msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang d
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Email telah dikirim ke alamat Anda sebelumnya, {0}. Email tersebut berisi kode konfirmasi yang dapat Anda masukkan di bawah ini."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Terjadi kesalahan"
+#~ msgid "An error occured"
+#~ msgstr "Terjadi kesalahan"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -561,39 +614,48 @@ msgstr "Terjadi kesalahan saat menyimpan kode QR!"
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "Terjadi kesalahan saat mencoba mengikuti semua"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Masalah lain yang tidak termasuk dalam pilihan"
#: src/components/dms/dialogs/NewChatDialog.tsx:36
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "Terjadi masalah saat memulai obrolan"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "Terjadi masalah saat mencoba membuka obrolan"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Terjadi masalah, silakan coba lagi."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "terjadi kesalahan yang tidak diketahui"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "dan"
@@ -610,6 +672,10 @@ msgstr "Animasi GIF"
msgid "Anti-Social Behavior"
msgstr "Perilaku Anti-Sosial"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Bahasa Aplikasi"
@@ -626,26 +692,26 @@ msgstr "Nama Kata Sandi Aplikasi hanya boleh terdiri dari huruf, angka, spasi, t
msgid "App Password names must be at least 4 characters long."
msgstr "Nama Kata Sandi Aplikasi harus terdiri dari minimal 4 karakter."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Pengaturan kata sandi aplikasi"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Kata Sandi Aplikasi"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Ajukan Banding"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Banding label \"{0}\""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Banding diajukan"
@@ -661,10 +727,19 @@ msgstr "Banding diajukan"
msgid "Appeal this decision"
msgstr "Ajukan banding atas keputusan ini"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Tampilan"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -672,7 +747,7 @@ msgstr "Tambahkan feed bawaan yang direkomendasikan"
#: src/screens/StarterPack/StarterPackScreen.tsx:610
#~ msgid "Are you sure you want delete this starter pack?"
-#~ msgstr "Apakah Anda yakin ingin menghapus paket pemula ini?"
+#~ msgstr ""
#: src/view/screens/AppPasswords.tsx:282
msgid "Are you sure you want to delete the app password \"{name}\"?"
@@ -686,9 +761,9 @@ msgstr "Apakah Anda yakin ingin menghapus sandi aplikasi \"{name}\"?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
-msgstr ""
+msgstr "Apakah Anda yakin ingin menghapus paket pemula ini?"
#: src/components/dms/ConvoMenu.tsx:189
#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants."
@@ -698,19 +773,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Apakah Anda yakin ingin menghapus ini dari daftar feed Anda?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
-msgstr "Anda yakin untuk membuang draf ini?"
+msgstr "Anda yakin ingin membuang draf ini?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Anda yakin?"
@@ -727,13 +802,13 @@ msgstr "Seni"
msgid "Artistic or non-erotic nudity."
msgstr "Ketelanjangan artistik atau non-erotis."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Minimal 3 karakter"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -746,8 +821,8 @@ msgstr "Minimal 3 karakter"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Kembali"
@@ -755,7 +830,7 @@ msgstr "Kembali"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Dasar"
@@ -763,7 +838,7 @@ msgstr "Dasar"
msgid "Birthday"
msgstr "Tanggal lahir"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Tanggal lahir:"
@@ -786,28 +861,27 @@ msgstr "Blokir Akun"
msgid "Block Account?"
msgstr "Blokir Akun?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Blokir akun"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Blokir daftar"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Blokir akun-akun ini?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Diblokir"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Akun yang diblokir"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Akun yang diblokir"
@@ -820,7 +894,7 @@ msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau b
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Postingan yang diblokir."
@@ -828,7 +902,7 @@ msgstr "Postingan yang diblokir."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun Anda."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda."
@@ -836,7 +910,7 @@ msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas uta
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Memblokir tidak akan mencegah label diterapkan pada akun Anda, tetapi akan menghentikan akun ini untuk membalas atau berinteraksi dengan Anda."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -851,7 +925,7 @@ msgstr "Bluesky adalah jaringan terbuka di mana Anda dapat memilih penyedia host
#: src/components/ProgressGuide/List.tsx:55
msgid "Bluesky is better with friends!"
-msgstr ""
+msgstr "Bluesky lebih seru jika bersama teman!"
#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80
#: src/view/com/auth/onboarding/WelcomeMobile.tsx:82
@@ -872,7 +946,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-orang dalam jaringan Anda."
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak masuk. Aplikasi lain mungkin tidak akan mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat."
@@ -889,34 +963,36 @@ msgstr "Buramkan gambar dan saring dari feed"
msgid "Books"
msgstr "Buku"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
-msgstr ""
+msgstr "Jelajahi akun lainnya pada halaman Jelajah"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
-msgstr ""
+msgstr "Jelajahi feed lainnya pada halaman Jelajah"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
-msgstr ""
+msgstr "Jelajahi saran lainnya"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
-msgstr ""
+msgstr "Jelajahi saran lainnya pada halaman Jelajah"
#: src/screens/Home/NoFeedsPinned.tsx:103
#: src/screens/Home/NoFeedsPinned.tsx:109
msgid "Browse other feeds"
msgstr "Telusuri feed lain"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Bisnis"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "oleh —"
@@ -932,15 +1008,15 @@ msgstr "Oleh {0}"
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "oleh <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Dengan membuat akun berarti Anda setuju dengan {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "oleh Anda"
@@ -952,13 +1028,13 @@ msgstr "Kamera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis bawah. Minimal 4 karakter, namun tidak boleh lebih dari 32 karakter."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -974,9 +1050,8 @@ msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis baw
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Batal"
@@ -1004,7 +1079,7 @@ msgstr "Batal memotong gambar"
msgid "Cancel profile editing"
msgstr "Batal mengedit profil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Batal mengutip postingan"
@@ -1013,7 +1088,6 @@ msgid "Cancel reactivation and log out"
msgstr "Batalkan pengaktifan kembali dan keluar"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Batal mencari"
@@ -1025,17 +1099,17 @@ msgstr "Membatalkan membuka situs web tertaut"
msgid "Change"
msgstr "Ubah"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Ubah"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Ubah panggilan"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Ubah Panggilan"
@@ -1043,12 +1117,12 @@ msgstr "Ubah Panggilan"
msgid "Change my email"
msgstr "Ubah email saya"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Ubah kata sandi"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Ubah Kata Sandi"
@@ -1060,7 +1134,7 @@ msgstr "Ubah bahasa postingan menjadi {0}"
msgid "Change Your Email"
msgstr "Ubah Email Anda"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1072,14 +1146,14 @@ msgstr "Obrolan dibisukan"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Pengaturan obrolan"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "Pengaturan Obrolan"
@@ -1116,15 +1190,15 @@ msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di baw
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
-msgstr ""
+msgstr "Pilih 3 atau lebih:"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
-msgstr ""
+msgstr "Pilih setidaknya {0} lagi"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "Pilih Feed"
@@ -1132,7 +1206,7 @@ msgstr "Pilih Feed"
msgid "Choose for me"
msgstr "Pilihkan untuk saya"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "Pilih Pengguna"
@@ -1140,7 +1214,7 @@ msgstr "Pilih Pengguna"
msgid "Choose Service"
msgstr "Pilih Layanan"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Pilih algoritma yang akan digunakan untuk feed kustom Anda."
@@ -1155,8 +1229,8 @@ msgstr "Pilih warna ini sebagai avatar Anda"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "Pilih siapa yang dapat membalas"
+#~ msgid "Choose who can reply"
+#~ msgstr "Pilih siapa yang dapat membalas"
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1167,18 +1241,18 @@ msgid "Choose your password"
msgstr "Pilih kata sandi Anda"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Hapus semua data penyimpanan lama"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Hapus semua data penyimpanan lama"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Hapus semua data penyimpanan lama (mulai ulang setelah ini)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Hapus semua data penyimpanan lama (mulai ulang setelah ini)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Hapus semua data penyimpanan"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)"
@@ -1188,10 +1262,10 @@ msgid "Clear search query"
msgstr "Hapus kueri pencarian"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Bersihkan semua penyimpanan data lama"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Bersihkan semua penyimpanan data lama"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Hapus semua data penyimpanan"
@@ -1211,7 +1285,7 @@ msgstr "Klik di sini untuk informasi lebih lanjut."
#~ msgid "Click here to add one."
#~ msgstr ""
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Klik di sini untuk membuka menu tagar dari {tag}"
@@ -1219,6 +1293,14 @@ msgstr "Klik di sini untuk membuka menu tagar dari {tag}"
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "Ketuk untuk mengirim ulang pesan yang gagal"
@@ -1232,12 +1314,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "Keletak 🐴 keletuk 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1258,7 +1340,7 @@ msgid "Close bottom drawer"
msgstr "Tutup kotak bawah"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Tutup dialog"
@@ -1282,8 +1364,8 @@ msgstr "Tutup modal"
msgid "Close navigation footer"
msgstr "Tutup footer navigasi"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Tutup dialog ini"
@@ -1295,7 +1377,7 @@ msgstr "Menutup bilah navigasi bawah"
msgid "Closes password update alert"
msgstr "Menutup peringatan pembaruan kata sandi"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Menutup penyusun postingan dan membuang draf"
@@ -1303,11 +1385,11 @@ msgstr "Menutup penyusun postingan dan membuang draf"
msgid "Closes viewer for header image"
msgstr "Menutup penampil untuk gambar header"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "Ciutkan daftar pengguna"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu"
@@ -1321,27 +1403,31 @@ msgstr "Komedi"
msgid "Comics"
msgstr "Komik"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Panduan Komunitas"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
-msgstr "Selesaikan onboarding dan mulai menggunakan akun Anda"
+msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Selesaikan tantangan"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Buat postingan dengan panjang hingga {MAX_GRAPHEME_LENGTH} karakter"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Tulis balasan"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr ""
@@ -1377,11 +1463,11 @@ msgstr "Konfirmasi pengaturan bahasa konten"
msgid "Confirm delete account"
msgstr "Konfirmasi hapus akun"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Konfirmasi usia Anda:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Konfirmasi tanggal lahir Anda"
@@ -1399,9 +1485,10 @@ msgstr "Kode konfirmasi"
msgid "Connecting..."
msgstr "Menghubungkan..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
-msgstr "Hubungi pusat bantuan"
+msgstr "Hubungi pusat dukungan"
#: src/components/moderation/LabelsOnMe.tsx:42
#~ msgid "content"
@@ -1411,24 +1498,24 @@ msgstr "Hubungi pusat bantuan"
msgid "Content Blocked"
msgstr "Konten Diblokir"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Penyaring konten"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Bahasa konten"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Konten Tidak Tersedia"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Peringatan Konten"
@@ -1440,7 +1527,7 @@ msgstr "Peringatan konten"
msgid "Context menu backdrop, click to close the menu."
msgstr "Latar menu konteks, klik untuk menutup menu."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Lanjutkan"
@@ -1453,7 +1540,7 @@ msgstr "Lanjutkan sebagai {0} (sudah masuk)"
msgid "Continue thread..."
msgstr "Lanjutkan utas..."
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1480,7 +1567,7 @@ msgstr "Memasak"
msgid "Copied"
msgstr "Disalin"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Menyalin versi build ke papan klip"
@@ -1488,8 +1575,8 @@ msgstr "Menyalin versi build ke papan klip"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Disalin ke papan klip"
@@ -1523,12 +1610,12 @@ msgstr "Salin tautan"
msgid "Copy Link"
msgstr "Salin Tautan"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Salin tautan daftar"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Salin tautan postingan"
@@ -1537,8 +1624,8 @@ msgstr "Salin tautan postingan"
msgid "Copy message text"
msgstr "Salin teks pesan"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Salin teks postingan"
@@ -1546,14 +1633,14 @@ msgstr "Salin teks postingan"
msgid "Copy QR code"
msgstr "Salin kode QR"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Kebijakan Hak Cipta"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr "Tidak dapat mengompresi video"
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1563,7 +1650,7 @@ msgstr "Tidak dapat meninggalkan obrolan"
msgid "Could not load feed"
msgstr "Tidak dapat memuat feed"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Tidak dapat memuat daftar"
@@ -1588,7 +1675,7 @@ msgstr "Buat"
msgid "Create a new account"
msgstr "Buat akun baru"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Buat akun Bluesky baru"
@@ -1598,7 +1685,7 @@ msgstr "Buat kode QR untuk paket pemula"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "Buat paket pemula"
@@ -1606,7 +1693,7 @@ msgstr "Buat paket pemula"
msgid "Create a starter pack for me"
msgstr "Buatkan paket pemula untuk saya"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Buat Akun"
@@ -1662,42 +1749,54 @@ msgstr "Kustom"
msgid "Custom domain"
msgstr "Domain kustom"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Feed kustom yang dibangun oleh komunitas memberikan pengalaman baru dan membantu Anda menemukan konten yang Anda sukai."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Sesuaikan media dari situs eksternal."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Gelap"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Mode gelap"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Tema Gelap"
+#~ msgid "Dark Theme"
+#~ msgstr "Tema Gelap"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Tanggal lahir"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "Nonaktifkan akun"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "Nonaktifkan akun saya"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Debug Moderasi"
@@ -1706,16 +1805,16 @@ msgid "Debug panel"
msgstr "Panel awakutu"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Hapus"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Hapus akun"
@@ -1735,8 +1834,8 @@ msgstr "Hapus kata sandi aplikasi"
msgid "Delete app password?"
msgstr "Hapus kata sandi aplikasi?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "Hapus catatan deklarasi obrolan"
@@ -1744,7 +1843,7 @@ msgstr "Hapus catatan deklarasi obrolan"
msgid "Delete for me"
msgstr "Hapus untuk saya"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Hapus daftar"
@@ -1760,41 +1859,41 @@ msgstr "Hapus pesan untuk saya"
msgid "Delete my account"
msgstr "Hapus akun saya"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Hapus Akun Saya…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Hapus postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "Hapus paket pemula"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "Hapus paket pemula?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Hapus daftar ini?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Hapus postingan ini?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Dihapus"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Postingan dihapus."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "Menghapus catatan deklarasi obrolan"
@@ -1809,11 +1908,25 @@ msgstr "Deskripsi"
msgid "Descriptive alt text"
msgstr "Teks alt deskriptif"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Apakah Anda ingin mengatakan sesuatu?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Redup"
@@ -1821,7 +1934,7 @@ msgstr "Redup"
msgid "Direct messages are here!"
msgstr "Pesan langsung telah hadir!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Nonaktifkan pemutaran otomatis untuk GIF"
@@ -1829,7 +1942,7 @@ msgstr "Nonaktifkan pemutaran otomatis untuk GIF"
msgid "Disable Email 2FA"
msgstr "Nonaktifkan Email 2FA"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Matikan respons haptik"
@@ -1837,6 +1950,10 @@ msgstr "Matikan respons haptik"
#~ msgid "Disable haptics"
#~ msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr ""
@@ -1846,45 +1963,53 @@ msgstr "Matikan respons haptik"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Dinonaktifkan"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Buang"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Buang draf?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk"
#: src/tours/HomeTour.tsx:70
msgid "Discover learns which posts you like as you browse."
-msgstr ""
+msgstr "Discover mempelajari postingan mana yang Anda suka ketika Anda menjelajah."
#: src/view/com/posts/FollowingEmptyState.tsx:70
#: src/view/com/posts/FollowingEndOfFeed.tsx:71
msgid "Discover new custom feeds"
msgstr "Temukan feed kustom baru"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "Temukan feed baru"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Temukan Feed Baru"
-#: src/components/ProgressGuide/List.tsx:40
-msgid "Dismiss getting started guide"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:40
+msgid "Dismiss getting started guide"
+msgstr "Tutup panduan memulai"
+
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "Tampilkan lencana teks alt yang lebih besar"
@@ -1900,11 +2025,15 @@ msgstr "Nama Tampilan"
msgid "DNS Panel"
msgstr "Panel DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Tidak termasuk ketelanjangan."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Tidak diawali atau diakhiri dengan tanda hubung"
@@ -1918,7 +2047,6 @@ msgstr "Domain terverifikasi!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1937,8 +2065,8 @@ msgstr "Selesai"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Selesai"
@@ -1947,7 +2075,7 @@ msgstr "Selesai"
msgid "Done{extraText}"
msgstr "Selesai{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "Unduh Bluesky"
@@ -1964,17 +2092,21 @@ msgstr "Lepaskan untuk menambahkan gambar"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr ""
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
-msgstr "contoh: alice"
+msgstr "contoh: kresna"
#: src/view/com/modals/EditProfile.tsx:186
msgid "e.g. Alice Roberts"
-msgstr "contoh: Alice Roberts"
+msgstr "contoh: Langit Kresna"
#: src/view/com/modals/ChangeHandle.tsx:374
msgid "e.g. alice.com"
-msgstr "contoh: alice.com"
+msgstr "contoh: kresna.com"
#: src/view/com/modals/EditProfile.tsx:204
msgid "e.g. Artist, dog-lover, and avid reader."
@@ -2004,11 +2136,11 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "Ubah"
@@ -2017,12 +2149,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Ubah"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Ubah avatar"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "Ubah Daftar Feed"
@@ -2031,7 +2163,12 @@ msgstr "Ubah Daftar Feed"
msgid "Edit image"
msgstr "Edit gambar"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Ubah rincian daftar"
@@ -2039,10 +2176,10 @@ msgstr "Ubah rincian daftar"
msgid "Edit Moderation List"
msgstr "Ubah Daftar Moderasi"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Ubah Daftar Feed"
@@ -2050,10 +2187,15 @@ msgstr "Ubah Daftar Feed"
msgid "Edit my profile"
msgstr "Edit profil saya"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "Ubah Daftar Pengguna"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2069,7 +2211,7 @@ msgstr "Edit Profil"
#~ msgid "Edit Saved Feeds"
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "Ubah paket pemula"
@@ -2077,7 +2219,7 @@ msgstr "Ubah paket pemula"
msgid "Edit User List"
msgstr "Ubah Daftar Pengguna"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "Ubah siapa yang dapat membalas"
@@ -2089,7 +2231,7 @@ msgstr "Ubah nama tampilan Anda"
msgid "Edit your profile description"
msgstr "Sunting deskripsi profil Anda"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "Ubah paket pemula Anda"
@@ -2099,8 +2241,8 @@ msgid "Education"
msgstr "Pendidikan"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "Pilih \"Semua orang\" atau \"Tak seorang pun\""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr "Pilih \"Semua orang\" atau \"Tak seorang pun\""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2128,7 +2270,7 @@ msgstr "Email Diperbarui"
msgid "Email verified"
msgstr "Email terverifikasi"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Email:"
@@ -2137,8 +2279,8 @@ msgid "Embed HTML code"
msgstr "Sisipkan kode HTML"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Sisipkan postingan"
@@ -2150,7 +2292,7 @@ msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut da
msgid "Enable {0} only"
msgstr "Aktifkan {0} saja"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Aktifkan konten dewasa"
@@ -2168,18 +2310,22 @@ msgstr "Aktifkan konten dewasa"
msgid "Enable external media"
msgstr "Aktifkan media eksternal"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Aktifkan pemutar media untuk"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
+msgstr "Aktifkan notifikasi prioritas"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Aktifkan opsi ini untuk menampilkan balasan hanya dari pengguna yang Anda ikuti."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Aktifkan opsi ini untuk menampilkan balasan hanya dari pengguna yang Anda ikuti."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2187,11 +2333,11 @@ msgstr "Aktifkan hanya sumber ini saja"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Diaktifkan"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Akhir feed"
@@ -2201,7 +2347,7 @@ msgstr "Akhir feed"
#: src/tours/Tooltip.tsx:159
msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip."
-msgstr ""
+msgstr "Akhir jendela tur orientasi. Jangan maju. Mundur untuk melihat opsi lainnya, atau tekan untuk melewati."
#: src/view/com/modals/AddAppPasswords.tsx:161
msgid "Enter a name for this App Password"
@@ -2211,8 +2357,8 @@ msgstr "Masukkan nama untuk Sandi Aplikasi ini"
msgid "Enter a password"
msgstr "Masukkan kata sandi"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Masukkan kata atau tagar"
@@ -2257,25 +2403,27 @@ msgstr "Masukkan nama pengguna dan kata sandi Anda"
msgid "Error occurred while saving file"
msgstr "Terjadi kesalahan saat menyimpan berkas"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Kesalahan saat menerima respons captcha."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
-msgstr "Eror:"
+msgstr "Galat:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Semua orang"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "Semua orang dapat membalas"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2291,6 +2439,14 @@ msgstr "Menyebut atau membalas secara berlebihan"
msgid "Excessive or unwanted messages"
msgstr "Pesan yang berlebihan atau tidak diinginkan"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Keluar dari proses penghapusan akun"
@@ -2308,15 +2464,14 @@ msgid "Exits image view"
msgstr "Keluar dari tampilan gambar"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
-msgstr "Keluar dari memasukkan permintaan pencarian"
+msgstr "Keluar dari memasukkan kueri pencarian"
#: src/view/com/lightbox/Lightbox.web.tsx:183
msgid "Expand alt text"
msgstr "Bentangkan teks alt"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "Bentangkan daftar pengguna"
@@ -2327,6 +2482,14 @@ msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
+msgstr "Eksperimental: Jika preferensi ini diaktifkan, Anda hanya akan menerima notifikasi balasan dan kutipan dari pengguna yang Anda ikuti. Kami akan menambah lebih banyak kontrol di sini seiring waktu."
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
msgstr ""
#: src/lib/moderation/useGlobalLabelStrings.ts:47
@@ -2337,12 +2500,12 @@ msgstr "Media eksplisit atau berpotensi mengganggu."
msgid "Explicit sexual images."
msgstr "Gambar seksual eksplisit."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Ekspor data saya"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Ekspor Data Saya"
@@ -2352,17 +2515,17 @@ msgid "External Media"
msgstr "Media Eksternal"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"play\"."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Preferensi Media Eksternal"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Pengaturan media eksternal"
@@ -2371,8 +2534,8 @@ msgstr "Pengaturan media eksternal"
msgid "Failed to create app password."
msgstr "Gagal membuat kata sandi aplikasi."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "Gagal membuat paket pemula"
@@ -2384,16 +2547,16 @@ msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi."
msgid "Failed to delete message"
msgstr "Gagal menghapus pesan"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Gagal menghapus postingan, silakan coba lagi"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "Gagal menghapus paket pemula"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "Gagal memuat preferensi feed"
@@ -2415,12 +2578,12 @@ msgstr "Gagal memuat pesan terdahulu"
#~ msgid "Failed to load recommended feeds"
#~ msgstr ""
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "Gagal memuat daftar feed yang disarankan"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "Gagal memuat saran akun untuk diikuti"
@@ -2430,7 +2593,7 @@ msgstr "Gagal menyimpan gambar: {0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "Gagal menyimpan preferensi notifikasi, silakan coba lagi"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
@@ -2440,16 +2603,16 @@ msgstr "Gagal mengirim"
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Gagal mengajukan banding, silakan coba lagi."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "Gagal membisukan utas, silakan coba lagi"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "Gagal memperbarui daftar feed"
@@ -2458,12 +2621,12 @@ msgstr "Gagal memperbarui daftar feed"
msgid "Failed to update settings"
msgstr "Gagal memperbarui pengaturan"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Feed oleh {0}"
@@ -2476,19 +2639,19 @@ msgid "Feed toggle"
msgstr "Tombol alih feed"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Masukan"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Feed"
@@ -2496,7 +2659,7 @@ msgstr "Feed"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlian pemrograman. <0/> untuk informasi lebih lanjut."
@@ -2504,7 +2667,7 @@ msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlia
#~ msgid "Feeds can be topical as well!"
#~ msgstr ""
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "Daftar feed diperbarui!"
@@ -2520,7 +2683,7 @@ msgstr "Berkas berhasil disimpan!"
msgid "Filter from feeds"
msgstr "Saring dari feed"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Menyelesaikan"
@@ -2532,7 +2695,7 @@ msgstr "Temukan akun untuk diikuti"
#: src/tours/HomeTour.tsx:88
msgid "Find more feeds and accounts to follow in the Explore page."
-msgstr ""
+msgstr "Temukan feed dan akun lainnya untuk diikuti di halaman Jelajah."
#: src/view/screens/Search/Search.tsx:439
msgid "Find posts and users on Bluesky"
@@ -2550,7 +2713,7 @@ msgstr "Temukan postingan dan pengguna di Bluesky"
#~ msgid "Finding similar accounts..."
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Sesuaikan konten yang Anda lihat di feed Mengikuti."
@@ -2558,19 +2721,19 @@ msgstr "Sesuaikan konten yang Anda lihat di feed Mengikuti."
msgid "Fine-tune the discussion threads."
msgstr "Sesuaikan utas diskusi."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "Selesai"
#: src/tours/Tooltip.tsx:149
msgid "Finish tour and begin using the application"
-msgstr ""
+msgstr "Selesaikan tur dan mulai menggunakan aplikasi"
#: src/screens/Onboarding/index.tsx:35
msgid "Fitness"
msgstr "Kebugaran"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Fleksibel"
@@ -2584,12 +2747,11 @@ msgid "Flip vertically"
msgstr "Balik secara vertikal"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Ikuti"
@@ -2603,21 +2765,21 @@ msgstr "Ikuti"
msgid "Follow {0}"
msgstr "Ikuti {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "Ikuti {name}"
#: src/components/ProgressGuide/List.tsx:54
msgid "Follow 7 accounts"
-msgstr ""
+msgstr "Ikuti 7 akun"
#: src/view/com/profile/ProfileMenu.tsx:246
#: src/view/com/profile/ProfileMenu.tsx:257
msgid "Follow Account"
msgstr "Ikuti Akun"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "Ikuti semua"
@@ -2629,7 +2791,7 @@ msgstr "Ikuti semua"
msgid "Follow Back"
msgstr "Ikuti Balik"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "Ikuti lebih banyak akun untuk terhubung sesuai minat Anda dan membangun jaringan."
@@ -2647,7 +2809,7 @@ msgstr "Ikuti lebih banyak akun untuk terhubung sesuai minat Anda dan membangun
#: src/view/com/profile/ProfileCard.tsx:190
#~ msgid "Followed by {0}"
-#~ msgstr "Diikuti oleh {0}"
+#~ msgstr ""
#: src/components/KnownFollowers.tsx:231
msgid "Followed by <0>{0}0>"
@@ -2665,28 +2827,28 @@ msgstr "Diikuti oleh <0>{0}0> dan <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Diikuti oleh <0>{0}0>, <1>{1}1>, dan {2, plural, other {# lainnya}}"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Pengguna yang Anda ikuti"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Hanya pengguna yang diikuti"
+#~ msgid "Followed users only"
+#~ msgstr "Hanya pengguna yang diikuti"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "mengikuti Anda"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
-msgstr ""
+msgstr "mengikuti Anda kembali"
#: src/view/com/profile/ProfileFollowers.tsx:104
#: src/view/screens/ProfileFollowers.tsx:25
msgid "Followers"
msgstr "Pengikut"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "Pengikut @{0} yang Anda kenal"
@@ -2696,46 +2858,46 @@ msgid "Followers you know"
msgstr "Pengikut yang Anda kenal"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Mengikuti"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Mengikuti {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "Mengikuti {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Preferensi feed Mengikuti"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Preferensi Feed Mengikuti"
#: src/tours/HomeTour.tsx:59
msgid "Following shows the latest posts from people you follow."
-msgstr ""
+msgstr "Feed Mengikuti menampilkan postingan terbaru dari orang-orang yang Anda ikuti."
#: src/screens/Profile/Header/Handle.tsx:31
msgid "Follows you"
msgstr "Mengikuti Anda"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Mengikuti Anda"
@@ -2752,6 +2914,10 @@ msgstr "Untuk alasan keamanan, kami akan mengirimkan kode konfirmasi ke alamat e
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa kata sandi ini, Anda harus membuat yang baru."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2773,7 +2939,7 @@ msgstr "Sering Memposting Konten yang Tidak Diinginkan"
msgid "From @{sanitizedAuthor}"
msgstr "Dari @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Dari <0/>"
@@ -2786,9 +2952,9 @@ msgstr "Galeri"
msgid "Generate a starter pack"
msgstr "Buatkan paket pemula"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
-msgstr ""
+msgstr "Dapatkan bantuan"
#: src/components/dms/MessagesNUX.tsx:168
msgid "Get started"
@@ -2801,7 +2967,7 @@ msgstr "Mulai"
#: src/components/ProgressGuide/List.tsx:33
msgid "Getting started"
-msgstr ""
+msgstr "Memulai"
#: src/view/com/util/images/ImageHorzList.tsx:35
msgid "GIF"
@@ -2815,24 +2981,25 @@ msgstr "Beri wajah pada profil Anda"
msgid "Glaring violations of law or terms of service"
msgstr "Pelanggaran hukum atau ketentuan layanan secara terang-terangan"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Kembali"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Kembali"
@@ -2842,14 +3009,14 @@ msgstr "Kembali"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Kembali ke langkah sebelumnya"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "Kembali ke langkah sebelumnya"
@@ -2881,7 +3048,7 @@ msgstr "Buka profil"
#: src/tours/Tooltip.tsx:138
msgid "Go to the next step of the tour"
-msgstr ""
+msgstr "Lanjut ke langkah tur selanjutnya"
#: src/components/dms/ConvoMenu.tsx:164
msgid "Go to user's profile"
@@ -2891,15 +3058,15 @@ msgstr "Buka profil pengguna"
msgid "Graphic Media"
msgstr "Media Sensitif"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
-msgstr ""
+msgstr "Setengah jalan lagi!"
#: src/view/com/modals/ChangeHandle.tsx:260
msgid "Handle"
msgstr "Panggilan"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Haptik"
@@ -2907,7 +3074,7 @@ msgstr "Haptik"
msgid "Harassment, trolling, or intolerance"
msgstr "Pelecehan, unggah sulut, atau intoleransi"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Tagar"
@@ -2915,12 +3082,12 @@ msgstr "Tagar"
msgid "Hashtag: #{tag}"
msgstr "Tagar: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Mengalami masalah?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Bantuan"
@@ -2944,6 +3111,10 @@ msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau
msgid "Here is your app password."
msgstr "Berikut kata sandi aplikasi Anda."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2951,30 +3122,50 @@ msgstr "Berikut kata sandi aplikasi Anda."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Sembunyikan"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Sembunyikan"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Sembunyikan postingan"
+#~ msgid "Hide post"
+#~ msgstr "Sembunyikan postingan"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Sembunyikan konten"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Sembunyikan postingan ini?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Sembunyikan daftar pengguna"
@@ -3006,12 +3197,12 @@ msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk k
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Beranda"
@@ -3044,7 +3235,7 @@ msgstr "Saya punya kode konfirmasi"
msgid "I have my own domain"
msgstr "Saya punya domain sendiri"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "Saya mengerti"
@@ -3057,15 +3248,15 @@ msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang"
msgid "If none are selected, suitable for all ages."
msgstr "Jika tidak ada yang dipilih, cocok untuk semua umur."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Jika Anda belum berusia dewasa menurut hukum negara Anda, orang tua atau wali sah Anda harus membaca Ketentuan ini atas nama Anda."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Jika Anda menghapus daftar ini, Anda tidak dapat memulihkannya lagi."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jika Anda menghapus postingan ini, Anda tidak dapat memulihkannya lagi."
@@ -3127,7 +3318,7 @@ msgstr "Masukkan kode yang telah dikirim ke email Anda"
#: src/screens/Login/LoginForm.tsx:221
#~ msgid "Input the password tied to {identifier}"
-#~ msgstr "Masukkan kata sandi yang terkait dengan {identifier}"
+#~ msgstr ""
#: src/screens/Login/LoginForm.tsx:215
msgid "Input the username or email address you used at signup"
@@ -3141,10 +3332,14 @@ msgstr "Masukkan kata sandi Anda"
msgid "Input your preferred hosting provider"
msgstr "Masukkan penyedia hosting pilihan Anda"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Masukkan panggilan Anda"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "Memperkenalkan Pesan Langsung"
@@ -3154,7 +3349,7 @@ msgstr "Memperkenalkan Pesan Langsung"
msgid "Invalid 2FA confirmation code."
msgstr "Kode konfirmasi 2FA tidak valid."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Catatan postingan tidak valid atau tidak didukung"
@@ -3170,7 +3365,7 @@ msgstr "Undang Teman"
msgid "Invite code"
msgstr "Kode Undangan"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Kode undangan salah. Periksa bahwa Anda memasukkannya dengan benar dan coba lagi."
@@ -3202,14 +3397,14 @@ msgstr "Undangan, tetapi personal"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas."
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Karir"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "Bergabung di Bluesky"
@@ -3246,11 +3441,11 @@ msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dap
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Label pada akun Anda"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Label pada konten Anda"
@@ -3258,16 +3453,16 @@ msgstr "Label pada konten Anda"
msgid "Language selection"
msgstr "Pilih bahasa"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Pengaturan bahasa"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Pengaturan Bahasa"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Bahasa"
@@ -3276,21 +3471,26 @@ msgstr "Bahasa"
msgid "Latest"
msgstr "Terbaru"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Pelajari Lebih Lanjut"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Pelajari lebih lanjut tentang peringatan ini"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Pelajari lebih lanjut tentang apa yang bersifat publik di Bluesky."
@@ -3328,8 +3528,8 @@ msgid "left to go."
msgstr "yang tersisa"
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Penyimpanan lama dibersihkan, Anda perlu memulai ulang aplikasi sekarang."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Penyimpanan lama dibersihkan, Anda perlu memulai ulang aplikasi sekarang."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3340,12 +3540,13 @@ msgstr "Biarkan saya memilih"
msgid "Let's get your password reset!"
msgstr "Reset kata sandi Anda!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Ayo!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Terang"
@@ -3355,12 +3556,12 @@ msgstr "Terang"
#: src/components/ProgressGuide/List.tsx:48
msgid "Like 10 posts"
-msgstr ""
+msgstr "Sukai 10 postingan"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
-msgstr ""
+msgstr "Sukai 10 postingan untuk melatih feed Discover"
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267
#: src/view/screens/ProfileFeed.tsx:575
@@ -3368,14 +3569,15 @@ msgid "Like this feed"
msgstr "Suka feed ini"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Disukai oleh"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Disukai Oleh"
@@ -3393,11 +3595,11 @@ msgstr "Disukai Oleh"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "menyukai feed kustom Anda"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "menyukai postingan Anda"
@@ -3405,11 +3607,11 @@ msgstr "menyukai postingan Anda"
msgid "Likes"
msgstr "Suka"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Suka pada postingan ini"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Daftar"
@@ -3417,20 +3619,28 @@ msgstr "Daftar"
msgid "List Avatar"
msgstr "Avatar Daftar"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Daftar diblokir"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Daftar oleh {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Daftar dihapus"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Daftar dibisukan"
@@ -3438,20 +3648,20 @@ msgstr "Daftar dibisukan"
msgid "List Name"
msgstr "Nama Daftar"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Daftar batal diblokir"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Daftar batal dibisukan"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Daftar"
@@ -3475,10 +3685,10 @@ msgstr "Muat lebih banyak akun untuk diikuti"
msgid "Load new notifications"
msgstr "Muat notifikasi baru"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Muat postingan baru"
@@ -3486,7 +3696,7 @@ msgstr "Muat postingan baru"
msgid "Loading..."
msgstr "Memuat..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Catatan"
@@ -3502,7 +3712,7 @@ msgstr "Masuk atau daftar"
msgid "Log out"
msgstr "Keluar"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Visibilitas pengguna yang tidak masuk"
@@ -3542,7 +3752,7 @@ msgstr "Buatkan untuk saya"
msgid "Make sure this is where you intend to go!"
msgstr "Pastikan ini adalah situs web yang Anda tuju!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Kelola kata dan tagar yang dibisukan"
@@ -3551,20 +3761,20 @@ msgstr "Kelola kata dan tagar yang dibisukan"
msgid "Mark as read"
msgstr "Tandai telah dibaca"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Media"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "pengguna yang disebutkan"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Pengguna yang Anda sebut"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menu"
@@ -3595,7 +3805,7 @@ msgstr "Pesan terlalu panjang"
msgid "Message settings"
msgstr "Pengaturan pesan"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3610,29 +3820,31 @@ msgstr "Pesan"
msgid "Misleading Account"
msgstr "Akun Menyesatkan"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderasi"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Detail moderasi"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Daftar moderasi {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Daftar moderasi oleh <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Daftar moderasi Anda"
@@ -3644,20 +3856,24 @@ msgstr "Daftar moderasi dibuat"
msgid "Moderation list updated"
msgstr "Daftar moderasi diperbarui"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Daftar moderasi"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Daftar Moderasi"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Pengaturan moderasi"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "Status moderasi"
@@ -3665,12 +3881,12 @@ msgstr "Status moderasi"
msgid "Moderation tools"
msgstr "Alat moderasi"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Selengkapnya"
@@ -3678,7 +3894,7 @@ msgstr "Selengkapnya"
msgid "More feeds"
msgstr "Feed lainnya"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Opsi lainnya"
@@ -3692,13 +3908,15 @@ msgstr "Film"
#: src/screens/Onboarding/state.ts:91
msgid "Music"
-msgstr ""
+msgstr "Musik"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Bisukan"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Bisukan {truncatedTag}"
@@ -3707,11 +3925,11 @@ msgstr "Bisukan {truncatedTag}"
msgid "Mute Account"
msgstr "Bisukan Akun"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Bisukan akun"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Bisukan semua postingan {displayTag}"
@@ -3721,14 +3939,18 @@ msgid "Mute conversation"
msgstr "Bisukan percakapan"
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Bisukan tagar saja"
+#~ msgid "Mute in tags only"
+#~ msgstr "Bisukan tagar saja"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Bisukan teks & tagar"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Bisukan teks & tagar"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Bisukan daftar"
@@ -3737,37 +3959,53 @@ msgstr "Bisukan daftar"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Bisukan akun-akun ini?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Bisukan kata ini di teks postingan dan tagar"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Bisukan kata ini hanya dalam tagar"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Bisukan utas"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Bisukan kata & tagar"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Dibisukan"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Akun yang dibisukan"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Akun yang Dibisukan"
@@ -3776,7 +4014,7 @@ msgstr "Akun yang Dibisukan"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifikasi Anda. Pembisuan ini bersifat privat."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Dibisukan oleh \"{0}\""
@@ -3784,7 +4022,7 @@ msgstr "Dibisukan oleh \"{0}\""
msgid "Muted words & tags"
msgstr "Kata & tagar yang dibisukan"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi dengan Anda, tetapi Anda tidak akan melihat postingan atau notifikasi dari mereka."
@@ -3793,7 +4031,7 @@ msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi
msgid "My Birthday"
msgstr "Tanggal Lahir Saya"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Daftar Feed Saya"
@@ -3801,11 +4039,11 @@ msgstr "Daftar Feed Saya"
msgid "My Profile"
msgstr "Profil Saya"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Feed tersimpan saya"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Feed Tersimpan Saya"
@@ -3830,9 +4068,9 @@ msgstr "Nama atau Deskripsi Melanggar Standar Komunitas"
msgid "Nature"
msgstr "Alam"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
-msgstr ""
+msgstr "Menuju ke {0}"
#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73
msgid "Navigate to starter pack"
@@ -3844,7 +4082,7 @@ msgstr "Menuju ke paket pemula"
msgid "Navigates to the next screen"
msgstr "Menuju ke layar berikutnya"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Menuju ke profil Anda"
@@ -3857,7 +4095,7 @@ msgstr "Perlu melaporkan pelanggaran hak cipta?"
#~ msgid "Never lose access to your followers and data."
#~ msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda."
@@ -3865,7 +4103,7 @@ msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda."
msgid "Nevermind, create a handle for me"
msgstr "Tidak usah, buatkan panggilan untuk saya"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Baru"
@@ -3901,12 +4139,12 @@ msgctxt "action"
msgid "New post"
msgstr "Postingan baru"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Postingan baru"
@@ -3940,10 +4178,10 @@ msgstr "Berita"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3959,17 +4197,17 @@ msgstr "Berikutnya"
msgid "Next image"
msgstr "Gambar berikutnya"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Tidak"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Tidak ada deskripsi"
@@ -3986,12 +4224,12 @@ msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor."
msgid "No feeds found. Try searching for something else."
msgstr "Tidak ditemukan feed apa pun. Coba pencarian lain."
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Tidak lagi mengikuti {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Tidak lebih dari 253 karakter"
@@ -4003,7 +4241,7 @@ msgstr "Belum ada pesan"
msgid "No more conversations to show"
msgstr "Tidak ada percakapan lain untuk ditampilkan"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Belum ada notifikasi!"
@@ -4014,6 +4252,10 @@ msgstr "Belum ada notifikasi!"
msgid "No one"
msgstr "Tidak seorang pun"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr "Belum ada postingan."
@@ -4027,11 +4269,11 @@ msgstr "Tidak ada hasil"
msgid "No results"
msgstr "Tidak ada hasil"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Tidak ditemukan hasil"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Tidak ditemukan hasil untuk \"{query}\""
@@ -4056,13 +4298,13 @@ msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"."
msgid "No thanks"
msgstr "Tidak terima kasih"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Tak seorang pun"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "Tidak ada yang dapat membalas"
+#~ msgid "Nobody can reply"
+#~ msgstr "Tidak ada yang dapat membalas"
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4081,7 +4323,7 @@ msgstr "Ketelanjangan Non-Seksual"
#~ msgid "Not Applicable."
#~ msgstr ""
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Tidak ditemukan"
@@ -4092,12 +4334,12 @@ msgid "Not right now"
msgstr "Jangan sekarang"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Catatan tentang berbagi"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky. Konten Anda mungkin tetap ditampilkan oleh aplikasi atau situs web lain kepada pengguna yang tidak masuk."
@@ -4107,16 +4349,16 @@ msgstr "Kosong"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "Filter notifikasi"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "Pengaturan notifikasi"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "Pengaturan Notifikasi"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -4126,14 +4368,14 @@ msgstr "Suara notifikasi"
msgid "Notification Sounds"
msgstr "Suara Notifikasi"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Notifikasi"
@@ -4162,12 +4404,12 @@ msgid "Off"
msgstr "Matikan"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Oh tidak!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Oh tidak! Ada yang tidak beres."
@@ -4191,15 +4433,15 @@ msgstr "di"
msgid "on {str}"
msgstr "pada {str}"
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
-msgstr "Atur ulang orientasi"
+msgstr "Pengaturan ulang orientasi"
#: src/tours/Tooltip.tsx:118
msgid "Onboarding tour step {0}: {1}"
-msgstr ""
+msgstr "Langkah {0} tur orientasi: {1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Satu atau lebih gambar belum ada teks alt."
@@ -4208,14 +4450,14 @@ msgid "Only .jpg and .png files are supported"
msgstr "Hanya mendukung berkas .jpg dan .png"
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "Hanya {0} yang dapat membalas"
+#~ msgid "Only {0} can reply"
+#~ msgstr "Hanya {0} yang dapat membalas"
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr ""
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr ""
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Hanya berisi huruf, angka, dan tanda hubung"
@@ -4223,7 +4465,7 @@ msgstr "Hanya berisi huruf, angka, dan tanda hubung"
msgid "Oops, something went wrong!"
msgstr "Ups, ada yang tidak beres!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4232,11 +4474,11 @@ msgstr "Ups, ada yang tidak beres!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Terbuka"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "Buka menu pintasan profil {name}"
@@ -4249,8 +4491,8 @@ msgstr "Buka pembuat avatar"
msgid "Open conversation options"
msgstr "Buka opsi percakapan"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Buka pemilih emoji"
@@ -4258,7 +4500,7 @@ msgstr "Buka pemilih emoji"
msgid "Open feed options menu"
msgstr "Buka menu opsi feed"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Buka tautan dengan browser dalam aplikasi"
@@ -4274,20 +4516,20 @@ msgstr "Buka pengaturan kata dan tagar yang dibisukan"
msgid "Open navigation"
msgstr "Buka navigasi"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Buka menu opsi postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "Buka menu paket pemula"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Buka halaman buku cerita"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Buka log sistem"
@@ -4295,11 +4537,11 @@ msgstr "Buka log sistem"
msgid "Opens {numItems} options"
msgstr "Membuka opsi {numItems}"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "Membuka dialog untuk memilih siapa yang dapat membalas utas ini"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Membuka pengaturan aksesibilitas"
@@ -4311,19 +4553,23 @@ msgstr "Membuka detail tambahan untuk entri debug"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr ""
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Membuka kamera pada perangkat"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "Membuka pengaturan obrolan"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Membuka penyusun postingan"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi"
@@ -4331,7 +4577,7 @@ msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi"
msgid "Opens device photo gallery"
msgstr "Membuka galeri foto perangkat"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Membuka pengaturan sisipan eksternal"
@@ -4353,27 +4599,27 @@ msgstr "Membuka dialog pemilihan GIF"
msgid "Opens list of invite codes"
msgstr "Membuka daftar kode undangan"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "Membuka jendela modal untuk konfirmasi penonaktifan akun"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Membuka jendela modal untuk konfirmasi penghapusan akun. Membutuhkan kode email"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Membuka jendela modal untuk mengubah kata sandi Bluesky Anda"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Membuka jendela modal untuk memilih panggilan Bluesky baru"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Membuka jendela modal untuk mengunduh data akun (repositori) Bluesky Anda"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Membuka jendela modal untuk verifikasi email"
@@ -4381,7 +4627,7 @@ msgstr "Membuka jendela modal untuk verifikasi email"
msgid "Opens modal for using custom domain"
msgstr "Membuka jendela modal untuk menggunakan domain kustom"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Membuka pengaturan moderasi"
@@ -4394,15 +4640,15 @@ msgstr "Membuka formulir pengaturan ulang kata sandi"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Membuka layar berisi semua feed tersimpan"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Membuka pengaturan kata sandi aplikasi"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Membuka preferensi feed Mengikuti"
@@ -4414,38 +4660,42 @@ msgstr "Membuka situs web tertaut"
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Membuka halaman storybook"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Membuka halaman log sistem"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Membuka preferensi utas"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "Membuka profil ini"
#: src/view/com/composer/videos/SelectVideoBtn.tsx:54
msgid "Opens video picker"
-msgstr ""
+msgstr "Membuka pemilih video"
#: src/view/com/util/forms/DropdownButton.tsx:293
msgid "Option {0} of {numItems}"
msgstr "Opsi {0} dari {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Jika perlu, berikan informasi tambahan di bawah ini:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Atau gabungkan opsi-opsi berikut:"
@@ -4465,6 +4715,10 @@ msgstr "Lainnya"
msgid "Other account"
msgstr "Akun lainnya"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Lainnya..."
@@ -4473,7 +4727,7 @@ msgstr "Lainnya..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan akses Anda ke obrolan di Bluesky."
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Halaman tidak ditemukan"
@@ -4502,19 +4756,24 @@ msgid "Password updated!"
msgstr "Kata sandi diganti!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Jeda"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
-msgstr "Orang"
+msgstr "Profil"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Orang yang diikuti oleh @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Orang yang mengikuti @{0}"
@@ -4544,7 +4803,7 @@ msgid "Pictures meant for adults."
msgstr "Gambar yang ditujukan untuk orang dewasa."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Sematkan ke beranda"
@@ -4556,11 +4815,12 @@ msgstr "Sematkan ke Beranda"
msgid "Pinned Feeds"
msgstr "Feed Tersemat"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "Disematkan ke daftar feed Anda"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Putar"
@@ -4577,6 +4837,11 @@ msgstr "Putar {0}"
msgid "Play or pause the GIF"
msgstr "Putar atau jeda GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4586,16 +4851,16 @@ msgstr "Putar Video"
msgid "Plays the GIF"
msgstr "Putar GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Silakan tentukan panggilan Anda."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Masukkan kata sandi Anda."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Mohon selesaikan verifikasi captcha."
@@ -4611,24 +4876,24 @@ msgstr "Masukkan nama untuk kata sandi aplikasi Anda. Tidak diperbolehkan menggu
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Masukkan nama unik untuk Kata Sandi Aplikasi ini atau gunakan nama yang dibuat secara acak."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Silakan masukkan kata, tagar, atau frasa yang valid untuk dibisukan"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Masukkan email Anda."
#: src/screens/Signup/StepInfo/index.tsx:63
msgid "Please enter your invite code."
-msgstr ""
+msgstr "Silakan masukkan kode undangan Anda."
#: src/view/com/modals/DeleteAccount.tsx:253
msgid "Please enter your password as well:"
msgstr "Masukkan juga kata sandi Anda:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini"
@@ -4645,7 +4910,7 @@ msgstr "Silakan masuk sebagai @{0}"
msgid "Please Verify Your Email"
msgstr "Mohon Verifikasi Email Anda"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Harap tunggu hingga kartu tautan Anda selesai dimuat"
@@ -4658,45 +4923,50 @@ msgstr "Politik"
msgid "Porn"
msgstr "Pornografi"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Posting"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Postingan"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Postingan oleh {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Postingan oleh @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Postingan dihapus"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Postingan disembunyikan"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Disembunyikan oleh Kata yang Dibisukan"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Postingan yang Anda sembunyikan"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Bahasa postingan"
@@ -4705,23 +4975,27 @@ msgstr "Bahasa postingan"
msgid "Post Languages"
msgstr "Bahasa Postingan"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Postingan tidak ditemukan"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Postingan"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Postingan dapat dibisukan berdasarkan teks, tagar mereka, atau keduanya."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Postingan dapat dibisukan berdasarkan teks, tagar mereka, atau keduanya."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4733,7 +5007,7 @@ msgstr "Tautan yang Mungkin Menyesatkan"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "Preferensi disimpan"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -4743,7 +5017,7 @@ msgstr "Tekan untuk mencoba menghubungkan kembali"
msgid "Press to change hosting provider"
msgstr "Tekan untuk mengganti penyedia hosting"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4763,7 +5037,7 @@ msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti"
msgid "Previous image"
msgstr "Gambar sebelumnya"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Bahasa Utama"
@@ -4773,18 +5047,18 @@ msgstr "Dahulukan yang Anda Ikuti"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "Notifikasi prioritas"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Privasi"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Kebijakan Privasi"
@@ -4796,16 +5070,16 @@ msgstr "Berkirim pesan secara pribadi dengan pengguna lain."
msgid "Processing..."
msgstr "Memproses..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "profil"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Profil"
@@ -4813,11 +5087,11 @@ msgstr "Profil"
msgid "Profile updated"
msgstr "Profil diperbarui"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Verifikasi email untuk mengamankan akun Anda."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Publik"
@@ -4825,15 +5099,15 @@ msgstr "Publik"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Daftar terbuka yang dapat dibagikan untuk memblokir atau membisukan pengguna secara massal."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Daftar terbuka yang dapat dibagikan dan digunakan sebagai feed."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Publikasikan postingan"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Publikasikan balasan"
@@ -4851,12 +5125,12 @@ msgstr "Kode QR disimpan ke rol kamera Anda!"
#: src/tours/Tooltip.tsx:111
msgid "Quick tip"
-msgstr ""
+msgstr "Tip singkat"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Kutip postingan"
@@ -4870,6 +5144,39 @@ msgstr "Kutip postingan"
#~ msgid "Quote Post"
#~ msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Acak (alias \"Rolet Pemosting\")"
@@ -4878,10 +5185,27 @@ msgstr "Acak (alias \"Rolet Pemosting\")"
msgid "Ratios"
msgstr "Rasio"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "Aktifkan kembali akun Anda"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "Alasan:"
@@ -4890,7 +5214,7 @@ msgstr "Alasan:"
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Pencarian Terakhir"
@@ -4908,21 +5232,22 @@ msgstr "Hubungkan kembali"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "Perbarui notifikasi"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "Memuat ulang percakapan"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Hapus"
@@ -4930,11 +5255,11 @@ msgstr "Hapus"
msgid "Remove {displayName} from starter pack"
msgstr "Hapus {displayName} dari paket pemula"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Hapus akun"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Hapus Avatar"
@@ -4947,8 +5272,8 @@ msgid "Remove embed"
msgstr "Hapus sisipan"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Hapus feed"
@@ -4956,19 +5281,27 @@ msgstr "Hapus feed"
msgid "Remove feed?"
msgstr "Hapus feed?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Hapus dari daftar feed saya"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Hapus dari daftar feed saya?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Hapus gambar"
@@ -4977,24 +5310,24 @@ msgstr "Hapus gambar"
msgid "Remove image preview"
msgstr "Hapus pratinjau gambar"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Hapus kata yang dibisukan dari daftar Anda"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "Hapus profil"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "Hapus profil dari riwayat pencarian"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "Hapus kutipan"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Hapus postingan ulang"
@@ -5002,35 +5335,48 @@ msgstr "Hapus postingan ulang"
msgid "Remove this feed from your saved feeds"
msgstr "Hapus feed ini dari feed tersimpan Anda"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Dihapus dari daftar"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Dihapus dari daftar feed saya"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Dihapus dari daftar feed Anda"
#: src/view/com/composer/ExternalEmbed.tsx:88
#~ msgid "Removes default thumbnail from {0}"
-#~ msgstr "Menghapus keluku gambar bawaan dari {0}"
+#~ msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "Menghapus postingan yang dikutip"
#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29
msgid "Removes the image preview"
-msgstr ""
+msgstr "Menghapus pratinjau gambar"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Ganti dengan Discover"
@@ -5038,7 +5384,7 @@ msgstr "Ganti dengan Discover"
msgid "Replies"
msgstr "Balasan"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "Balasan dinonaktifkan"
@@ -5046,18 +5392,40 @@ msgstr "Balasan dinonaktifkan"
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Balasan ke utas ini dinonaktifkan"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Balasan ke utas ini dinonaktifkan"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Balas"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Penyaring Balasan"
+#~ msgid "Reply Filters"
+#~ msgstr "Penyaring Balasan"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -5065,21 +5433,34 @@ msgstr "Penyaring Balasan"
#~ msgid "Reply to <0/>"
#~ msgstr ""
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Membalas <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "Membalas postingan yang diblokir"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
+msgstr "Membalas Anda"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
msgstr ""
#: src/components/dms/MessageMenu.tsx:132
@@ -5113,7 +5494,7 @@ msgstr "Dialog laporan"
msgid "Report feed"
msgstr "Laporkan feed"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Laporkan Daftar"
@@ -5121,13 +5502,13 @@ msgstr "Laporkan Daftar"
msgid "Report message"
msgstr "Laporkan pesan"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Laporkan postingan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "Laporkan paket pemula"
@@ -5161,30 +5542,31 @@ msgstr "Laporkan paket pemula ini"
msgid "Report this user"
msgstr "Laporkan pengguna ini"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Posting ulang"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Posting ulang"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Posting ulang atau kutip postingan"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Diposting Ulang Oleh"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Diposting ulang oleh {0}"
@@ -5192,20 +5574,20 @@ msgstr "Diposting ulang oleh {0}"
#~ msgid "Reposted by <0/>"
#~ msgstr ""
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Diposting ulang oleh <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
-msgstr ""
+msgstr "Diposting ulang oleh Anda"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "memposting ulang postingan Anda"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Posting ulang postingan ini"
@@ -5219,7 +5601,7 @@ msgstr "Ajukan Perubahan"
msgid "Request Code"
msgstr "Minta Kode"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Wajibkan teks alt sebelum memposting"
@@ -5244,28 +5626,28 @@ msgstr "Kode reset"
msgid "Reset Code"
msgstr "Kode Reset"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
-msgstr "Reset status onboarding"
+msgstr "Reset status orientasi"
#: src/screens/Login/ForgotPasswordForm.tsx:86
msgid "Reset password"
msgstr "Reset kata sandi"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
-msgstr "Atur ulang status preferensi"
-
-#: src/view/screens/Settings/index.tsx:903
-msgid "Resets the onboarding state"
-msgstr "Reset status onboarding"
-
-#: src/view/screens/Settings/index.tsx:883
-msgid "Resets the preferences state"
msgstr "Reset status preferensi"
+#: src/view/screens/Settings/index.tsx:867
+msgid "Resets the onboarding state"
+msgstr "Mengatur ulang status orientasi"
+
+#: src/view/screens/Settings/index.tsx:847
+msgid "Resets the preferences state"
+msgstr "Mengatur ulang status preferensi"
+
#: src/screens/Login/LoginForm.tsx:312
msgid "Retries login"
msgstr "Mencoba masuk kembali"
@@ -5276,17 +5658,19 @@ msgid "Retries the last action, which errored out"
msgstr "Mencoba kembali tindakan terakhir yang gagal"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Ulangi"
@@ -5294,9 +5678,10 @@ msgstr "Ulangi"
#~ msgid "Retry."
#~ msgstr ""
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Kembali ke halaman sebelumnya"
@@ -5310,7 +5695,8 @@ msgid "Returns to previous page"
msgstr "Kembali ke halaman sebelumnya"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5360,7 +5746,7 @@ msgstr "Simpan kode QR"
msgid "Save to my feeds"
msgstr "Simpan ke daftar feed saya"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Feed Tersimpan"
@@ -5373,7 +5759,7 @@ msgstr "Disimpan ke rol kamera Anda"
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Disimpan ke daftar feed Anda"
@@ -5391,8 +5777,8 @@ msgstr "Menyimpan pengaturan pemangkasan gambar"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "Katakan halo!"
@@ -5401,13 +5787,12 @@ msgstr "Katakan halo!"
msgid "Science"
msgstr "Sains"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Gulir ke atas"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5416,14 +5801,12 @@ msgstr "Gulir ke atas"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Cari"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Cari \"{query}\""
@@ -5431,11 +5814,11 @@ msgstr "Cari \"{query}\""
msgid "Search for \"{searchText}\""
msgstr "Cari \"{searchText}\""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Cari semua postingan dari @{authorHandle} dengan tagar {displayTag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Cari semua postingan dengan tagar {displayTag}"
@@ -5447,8 +5830,6 @@ msgstr "Cari feed yang ingin Anda sarankan kepada orang lain."
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Cari pengguna"
@@ -5472,28 +5853,32 @@ msgstr "Cari di Tenor"
msgid "Security Step Required"
msgstr "Langkah Keamanan Diperlukan"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Lihat postingan {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Lihat postingan {truncatedTag} dari pengguna"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Lihat postingan <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Lihat postingan <0>{displayTag}0> dari pengguna ini"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Lihat panduan ini"
@@ -5533,7 +5918,11 @@ msgstr "Pilih GIF"
msgid "Select GIF \"{0}\""
msgstr "Pilih GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Pilih bahasa"
@@ -5553,7 +5942,7 @@ msgstr "Pilih opsi {i} dari {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Pilih emoji {emojiName} sebagai avatar Anda"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Pilih layanan moderasi untuk melaporkan"
@@ -5567,13 +5956,17 @@ msgstr "Pilih layanan yang akan menjadi tempat penyimpanan data Anda."
#: src/view/com/composer/videos/SelectVideoBtn.tsx:53
msgid "Select video"
+msgstr "Pilih video"
+
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
msgstr ""
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr ""
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Pilih bahasa yang ingin Anda sertakan dalam feed langganan Anda. Jika tidak memilih, maka semua bahasa akan ditampilkan."
@@ -5585,11 +5978,11 @@ msgstr "Pilih bahasa untuk teks bawaan yang akan ditampilkan dalam aplikasi."
msgid "Select your date of birth"
msgstr "Pilih tanggal lahir Anda"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Pilih minat Anda dari opsi di bawah ini"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda."
@@ -5619,7 +6012,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Kirim Email"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Kirim masukan"
@@ -5634,8 +6027,8 @@ msgstr "Kirim postingan ke..."
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Kirim laporan"
@@ -5648,8 +6041,8 @@ msgstr "Kirim laporan ke {0}"
msgid "Send verification email"
msgstr "Kirim email verifikasi"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "Kirim melalui pesan"
@@ -5661,7 +6054,7 @@ msgstr "Kirim email dengan kode konfirmasi untuk penghapusan akun"
msgid "Server address"
msgstr "Alamat server"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Atur tanggal lahir"
@@ -5669,15 +6062,15 @@ msgstr "Atur tanggal lahir"
msgid "Set new password"
msgstr "Buat kata sandi baru"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan postingan dari feed Anda. Posting ulang tetap akan terlihat."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Pilih \"Tidak\" untuk menyembunyikan semua balasan dari feed Anda."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda."
@@ -5685,7 +6078,7 @@ msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda.
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk tampilan bersusun. Ini merupakan fitur eksperimental."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan di feed Mengikuti Anda. Ini merupakan fitur eksperimental."
@@ -5698,24 +6091,24 @@ msgid "Sets Bluesky username"
msgstr "Mengatur nama pengguna Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Mengatur tema menjadi gelap"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Mengatur tema menjadi gelap"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Mengatur tema menjadi terang"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Mengatur tema menjadi terang"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Mengatur tema sesuai pengaturan sistem"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Mengatur tema sesuai pengaturan sistem"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Mengatur tema gelap menjadi tema gelap"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Mengatur tema gelap menjadi tema gelap"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Mengatur tema gelap menjadi tema redup"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Mengatur tema gelap menjadi tema redup"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5733,11 +6126,11 @@ msgstr "Mengatur aspek rasio gambar menjadi tinggi"
msgid "Sets image aspect ratio to wide"
msgstr "Mengatur aspek rasio gambar menjadi lebar"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Pengaturan"
@@ -5750,14 +6143,14 @@ msgid "Sexually Suggestive"
msgstr "Bermuatan Seksual"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Bagikan"
@@ -5775,8 +6168,8 @@ msgid "Share a fun fact!"
msgstr "Bagikan fakta menarik!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Tetap bagikan"
@@ -5787,7 +6180,7 @@ msgstr "Bagikan feed"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "Bagikan tautan"
@@ -5805,7 +6198,7 @@ msgstr "Dialog berbagi tautan"
msgid "Share QR code"
msgstr "Bagikan kode QR"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "Bagikan paket pemula ini"
@@ -5817,9 +6210,9 @@ msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan ko
msgid "Share your favorite feed!"
msgstr "Bagikan feed favorit Anda!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
-msgstr ""
+msgstr "Penguji Preferensi Bersama"
#: src/view/com/modals/LinkWarning.tsx:92
msgid "Shares the linked website"
@@ -5828,7 +6221,7 @@ msgstr "Membagikan situs web tertaut"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Tampilkan"
@@ -5840,8 +6233,9 @@ msgstr "Tampilkan"
msgid "Show alt text"
msgstr "Tampilkan teks alt"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Tetap tampilkan"
@@ -5862,19 +6256,23 @@ msgstr "Tampilkan pengguna lain yang serupa dengan {0}"
msgid "Show hidden replies"
msgstr "Tampilkan balasan yang disembunyikan"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "Kurangi postingan serupa"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Tampilkan Lebih Lanjut"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "Perbanyak postingan serupa"
@@ -5882,11 +6280,11 @@ msgstr "Perbanyak postingan serupa"
msgid "Show muted replies"
msgstr "Tampilkan balasan yang dibisukan"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Tampilkan Postingan dari Feed Tersimpan Saya"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Tampilkan Kutipan Postingan"
@@ -5902,7 +6300,7 @@ msgstr "Tampilkan Kutipan Postingan"
#~ msgid "Show re-posts in Following feed"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Tampilkan Balasan"
@@ -5922,7 +6320,12 @@ msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya."
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Tampilkan Posting Ulang"
@@ -5988,11 +6391,15 @@ msgstr "Masuk atau buat akun Anda untuk bergabung dalam percakapan!"
msgid "Sign into Bluesky or create a new account"
msgstr "Masuk ke Bluesky atau buat akun baru"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Keluar"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6014,7 +6421,7 @@ msgstr "Daftar atau masuk untuk bergabung dalam obrolan"
msgid "Sign-in Required"
msgstr "Wajib Masuk"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Masuk sebagai"
@@ -6023,21 +6430,25 @@ msgstr "Masuk sebagai"
msgid "Signed in as @{0}"
msgstr "Masuk sebagai @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "mendaftar dengan paket pemula Anda"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "Mendaftar tanpa paket pemula"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Lewati"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Lewati tahap ini"
@@ -6046,12 +6457,11 @@ msgstr "Lewati tahap ini"
msgid "Software Dev"
msgstr "Pengembang Perangkat Lunak"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
-msgstr ""
+msgstr "Beberapa feed lain yang mungkin Anda suka"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "Beberapa orang dapat membalas"
@@ -6074,13 +6484,13 @@ msgstr "Ada yang tidak beres, silakan coba lagi"
msgid "Something went wrong, please try again."
msgstr "Ada yang tidak beres, silakan coba lagi."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
-msgstr ""
+msgstr "Ada yang tidak beres!"
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi."
@@ -6097,8 +6507,12 @@ msgstr "Urutkan balasan ke postingan yang sama berdasarkan:"
#~ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "Sumber: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr "Sumber: <0>{0}0>"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -6132,20 +6546,20 @@ msgstr "Mulai mengobrol"
#: src/tours/Tooltip.tsx:99
msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip."
-msgstr ""
+msgstr "Awal jendela tur orientasi. Jangan mundur. Maju untuk melihat opsi lainnya, atau tekan untuk melewati."
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "Paket Pemula"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "Paket pemula dari {0}"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "Paket pemula tidak valid"
@@ -6161,7 +6575,7 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de
#~ msgid "Status page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "Halaman Status"
@@ -6169,27 +6583,27 @@ msgstr "Halaman Status"
#~ msgid "Step"
#~ msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Langkah {0} dari {1}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Kirim"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Berlangganan"
@@ -6210,11 +6624,11 @@ msgstr "Berlangganan Pelabel"
msgid "Subscribe to this labeler"
msgstr "Berlangganan pelabel ini"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Berlangganan ke daftar ini"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "Akun yang disarankan"
@@ -6222,8 +6636,7 @@ msgstr "Akun yang disarankan"
#~ msgid "Suggested Follows"
#~ msgstr ""
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Disarankan untuk Anda"
@@ -6231,7 +6644,7 @@ msgstr "Disarankan untuk Anda"
msgid "Suggestive"
msgstr "Sugestif"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6244,51 +6657,64 @@ msgstr "Beralih Akun"
#: src/tours/HomeTour.tsx:48
msgid "Switch between feeds to control your experience."
-msgstr ""
+msgstr "Beralih antar feed untuk mengontrol pengalaman Anda."
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Beralih ke {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Alihkan akun yang Anda gunakan untuk masuk"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Sistem"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Log sistem"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "tagar"
+#~ msgid "tag"
+#~ msgstr "tagar"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Menu tagar: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Tinggi"
#: src/components/ProgressGuide/Toast.tsx:150
msgid "Tap to dismiss"
+msgstr "Ketuk untuk menutup"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
msgstr ""
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Ketuk untuk melihat sepenuhnya"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
-msgstr ""
+msgstr "Tugas selesai - 10 suka!"
#: src/components/ProgressGuide/List.tsx:49
msgid "Teach our algorithm what you like"
-msgstr ""
+msgstr "Latih algoritma kami dengan apa yang Anda sukai"
#: src/screens/Onboarding/index.tsx:36
#: src/screens/Onboarding/state.ts:99
@@ -6307,11 +6733,11 @@ msgstr "Beritahu kami lebih lanjut"
msgid "Terms"
msgstr "Ketentuan"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Ketentuan Layanan"
@@ -6323,16 +6749,20 @@ msgid "Terms used violate community standards"
msgstr "Istilah yang digunakan melanggar standar komunitas"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "teks"
+#~ msgid "text"
+#~ msgstr "teks"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Area input teks"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Terima kasih. Laporan Anda telah terkirim."
@@ -6340,19 +6770,23 @@ msgstr "Terima kasih. Laporan Anda telah terkirim."
msgid "That contains the following:"
msgstr "Berisi hal berikut:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Panggilan telah terpakai."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "Tidak dapat menemukan paket pemula."
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6362,6 +6796,15 @@ msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka."
#~ msgid "the author"
#~ msgstr ""
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Panduan Komunitas telah dipindahkan ke <0/>"
@@ -6370,12 +6813,16 @@ msgstr "Panduan Komunitas telah dipindahkan ke <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>"
-#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
-msgid "The Discover feed now knows what you like"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/state/shell/progress-guide.tsx:167
+#: src/state/shell/progress-guide.tsx:172
+msgid "The Discover feed now knows what you like"
+msgstr "Feed Discover kini tahu apa yang Anda sukai"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "Dapatkan pengalaman yang lebih baik dalam aplikasi. Unduh Bluesky sekarang dan kami akan melanjutkan dari langkah terakhir yang Anda tinggalkan."
@@ -6383,11 +6830,11 @@ msgstr "Dapatkan pengalaman yang lebih baik dalam aplikasi. Unduh Bluesky sekara
msgid "The feed has been replaced with Discover."
msgstr "Feed telah diganti dengan Discover."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Label berikut telah diterapkan pada akun Anda."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Label berikut telah diterapkan pada konten Anda."
@@ -6395,8 +6842,8 @@ msgstr "Label berikut telah diterapkan pada konten Anda."
msgid "The following steps will help customize your Bluesky experience."
msgstr "Langkah berikut akan membantu menyesuaikan pengalaman Bluesky Anda."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Postingan mungkin telah dihapus."
@@ -6404,7 +6851,11 @@ msgstr "Postingan mungkin telah dihapus."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Kebijakan Privasi telah dipindahkan ke <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "Paket pemula yang ingin Anda lihat tidak valid. Anda dapat menghapus paket pemula ini."
@@ -6449,24 +6900,24 @@ msgstr "Ada masalah saat menghubungkan ke Tenor."
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Ada masalah saat menghubungi server"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Ada masalah saat menghubungi server Anda"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
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/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi."
@@ -6474,13 +6925,13 @@ msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi."
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Ada masalah saat mengambil daftar. Ketuk di sini untuk mencoba lagi."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Ada masalah saat mengambil daftar Anda. Ketuk di sini untuk mencoba lagi."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet Anda."
@@ -6506,33 +6957,36 @@ msgstr "Ada masalah saat pengambilan kata sandi aplikasi Anda"
msgid "There was an issue! {0}"
msgstr "Ada masalah! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Ada masalah tak terduga dalam aplikasi. Beri tahu kami jika hal ini terjadi pada Anda!"
#: src/screens/SignupQueued.tsx:112
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
-msgstr "Sedang ada lonjakan pengguna baru di Bluesky! Kami akan mengaktifkan akun Anda secepat mungkin."
+msgstr "Terjadi lonjakan pengguna baru di Bluesky! Kami akan mengaktifkan akun Anda secepat mungkin."
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146
#~ msgid "These are popular accounts you might like:"
#~ msgstr ""
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "{screenDescription} ini telah ditandai:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya."
@@ -6541,8 +6995,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr "Akun ini diblokir oleh satu atau lebih daftar moderasi Anda. Untuk membuka blokir, silakan kunjungi daftar tersebut secara langsung dan hapus pengguna ini."
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Banding ini akan dikirim ke <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Banding ini akan dikirim ke <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6568,8 +7026,8 @@ msgstr "Konten ini telah menerima peringatan umum dari moderator."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Konten ini disediakan oleh {0}. Apakah Anda ingin mengaktifkan media eksternal?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah memblokir pengguna lainnya."
@@ -6601,7 +7059,7 @@ msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "Feed ini kosong."
@@ -6621,19 +7079,19 @@ msgstr "Ini penting dilakukan untuk berjaga-jaga jika Anda perlu mengubah email
#~ msgid "This label was applied by {0}."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "Label ini diterapkan oleh <0>{0}0>."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
-msgstr "Label ini diterapkan oleh penulis."
+msgstr "Label ini diterapkan oleh pemosting."
#: src/components/moderation/LabelsOnMeDialog.tsx:165
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "Label ini diterapkan oleh Anda."
@@ -6645,7 +7103,11 @@ msgstr "Pelabel ini belum menyatakan label apa yang diterbitkannya, dan mungkin
msgid "This link is taking you to the following website:"
msgstr "Tautan ini akan membawa Anda ke situs web berikut:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Daftar ini kosong!"
@@ -6657,23 +7119,35 @@ msgstr "Layanan moderasi ini tidak tersedia. Lihat detail lebih lanjut di bawah.
msgid "This name is already in use"
msgstr "Nama ini sudah digunakan"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Postingan ini telah dihapus."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Postingan ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Postingan ini akan disembunyikan dari feed."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Postingan ini akan disembunyikan dari feed."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Profil ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Layanan ini tidak menyediakan ketentuan layanan atau kebijakan privasi."
@@ -6690,8 +7164,8 @@ msgstr "Pengguna ini tidak memiliki pengikut."
msgid "This user has blocked you"
msgstr "Pengguna ini telah memblokir Anda"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Pengguna ini telah memblokir Anda. Anda tidak dapat melihat konten mereka."
@@ -6699,11 +7173,11 @@ msgstr "Pengguna ini telah memblokir Anda. Anda tidak dapat melihat konten merek
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "Pengguna ini telah meminta agar kontennya hanya ditampilkan kepada pengguna yang sudah masuk."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Pengguna ini termasuk dalam daftar <0>{0}0> yang telah Anda blokir"
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Pengguna ini termasuk dalam daftar <0>{0}0> yang telah Anda bisukan"
@@ -6719,28 +7193,40 @@ msgstr "Pengguna ini tidak mengikuti siapa pun."
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr ""
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Ini akan menghapus {0} dari daftar kata yang Anda bisukan. Anda tetap dapat menambahkannya lagi nanti."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Ini akan menghapus {0} dari daftar kata yang Anda bisukan. Anda tetap dapat menambahkannya lagi nanti."
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Preferensi utas"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Preferensi Utas"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "Pengaturan utas diperbarui"
+#~ msgid "Thread settings updated"
+#~ msgstr "Pengaturan utas diperbarui"
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Mode Bersusun"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Preferensi Utas"
@@ -6757,14 +7243,14 @@ msgid "To whom would you like to send this report?"
msgstr "Kepada siapa Anda ingin mengirimkan laporan ini?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Beralih antara opsi kata yang dibisukan."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Beralih antara opsi kata yang dibisukan."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Beralih dropdown"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa"
@@ -6779,10 +7265,10 @@ msgstr "Transformasi"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Terjemahkan"
@@ -6795,7 +7281,7 @@ msgstr "Coba lagi"
msgid "TV"
msgstr "TV"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Autentikasi dua faktor"
@@ -6807,11 +7293,11 @@ msgstr "Ketik pesan Anda di sini"
msgid "Type:"
msgstr "Tipe:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Buka blokir daftar"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Bunyikan daftar"
@@ -6819,12 +7305,12 @@ msgstr "Bunyikan daftar"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "Tidak dapat menghapus"
@@ -6835,7 +7321,7 @@ msgstr "Tidak dapat menghapus"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Buka blokir"
@@ -6859,9 +7345,9 @@ msgstr "Buka blokir Akun"
msgid "Unblock Account?"
msgstr "Buka Blokir Akun?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Batalkan posting ulang"
@@ -6871,8 +7357,8 @@ msgid "Unfollow"
msgstr "Berhenti ikuti"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Batal ikuti"
+#~ msgid "Unfollow"
+#~ msgstr "Batal ikuti"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6891,12 +7377,14 @@ msgstr "Berhenti Ikuti Akun"
msgid "Unlike this feed"
msgstr "Batalkan suka feed ini"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Bunyikan"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Bunyikan {truncatedTag}"
@@ -6905,7 +7393,7 @@ msgstr "Bunyikan {truncatedTag}"
msgid "Unmute Account"
msgstr "Bunyikan Akun"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Bunyikan semua postingan {displayTag}"
@@ -6917,13 +7405,21 @@ msgstr "Bunyikan percakapan"
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Bunyikan utas"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Lepas sematan"
@@ -6931,11 +7427,11 @@ msgstr "Lepas sematan"
msgid "Unpin from home"
msgstr "Lepaskan sematan dari beranda"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Lepas sematan daftar moderasi"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "Dilepaskan dari daftar feed Anda"
@@ -6943,10 +7439,19 @@ msgstr "Dilepaskan dari daftar feed Anda"
msgid "Unsubscribe"
msgstr "Berhenti langganan"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Berhenti langganan pelabel ini"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -6956,7 +7461,7 @@ msgstr "Berhenti langganan pelabel ini"
msgid "Unwanted Sexual Content"
msgstr "Konten Seksual yang Tidak Diinginkan"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Perbarui {displayName} dalam Daftar"
@@ -6964,6 +7469,14 @@ msgstr "Perbarui {displayName} dalam Daftar"
msgid "Update to {handle}"
msgstr "Perbarui ke {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Memperbarui..."
@@ -6976,20 +7489,20 @@ msgstr "Unggah foto saja"
msgid "Upload a text file to:"
msgstr "Unggah berkas teks ke:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Unggah dari Kamera"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Unggah dari Berkas"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7019,7 +7532,7 @@ msgstr "Gunakan peramban dalam aplikasi"
#: src/view/com/modals/InAppBrowserConsent.tsx:66
#: src/view/com/modals/InAppBrowserConsent.tsx:68
msgid "Use my default browser"
-msgstr "Gunakan peramban bawaan saya"
+msgstr "Gunakan peramban baku saya"
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53
msgid "Use recommended"
@@ -7037,12 +7550,12 @@ msgstr "Gunakan sandi ini untuk masuk ke aplikasi lain bersama dengan panggilan
msgid "Used by:"
msgstr "Digunakan oleh:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Pengguna Diblokir"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Diblokir oleh \"{0}\""
@@ -7050,30 +7563,28 @@ msgstr "Diblokir oleh \"{0}\""
msgid "User blocked by list"
msgstr "Pengguna diblokir oleh daftar"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Pengguna Diblokir oleh Daftar"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Pengguna Memblokir Anda"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Pengguna Memblokir Anda"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Daftar pengguna {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Daftar pengguna oleh <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Daftar pengguna Anda"
@@ -7085,7 +7596,7 @@ msgstr "Daftar pengguna dibuat"
msgid "User list updated"
msgstr "Daftar pengguna diperbarui"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Daftar Pengguna"
@@ -7093,13 +7604,17 @@ msgstr "Daftar Pengguna"
msgid "Username or email address"
msgstr "Nama pengguna atau alamat email"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Pengguna"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "pengguna yang diikuti <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "pengguna yang diikuti <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7108,7 +7623,7 @@ msgstr "pengguna yang diikuti <0/>"
msgid "Users I follow"
msgstr "Pengguna yang saya ikuti"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Pengguna di \"{0}\""
@@ -7128,15 +7643,15 @@ msgstr "Nilai:"
msgid "Verify DNS Record"
msgstr "Verifikasi DNS"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Verifikasi email"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Verifikasi email saya"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Verifikasi Email Saya"
@@ -7157,31 +7672,44 @@ msgstr "Verifikasi Email Anda"
#~ msgid "Version {0}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "Versi {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Permainan Video"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr "Video tidak boleh lebih besar dari 100MB"
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Lihat avatar {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "Lihat profil {0}"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "Lihat profil pengguna yang diblokir"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Lihat entri debug"
@@ -7194,7 +7722,7 @@ msgstr "Lihat detail"
msgid "View details for reporting a copyright violation"
msgstr "Lihat detail untuk melaporkan pelanggaran hak cipta"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Lihat utas lengkap"
@@ -7205,12 +7733,12 @@ msgstr "Lihat informasi tentang label ini"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Lihat profil"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Lihat avatar"
@@ -7222,11 +7750,23 @@ msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}"
msgid "View users who like this feed"
msgstr "Lihat pengguna yang menyukai feed ini"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr "Lihat daftar feed Anda dan jelajahi lebih lanjut"
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7258,7 +7798,7 @@ msgstr "Kami tidak dapat memuat percakapan ini"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Kami perkirakan {estimatedTime} hingga akun Anda siap."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky itu:"
@@ -7267,8 +7807,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Kami kehabisan postingan dari akun yang Anda ikuti. Inilah yang terbaru dari <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dapat mengakibatkan tidak adanya postingan yang ditampilkan."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dapat mengakibatkan tidak adanya postingan yang ditampilkan."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7278,11 +7818,11 @@ msgstr "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dap
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Kami tidak dapat memuat preferensi tanggal lahir Anda. Silakan coba lagi."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "Kami tidak dapat memuat pelabel yang Anda konfigurasikan saat ini."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengaturan akun Anda. Jika terus gagal, Anda dapat melewati langkah ini."
@@ -7290,7 +7830,7 @@ msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengat
msgid "We will let you know when your account is ready."
msgstr "Kami akan memberi tahu Anda ketika akun Anda siap."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda."
@@ -7298,15 +7838,15 @@ msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda."
msgid "We're having network issues, try again"
msgstr "Kami mengalami masalah jaringan, coba lagi"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Kami sangat senang Anda bergabung dengan kami!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Mohon maaf, kami tidak dapat menyelesaikan daftar ini. Jika hal ini terus berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisukan. Silakan coba lagi."
@@ -7314,11 +7854,11 @@ msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisuka
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam beberapa menit."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus."
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari."
@@ -7343,7 +7883,7 @@ msgstr "Selamat datang kembali!"
msgid "Welcome, friend!"
msgstr "Selamat datang, kawan!"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Apa saja minat Anda?"
@@ -7353,7 +7893,7 @@ msgstr "Apa nama paket pemula Anda?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Apa kabar?"
@@ -7365,22 +7905,26 @@ msgstr "Bahasa apa yang digunakan di postingan ini?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Bahasa apa yang ingin Anda lihat di feed algoritmik Anda?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "Siapa yang dapat mengirim pesan kepada Anda?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Siapa yang dapat membalas"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "Dialog siapa yang dapat membalas"
+#~ msgid "Who can reply dialog"
+#~ msgstr "Dialog siapa yang dapat membalas"
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "Siapa yang dapat membalas?"
+#~ msgid "Who can reply?"
+#~ msgstr "Siapa yang dapat membalas?"
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7424,12 +7968,12 @@ msgstr "Lebar"
msgid "Write a message"
msgstr "Tulis pesan"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Tulis postingan"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Tulis balasan Anda"
@@ -7439,10 +7983,10 @@ msgid "Writers"
msgstr "Penulis"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7453,10 +7997,18 @@ msgstr "Ya"
msgid "Yes, deactivate"
msgstr "Ya, nonaktifkan"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr "Ya, hapus paket pemula ini"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "Ya, aktifkan kembali akun saya"
@@ -7465,7 +8017,8 @@ msgstr "Ya, aktifkan kembali akun saya"
msgid "Yesterday, {time}"
msgstr "Kemarin, {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "Anda"
@@ -7531,21 +8084,21 @@ msgstr "Anda tidak memiliki feed yang disematkan."
#~ msgid "You don't have any saved feeds!"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Anda tidak memiliki feed yang disimpan."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
-msgstr "Anda telah memblokir atau diblokir oleh penulis ini."
+msgstr "Anda telah memblokir atau diblokir oleh pemosting ini."
#: src/components/dms/MessagesListBlockedFooter.tsx:58
msgid "You have blocked this user"
msgstr "Anda telah memblokir pengguna ini"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Anda telah memblokir pengguna ini. Anda tidak dapat melihat konten mereka."
@@ -7556,20 +8109,20 @@ msgstr "Anda telah memblokir pengguna ini. Anda tidak dapat melihat konten merek
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Anda telah memasukkan kode yang tidak valid. Seharusnya terlihat seperti XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Anda telah menyembunyikan postingan ini"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Anda telah menyembunyikan postingan ini."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Anda telah membisukan akun ini."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Anda telah membisukan pengguna ini"
@@ -7577,12 +8130,12 @@ msgstr "Anda telah membisukan pengguna ini"
msgid "You have no conversations yet. Start one!"
msgstr "Anda belum memiliki percakapan. Mulai sekarang!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Anda tidak memiliki feed."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Anda tidak memiliki daftar."
@@ -7610,27 +8163,40 @@ msgstr "Anda telah mencapai akhir"
msgid "You haven't created a starter pack yet!"
msgstr "Anda belum membuat paket pemula!"
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Anda belum membisukan kata atau tagar apa pun"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "Anda dapat mengajukan banding atas label non-mandiri jika Anda merasa label tersebut ditempatkan secara tidak tepat."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Anda dapat mengajukan banding atas label berikut jika Anda merasa label tersebut ditempatkan secara tidak tepat."
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "Anda hanya boleh menambahkan maksimal 50 feed"
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr "Anda hanya boleh menambahkan maksimal 50 feed"
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "Anda hanya boleh menambahkan maksimal 50 profil"
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr "Anda hanya boleh menambahkan maksimal 50 profil"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Anda harus berusia 13 tahun atau lebih untuk mendaftar."
@@ -7650,7 +8216,7 @@ msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR
msgid "You must grant access to your photo library to save the image."
msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan gambar ini."
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan"
@@ -7658,11 +8224,11 @@ msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan"
msgid "You previously deactivated @{0}."
msgstr "Anda telah menonaktifkan @{0} sebelumnya."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Anda sekarang akan menerima notifikasi untuk utas ini"
@@ -7682,23 +8248,23 @@ msgstr "Anda: {defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "Anda: {short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!"
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "Anda akan otomatis mengikuti para pengguna ini"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "Dapatkan informasi terbaru melalui feed berikut"
@@ -7717,12 +8283,12 @@ msgstr "Anda sedang dalam antrian"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "Anda masuk menggunakan Sandi Aplikasi. Mohon gunakan kata sandi utama untuk melanjutkan penonaktifan akun Anda."
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Anda siap untuk mulai!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan ini."
@@ -7730,7 +8296,7 @@ msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Akun Anda"
@@ -7746,6 +8312,10 @@ msgstr "Semua catatan data publik dalam repositori akun Anda dapat diunduh sebag
msgid "Your birth date"
msgstr "Tanggal lahir Anda"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "Obrolan Anda telah dinonaktifkan"
@@ -7759,7 +8329,7 @@ msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan."
#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7773,15 +8343,15 @@ msgstr "Alamat email Anda telah diperbarui namun belum diverifikasi. Silakan ver
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Alamat email Anda belum diverifikasi. Ini merupakan langkah keamanan penting yang kami rekomendasikan."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
-msgstr ""
+msgstr "Suka pertama Anda!"
#: src/view/com/posts/FollowingEmptyState.tsx:43
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat apa yang terjadi."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Panggilan lengkap Anda akan menjadi"
@@ -7789,7 +8359,7 @@ msgstr "Panggilan lengkap Anda akan menjadi"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Kata yang Anda bisukan"
@@ -7797,15 +8367,15 @@ msgstr "Kata yang Anda bisukan"
msgid "Your password has been changed successfully!"
msgstr "Kata sandi Anda telah berhasil diubah!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Postingan Anda telah dipublikasikan"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Postingan, suka, dan pemblokiran Anda bersifat publik. Sedangkan pembisuan bersifat privat."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Profil Anda"
@@ -7813,7 +8383,7 @@ msgstr "Profil Anda"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "Profil, postingan, feed, dan daftar Anda tidak akan terlihat lagi oleh pengguna Bluesky lain. Anda dapat mengaktifkan kembali kapan saja dengan cara masuk ke akun."
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Balasan Anda telah dipublikasikan"
@@ -7821,6 +8391,6 @@ msgstr "Balasan Anda telah dipublikasikan"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Panggilan Anda"
diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po
index 6fd20fe052..6c877ba7b8 100644
--- a/src/locale/locales/it/messages.po
+++ b/src/locale/locales/it/messages.po
@@ -22,7 +22,8 @@ msgstr ""
msgid "(no email)"
msgstr "(no email)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -37,7 +38,7 @@ msgstr "{0, plural, one {# un etichetta è stata applicata a questo account} oth
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {# un etichetta è stata applicata a questo contenuto} other {# etichette sono state applicate a questo contenuto}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# ripubblicazione} other {# ripubblicazioni}}"
@@ -55,16 +56,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -72,15 +73,19 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
@@ -90,18 +95,28 @@ msgstr ""
#~ msgid "{0} {purposeLabel} List"
#~ msgstr "Lista {purposeLabel} {0}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr "{0} tuoi feed"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -137,7 +152,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -176,7 +191,7 @@ msgstr ""
#~ msgid "{message}"
#~ msgstr "{message}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} non letto"
@@ -189,12 +204,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> membri"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> membri"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -214,11 +229,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -233,6 +248,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr "<0>{followers} 0><1>{pluralizedFollowers}1>"
@@ -260,10 +279,22 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Nome utente non valido"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Conferma 2FA"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#~ msgid "A content warning has been applied to this {0}."
#~ msgstr "A questo post è stato applicato un avviso di contenuto {0}."
@@ -274,7 +305,7 @@ msgstr ""
#~ msgid "A new version of the app is available. Please update to continue using the app."
#~ msgstr "È disponibile una nuova versione dell'app. Aggiorna per continuare a utilizzarla."
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Accedi alle impostazioni di navigazione"
@@ -284,16 +315,16 @@ msgid "Access profile and other navigation links"
msgstr "Accedi al profilo e ad altre impostazioni di navigazione"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Accessibilità"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Impostazioni di accessibilità"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Impostazioni di Accessibilità"
@@ -301,8 +332,8 @@ msgstr "Impostazioni di Accessibilità"
#~ msgstr "account"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Account"
@@ -318,20 +349,20 @@ msgstr "Account seguito"
msgid "Account muted"
msgstr "Account silenziato"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Account Silenziato"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Account silenziato dalla Lista"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Opzioni dell'account"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Account rimosso dall'accesso immediato"
@@ -348,10 +379,10 @@ msgstr "Account non seguito"
msgid "Account unmuted"
msgstr "Account non silenziato"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Aggiungi"
@@ -367,14 +398,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Aggiungi un avviso sul contenuto"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Aggiungi un utente a questo elenco"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Aggiungi account"
@@ -408,11 +439,11 @@ msgstr "Aggiungi la Password per l'App"
#~ msgid "Add link card:"
#~ msgstr "Aggiungi anteprima del link:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Aggiungi parola silenziata alle impostazioni configurate"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Aggiungi parole silenziate e tags"
@@ -436,7 +467,7 @@ msgstr "Aggiungi il feed predefinito delle sole persone che segui"
msgid "Add the following DNS record to your domain:"
msgstr "Aggiungi il seguente record DNS al tuo dominio:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -445,7 +476,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "Aggiungi alle Liste"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Aggiungi ai miei feed"
@@ -453,19 +484,20 @@ msgstr "Aggiungi ai miei feed"
#~ msgstr "Aggiunto"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Aggiunto alla lista"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Aggiunto ai miei feed"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Modifica il numero di \"Mi piace\" che una risposta deve avere per essere mostrata nel tuo feed."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Modifica il numero di \"Mi piace\" che una risposta deve avere per essere mostrata nel tuo feed."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Contenuto per adulti"
@@ -473,7 +505,7 @@ msgstr "Contenuto per adulti"
#~ msgid "Adult content can only be enabled via the Web at <0/>."
#~ msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0/>."
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -481,20 +513,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr "Il contenuto per adulti è disattivato."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Avanzato"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Tutti i feed che hai salvato, in un unico posto."
@@ -512,6 +544,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr "Consenti nuovi messaggi da"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -529,7 +569,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Testo alternativo"
@@ -550,14 +590,27 @@ msgstr "È stata inviata un'e-mail a {0}. Include un codice di conferma che puoi
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Una email è stata inviata al tuo indirizzo precedente, {0}. Include un codice di conferma che puoi inserire di seguito."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Si è verificato un errore"
+#~ msgid "An error occured"
+#~ msgstr "Si è verificato un errore"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -570,10 +623,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr "È avvenuto un errore durante la cancellazione del messaggio. Riprovare un altra volta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Un problema non incluso in queste opzioni"
@@ -588,21 +646,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Si è verificato un problema, riprova un'altra volta."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "si è verificato un errore sconosciuto"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "e"
@@ -619,6 +681,10 @@ msgstr "GIF animata"
msgid "Anti-Social Behavior"
msgstr "Comportamento antisociale"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Lingua dell'app"
@@ -635,25 +701,25 @@ msgstr "Le password dell'app possono contenere solo lettere, numeri, spazi, trat
msgid "App Password names must be at least 4 characters long."
msgstr "Le password delle app devono contenere almeno 4 caratteri."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Impostazioni della password dell'app"
#~ msgid "App passwords"
#~ msgstr "Passwords dell'app"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Password dell'App"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Ricorso"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Etichetta \"{0}\" del ricorso"
@@ -666,7 +732,7 @@ msgstr "Etichetta \"{0}\" del ricorso"
#~ msgid "Appeal Decision"
#~ msgstr "Decisión de apelación"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Appello inviato"
@@ -684,10 +750,19 @@ msgstr "Appella contro questa decisione"
#~ msgid "Appeal this decision."
#~ msgstr "Appella contro questa decisione."
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Aspetto"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -709,7 +784,7 @@ msgstr "Confermi di voler eliminare la password dell'app \"{name}\"?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "Sei sicuro di voler cancellare questo messaggio? Il messaggio verrà cancellato per te, ma non per gli altri partecipanti."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -717,19 +792,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "Sei sicuro di voler abbandonare questa conversazione? I messaggi verranno cancellati per te, ma non per gli altri partecipanti."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Confermi di voler rimuovere {0} dai tuoi feed?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Confermi di voler eliminare questa bozza?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Confermi?"
@@ -749,13 +824,13 @@ msgstr "Arte"
msgid "Artistic or non-erotic nudity."
msgstr "Nudità artistica o non erotica."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Almeno 3 caratteri"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -768,8 +843,8 @@ msgstr "Almeno 3 caratteri"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Indietro"
@@ -781,7 +856,7 @@ msgstr "Indietro"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Basato sui tuoi interessi {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Preferenze"
@@ -789,7 +864,7 @@ msgstr "Preferenze"
msgid "Birthday"
msgstr "Compleanno"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Compleanno:"
@@ -812,31 +887,30 @@ msgstr "Blocca Account"
msgid "Block Account?"
msgstr "Bloccare Account?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Blocca gli account"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Lista di blocchi"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Vuoi bloccare questi accounts?"
#~ msgid "Block this List"
#~ msgstr "Blocca questa Lista"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Bloccato"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Accounts bloccati"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Accounts bloccati"
@@ -849,7 +923,7 @@ msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzio
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire in nessun altro modo con te. Non vedrai il loro contenuto e non vedranno il tuo."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Post bloccato."
@@ -857,7 +931,7 @@ msgstr "Post bloccato."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Il blocco non impedisce al labeler di inserire etichette nel tuo account."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Il blocco è pubblico. Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire con te in nessun altro modo."
@@ -865,7 +939,7 @@ msgstr "Il blocco è pubblico. Gli account bloccati non possono rispondere alle
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Il blocco non impedirà l'applicazione delle etichette al tuo account, ma impedirà a questo account di rispondere alle tue discussioni o di interagire con te."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -898,7 +972,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky non mostrerà il tuo profilo e i tuoi post agli utenti non loggati. Altre applicazioni potrebbero non rispettare questa istruzione. Ciò non rende il tuo account privato."
@@ -918,21 +992,23 @@ msgstr "Sfoca le immagini e filtra dai feed"
msgid "Books"
msgstr "Libri"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -944,14 +1020,14 @@ msgstr "Cerca altri feed"
#~ msgid "Build version {0} {1}"
#~ msgstr "Versione {0} {1}"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Attività commerciale"
#~ msgid "Button disabled. Input custom domain to proceed."
#~ msgstr "Pulsante disabilitato. Inserisci il dominio personalizzato per procedere."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "da —"
@@ -966,15 +1042,15 @@ msgstr "Di {0}"
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "di <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Creando un account accetti i {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "da te"
@@ -986,13 +1062,13 @@ msgstr "Fotocamera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. Deve contenere almeno 4 caratteri, ma non più di 32 caratteri."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -1008,9 +1084,8 @@ msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. D
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Cancella"
@@ -1041,7 +1116,7 @@ msgstr "Annulla il ritaglio dell'immagine"
msgid "Cancel profile editing"
msgstr "Annulla la modifica del profilo"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Annnulla la citazione del post"
@@ -1050,7 +1125,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Annulla la ricerca"
@@ -1065,17 +1139,17 @@ msgstr "Annulla l'apertura del sito collegato"
msgid "Change"
msgstr "Cambia"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Cambia"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Cambia il nome utente"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Cambia il Nome Utente"
@@ -1083,12 +1157,12 @@ msgstr "Cambia il Nome Utente"
msgid "Change my email"
msgstr "Cambia la mia email"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Cambia la password"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Cambia la Password"
@@ -1103,7 +1177,7 @@ msgstr "Cambia la lingua del post a {0}"
msgid "Change Your Email"
msgstr "Cambia la tua email"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1115,14 +1189,14 @@ msgstr "Conversazione silenziata"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Impostazioni messaggi"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "Impostazioni messaggi"
@@ -1157,18 +1231,18 @@ msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'e-mail con il co
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Scegli \"Tutti\" o \"Nessuno\""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
#~ msgid "Choose a new Bluesky username or create"
#~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1176,7 +1250,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1184,7 +1258,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Scegli il servizio"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati."
@@ -1197,8 +1271,8 @@ msgstr "Scegli questo colore per il tuo avatar"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1209,18 +1283,18 @@ msgid "Choose your password"
msgstr "Scegli la tua password"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Cancella tutti i dati legacy in archivio"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Cancella tutti i dati legacy in archivio"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Cancella tutti i dati legacy in archivio (poi ricomincia)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Cancella tutti i dati legacy in archivio (poi ricomincia)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Cancella tutti i dati in archivio"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Cancella tutti i dati in archivio (poi ricomincia)"
@@ -1230,10 +1304,10 @@ msgid "Clear search query"
msgstr "Annulla la ricerca"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Cancella tutti i dati di archiviazione legacy"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Cancella tutti i dati di archiviazione legacy"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Cancella tutti i dati di archiviazione"
@@ -1253,13 +1327,21 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr "Clicca qui per aggiungerne uno."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Clicca qui per aprire il menu per {tag}"
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr "Clicca qui per aprire il menu per #{tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "Clicca per riprovare l'invio"
@@ -1273,12 +1355,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1299,7 +1381,7 @@ msgid "Close bottom drawer"
msgstr "Chiudi il bottom drawer"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Chiudi la finestra di dialogo"
@@ -1323,8 +1405,8 @@ msgstr "Chiudi finestra"
msgid "Close navigation footer"
msgstr "Chiudi la navigazione del footer"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Chiudi la finestra"
@@ -1336,7 +1418,7 @@ msgstr "Chiude la barra di navigazione in basso"
msgid "Closes password update alert"
msgstr "Chiude l'avviso di aggiornamento della password"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Chiude l'editore del post ed elimina la bozza del post"
@@ -1344,11 +1426,11 @@ msgstr "Chiude l'editore del post ed elimina la bozza del post"
msgid "Closes viewer for header image"
msgstr "Chiude il visualizzatore dell'immagine di intestazione"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Comprime l'elenco degli utenti per una determinata notifica"
@@ -1362,27 +1444,31 @@ msgstr "Commedia"
msgid "Comics"
msgstr "Fumetti"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Linee guida della community"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Completa l'incorporazione e inizia a utilizzare il tuo account"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Completa la challenge"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Componi un post fino a {MAX_GRAPHEME_LENGTH} caratteri"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Scrivi la risposta"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Configura l'impostazione del filtro dei contenuti per la categoria:{0}"
@@ -1425,11 +1511,11 @@ msgstr "Conferma l'eliminazione dell'account"
#~ msgid "Confirm your age to enable adult content."
#~ msgstr "Conferma la tua età per abilitare i contenuti per adulti."
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Conferma la tua età:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Conferma la tua data di nascita"
@@ -1450,7 +1536,8 @@ msgstr "Codice di conferma"
msgid "Connecting..."
msgstr "Connessione in corso..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Contatta il supporto"
@@ -1467,24 +1554,24 @@ msgstr "Contenuto Bloccato"
#~ msgid "Content Filtering"
#~ msgstr "Filtro dei Contenuti"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Filtri dei contenuti"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Lingue dei contenuti"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Contenuto non disponibile"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Avviso sul Contenuto"
@@ -1496,7 +1583,7 @@ msgstr "Avviso sui contenuti"
msgid "Context menu backdrop, click to close the menu."
msgstr "Sfondo del menu contestuale, clicca per chiudere il menu."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Continua"
@@ -1509,7 +1596,7 @@ msgstr "Continua come {0} (attualmente connesso)"
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1536,7 +1623,7 @@ msgstr "Cucina"
msgid "Copied"
msgstr "Copiato"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Versione di build copiata nella clipboard"
@@ -1544,8 +1631,8 @@ msgstr "Versione di build copiata nella clipboard"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Copiato nel clipboard"
@@ -1579,12 +1666,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Copia il link alla lista"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Copia il link al post"
@@ -1596,8 +1683,8 @@ msgstr "Copia il link al post"
msgid "Copy message text"
msgstr "Copia il testo del messaggio"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Copia il testo del post"
@@ -1605,14 +1692,14 @@ msgstr "Copia il testo del post"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Politica sul diritto d'autore"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1622,7 +1709,7 @@ msgstr "Errore nell'abbandonare la conversione"
msgid "Could not load feed"
msgstr "Feed non caricato"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "No si è potuto caricare la lista"
@@ -1646,7 +1733,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Crea un nuovo account"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Crea un nuovo Bluesky account"
@@ -1656,7 +1743,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1664,7 +1751,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Crea un account"
@@ -1725,45 +1812,57 @@ msgstr "Personalizzato"
msgid "Custom domain"
msgstr "Dominio personalizzato"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "I feed personalizzati creati dalla comunità ti offrono nuove esperienze e ti aiutano a trovare contenuti interessanti."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Personalizza i media da i siti esterni."
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
#~ msgid "Danger Zone"
#~ msgstr "Zona di Pericolo"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Scuro"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Aspetto scuro"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Tema scuro"
+#~ msgid "Dark Theme"
+#~ msgstr "Tema scuro"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Data di nascita"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Eliminare errori nella Moderazione"
@@ -1772,16 +1871,16 @@ msgid "Debug panel"
msgstr "Pannello per il debug"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Elimina"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Elimina l'account"
@@ -1800,8 +1899,8 @@ msgstr "Elimina la password dell'app"
msgid "Delete app password?"
msgstr "Eliminare la password dell'app?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1809,7 +1908,7 @@ msgstr ""
msgid "Delete for me"
msgstr "Cancella per me"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Elimina la lista"
@@ -1828,41 +1927,41 @@ msgstr "Cancellare account"
#~ msgid "Delete my account…"
#~ msgstr "Cancella il mio account…"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Cancellare Account…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Elimina il post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Elimina questa lista?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Eliminare questo post?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Eliminato"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Post eliminato."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1877,17 +1976,31 @@ msgstr "Descrizione"
msgid "Descriptive alt text"
msgstr "Testo descrittivo alternativo"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
#~ msgid "Dev Server"
#~ msgstr "Server di sviluppo"
#~ msgid "Developer Tools"
#~ msgstr "Strumenti per sviluppatori"
-#: src/view/com/composer/Composer.tsx:295
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Volevi dire qualcosa?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Fioco"
@@ -1895,7 +2008,7 @@ msgstr "Fioco"
msgid "Direct messages are here!"
msgstr "I messaggi diretti sono arrivati!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Disattiva la riproduzione automatica per le GIF"
@@ -1903,32 +2016,36 @@ msgstr "Disattiva la riproduzione automatica per le GIF"
msgid "Disable Email 2FA"
msgstr "Disattiva l'email 2FA"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Disattiva il feedback tattile"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Disabilitato"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Scartare"
#~ msgid "Discard draft"
#~ msgstr "Scarta la bozza"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Scartare la bozza?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi"
@@ -1941,19 +2058,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr "Scopri nuovi feed personalizzati"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "Scopri nuovi feed"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Scopri nuovi feed"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1969,11 +2094,15 @@ msgstr "Nome Visualizzato"
msgid "DNS Panel"
msgstr "Pannello DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Non include nudità."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Non inizia o termina con un trattino"
@@ -1990,7 +2119,6 @@ msgstr "Dominio verificato!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -2009,8 +2137,8 @@ msgstr "Fatto"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Fatto"
@@ -2022,7 +2150,7 @@ msgstr "Fatto{extraText}"
#~ msgid "Double tap to sign in"
#~ msgstr "Usa il doppio tocco per accedere"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -2042,6 +2170,10 @@ msgstr "Trascina e rilascia per aggiungere immagini"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "A causa delle politiche di Apple, i contenuti per adulti possono essere abilitati sul Web solo dopo aver completato la registrazione."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "e.g. alice"
@@ -2082,11 +2214,11 @@ msgstr "e.g. Utenti che rispondono ripetutamente con annunci."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2095,12 +2227,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Modifica"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Modifica l'avatar"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2109,7 +2241,12 @@ msgstr ""
msgid "Edit image"
msgstr "Modifica l'immagine"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Modifica i dettagli della lista"
@@ -2117,10 +2254,10 @@ msgstr "Modifica i dettagli della lista"
msgid "Edit Moderation List"
msgstr "Modifica l'elenco di moderazione"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Modifica i miei feed"
@@ -2128,10 +2265,15 @@ msgstr "Modifica i miei feed"
msgid "Edit my profile"
msgstr "Modifica il mio profilo"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2147,7 +2289,7 @@ msgstr "Modifica il Profilo"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Modifica i feed memorizzati"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2155,7 +2297,7 @@ msgstr ""
msgid "Edit User List"
msgstr "Modifica l'elenco degli utenti"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2167,7 +2309,7 @@ msgstr "Modifica il tuo nome visualizzato"
msgid "Edit your profile description"
msgstr "Modifica la descrizione del tuo profilo"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2177,8 +2319,8 @@ msgid "Education"
msgstr "Formazione scolastica"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2206,7 +2348,7 @@ msgstr "Email Aggiornata"
msgid "Email verified"
msgstr "Email verificata"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Email:"
@@ -2215,8 +2357,8 @@ msgid "Embed HTML code"
msgstr "Incorpora il codice HTML"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Incorpora il post"
@@ -2228,7 +2370,7 @@ msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e inc
msgid "Enable {0} only"
msgstr "Attiva {0} solo"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Attiva il contenuto per adulti"
@@ -2249,7 +2391,7 @@ msgstr "Abilita i media esterni"
#~ msgid "Enable External Media"
#~ msgstr "Attiva Media Esterna"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Attiva i lettori multimediali per"
@@ -2258,9 +2400,13 @@ msgstr "Attiva i lettori multimediali per"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Abilita questa impostazione per vedere solo le risposte delle persone che segui."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Abilita questa impostazione per vedere solo le risposte delle persone che segui."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2268,11 +2414,11 @@ msgstr "Abilita solo questa fonte"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Abilitato"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Fine del feed"
@@ -2288,8 +2434,8 @@ msgstr "Inserisci un nome per questa password dell'app"
msgid "Enter a password"
msgstr "Inserisci una password"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Inserisci una parola o tag"
@@ -2343,25 +2489,27 @@ msgstr "Inserisci il tuo nome di utente e la tua password"
msgid "Error occurred while saving file"
msgstr "Un errore è avvenuto durante il salvataggio del file"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Errore nella risposta del captcha."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Errore:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Tutti"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "Tutti possono rispondere"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2377,6 +2525,14 @@ msgstr "Menzioni o risposte eccessive"
msgid "Excessive or unwanted messages"
msgstr "Troppi o indesiderati messaggi"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Uscita dall'eliminazione dell'account"
@@ -2394,7 +2550,6 @@ msgid "Exits image view"
msgstr "Uscita dalla visualizzazione dell'immagine"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Uscita dall'inserzione della domanda di ricerca"
@@ -2405,7 +2560,7 @@ msgstr "Uscita dall'inserzione della domanda di ricerca"
msgid "Expand alt text"
msgstr "Ampliare il testo alternativo"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2418,6 +2573,14 @@ msgstr "Espandi o comprimi l'intero post a cui stai rispondendo"
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr "Media espliciti o potenzialmente inquietanti."
@@ -2426,12 +2589,12 @@ msgstr "Media espliciti o potenzialmente inquietanti."
msgid "Explicit sexual images."
msgstr "Immagini sessuali esplicite."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Esporta i miei dati"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Esporta i miei dati"
@@ -2441,17 +2604,17 @@ msgid "External Media"
msgstr "Media esterni"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "I multimediali esterni possono consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finché non si preme il pulsante \"Riproduci\"."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Preferenze multimediali esterni"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Impostazioni multimediali esterni"
@@ -2460,8 +2623,8 @@ msgstr "Impostazioni multimediali esterni"
msgid "Failed to create app password."
msgstr "Impossibile creare la password dell'app."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2473,16 +2636,16 @@ msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova
msgid "Failed to delete message"
msgstr "Errore nel cancellare il messaggio"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Non possiamo eliminare il post, riprova di nuovo"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2498,12 +2661,12 @@ msgstr "Errore nel caricare i vecchi messaggi"
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Non possiamo caricare i feed consigliati"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2519,16 +2682,16 @@ msgstr ""
msgid "Failed to send"
msgstr "Errore nell'invio"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "Errore nel invio dell'appello, si prega di riprovare."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2537,12 +2700,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr "Errore nell'aggiornamento delle impostazioni"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Feed fatto da {0}"
@@ -2558,26 +2721,26 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Commenti"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Feed"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni feed che ritieni interessanti."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo di esperienza nella codifica. Vedi <0/> per ulteriori informazioni."
@@ -2585,7 +2748,7 @@ msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo
#~ msgid "Feeds can be topical as well!"
#~ msgstr "I feed possono anche avere tematiche!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2601,7 +2764,7 @@ msgstr "File salvata con successo!"
msgid "Filter from feeds"
msgstr "Filtra dai feed"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Finalizzando"
@@ -2628,7 +2791,7 @@ msgstr "Trova post e utenti su Bluesky"
#~ msgid "Finding similar accounts..."
#~ msgstr "Trovare account simili…"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Ottimizza il contenuto che vedi nel tuo Following feed."
@@ -2639,7 +2802,7 @@ msgstr "Ottimizza il contenuto che vedi nel tuo Following feed."
msgid "Fine-tune the discussion threads."
msgstr "Ottimizza i la visualizzazione delle discussioni."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2651,7 +2814,7 @@ msgstr ""
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Flessibile"
@@ -2665,12 +2828,11 @@ msgid "Flip vertically"
msgstr "Gira in verticale"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Segui"
@@ -2684,7 +2846,7 @@ msgstr "Segui"
msgid "Follow {0}"
msgstr "Segui {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2697,8 +2859,8 @@ msgstr ""
msgid "Follow Account"
msgstr "Segui l'Account"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2710,7 +2872,7 @@ msgstr ""
msgid "Follow Back"
msgstr "Seguire"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2745,19 +2907,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Utenti seguiti"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Solo utenti seguiti"
+#~ msgid "Followed users only"
+#~ msgstr "Solo utenti seguiti"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "ti segue"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2766,7 +2928,7 @@ msgstr ""
msgid "Followers"
msgstr "Followers"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2779,34 +2941,34 @@ msgstr ""
#~ msgstr "following"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Following"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Seguiti {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Preferenze del Following feed"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Preferenze del Following Feed"
@@ -2818,7 +2980,7 @@ msgstr ""
msgid "Follows you"
msgstr "Ti segue"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Ti Segue"
@@ -2835,6 +2997,10 @@ msgstr "Per motivi di sicurezza, invieremo un codice di conferma al tuo indirizz
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Per motivi di sicurezza non potrai visualizzarlo nuovamente. Se perdi questa password, dovrai generarne una nuova."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#~ msgid "Forgot"
#~ msgstr "Dimenticato"
@@ -2862,7 +3028,7 @@ msgstr "Pubblica spesso contenuti indesiderati"
msgid "From @{sanitizedAuthor}"
msgstr "Di @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Da <0/>"
@@ -2875,7 +3041,7 @@ msgstr "Galleria"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2904,24 +3070,25 @@ msgstr "Dai un volto al tuo profilo"
msgid "Glaring violations of law or terms of service"
msgstr "Evidenti violazioni della legge o dei termini di servizio"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Torna indietro"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Torna Indietro"
@@ -2931,14 +3098,14 @@ msgstr "Torna Indietro"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Torna al passaggio precedente"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2978,7 +3145,7 @@ msgstr "Vai al profilo dell'utente"
msgid "Graphic Media"
msgstr "Media grafici"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2986,7 +3153,7 @@ msgstr ""
msgid "Handle"
msgstr "Nome Utente"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Aptica"
@@ -2994,7 +3161,7 @@ msgstr "Aptica"
msgid "Harassment, trolling, or intolerance"
msgstr "Molestie, trolling o intolleranza"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Hashtag"
@@ -3002,12 +3169,12 @@ msgstr "Hashtag"
msgid "Hashtag: #{tag}"
msgstr "Hashtag: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Ci sono problemi?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Aiuto"
@@ -3031,6 +3198,10 @@ msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o
msgid "Here is your app password."
msgstr "Ecco la password dell'app."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -3038,30 +3209,50 @@ msgstr "Ecco la password dell'app."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Nascondi"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Nascondi"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Nascondi il messaggio"
+#~ msgid "Hide post"
+#~ msgstr "Nascondi il messaggio"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Nascondere il contenuto"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Vuoi nascondere questo post?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Nascondi elenco utenti"
@@ -3096,12 +3287,12 @@ msgstr "Stiamo riscontrando problemi nel trovare questi dati. Guarda PI[U giù p
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Non siamo riusciti a caricare il servizio di moderazione."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Home"
@@ -3140,7 +3331,7 @@ msgstr "Ho un codice di conferma"
msgid "I have my own domain"
msgstr "Ho il mio dominio"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "Ho capito"
@@ -3153,15 +3344,15 @@ msgstr "Se il testo alternativo è lungo, attiva/disattiva lo stato del testo al
msgid "If none are selected, suitable for all ages."
msgstr "Se niente è selezionato, adatto a tutte le età."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Se non sei ancora maggiorenne secondo le leggi del tuo Paese, il tuo genitore o tutore legale deve leggere i Termini a tuo nome."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Se elimini questa lista, non potrai recuperarla."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se rimuovi questo post, non potrai recuperarlo."
@@ -3255,10 +3446,14 @@ msgstr "Inserisci la tua password"
msgid "Input your preferred hosting provider"
msgstr "Inserisci il tuo provider di hosting preferito"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Inserisci il tuo identificatore"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "Introduzione ai Messaggi Diretti"
@@ -3268,7 +3463,7 @@ msgstr "Introduzione ai Messaggi Diretti"
msgid "Invalid 2FA confirmation code."
msgstr "Codice di conferma 2FA non valido."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Protocollo del post non valido o non supportato"
@@ -3287,7 +3482,7 @@ msgstr "Invita un amico"
msgid "Invite code"
msgstr "Codice d'invito"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Codice invito non accettato. Controlla di averlo inserito correttamente e riprova."
@@ -3322,14 +3517,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Lavori"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3373,11 +3568,11 @@ msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere util
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr "le etichette sono state inserite su questo {labelTarget}"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Etichette sul tuo account"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Etichette sul tuo contenuto"
@@ -3385,16 +3580,16 @@ msgstr "Etichette sul tuo contenuto"
msgid "Language selection"
msgstr "Seleziona la lingua"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Impostazione delle lingue"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Impostazione delle Lingue"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Lingue"
@@ -3409,21 +3604,26 @@ msgstr "Ultime"
#~ msgid "Learn more"
#~ msgstr "Ulteriori informazioni"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Ulteriori Informazioni"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "Scopri di più sulla moderazione applicata a questo contenuto."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Ulteriori informazioni su questo avviso"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Scopri cosa è pubblico su Bluesky."
@@ -3461,8 +3661,8 @@ msgid "left to go."
msgstr "mancano."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "L'archivio legacy è stato cancellato, riattiva la app."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "L'archivio legacy è stato cancellato, riattiva la app."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3473,7 +3673,7 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Reimpostazione della password!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Andiamo!"
@@ -3481,7 +3681,8 @@ msgstr "Andiamo!"
#~ msgid "Library"
#~ msgstr "Biblioteca"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Chiaro"
@@ -3492,8 +3693,8 @@ msgstr "Chiaro"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3503,14 +3704,15 @@ msgid "Like this feed"
msgstr "Metti mi piace a questo feed"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Piace a"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Piace A"
@@ -3523,14 +3725,14 @@ msgstr "Piace A"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Piace a {likeCount} {0}"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "piace il tuo feed personalizzato"
#~ msgid "liked your custom feed{0}"
#~ msgstr "piace il feed personalizzato{0}"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "piace il tuo post"
@@ -3538,11 +3740,11 @@ msgstr "piace il tuo post"
msgid "Likes"
msgstr "Mi piace"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Mi Piace in questo post"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Lista"
@@ -3550,20 +3752,28 @@ msgstr "Lista"
msgid "List Avatar"
msgstr "Lista avatar"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Lista bloccata"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Lista di {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Lista cancellata"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Lista muta"
@@ -3571,20 +3781,20 @@ msgstr "Lista muta"
msgid "List Name"
msgstr "Nome della lista"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Lista sbloccata"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Lista non mutata"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Liste"
@@ -3611,10 +3821,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Carica più notifiche"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Carica nuovi posts"
@@ -3625,7 +3835,7 @@ msgstr "Caricamento..."
#~ msgid "Local dev server"
#~ msgstr "Server di sviluppo locale"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Log"
@@ -3641,7 +3851,7 @@ msgstr ""
msgid "Log out"
msgstr "Disconnetta l'account"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Visibilità degli utenti disconnessi"
@@ -3680,7 +3890,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Assicurati che questo sia dove intendi andare!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gestisci le parole mute e i tags"
@@ -3695,20 +3905,20 @@ msgstr "Segna come letto"
#~ msgid "May only contain letters and numbers"
#~ msgstr "Può contenere solo lettere e numeri"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Media"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "utenti menzionati"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Utenti menzionati"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menù"
@@ -3742,7 +3952,7 @@ msgstr "Il messaggio è troppo lungo"
msgid "Message settings"
msgstr "Impostazioni messaggio"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3753,29 +3963,31 @@ msgstr "Messaggi"
msgid "Misleading Account"
msgstr "Account Ingannevole"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderazione"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Dettagli sulla moderazione"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Lista di moderazione di {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Lista di moderazione di <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Le tue liste di moderazione"
@@ -3787,20 +3999,24 @@ msgstr "Lista di moderazione creata"
msgid "Moderation list updated"
msgstr "Lista di moderazione aggiornata"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Liste di moderazione"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Liste di Moderazione"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Impostazioni di moderazione"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "Stati di moderazione"
@@ -3808,12 +4024,12 @@ msgstr "Stati di moderazione"
msgid "Moderation tools"
msgstr "Strumenti di moderazione"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Il moderatore ha scelto di mettere un avviso generale sul contenuto."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Di più"
@@ -3821,7 +4037,7 @@ msgstr "Di più"
msgid "More feeds"
msgstr "Altri feed"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Altre opzioni"
@@ -3843,11 +4059,13 @@ msgstr ""
#~ msgid "Must be at least 3 characters"
#~ msgstr "Deve contenere almeno 3 caratteri"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Silenzia"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Silenzia {truncatedTag}"
@@ -3856,11 +4074,11 @@ msgstr "Silenzia {truncatedTag}"
msgid "Mute Account"
msgstr "Silenzia l'account"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Silenzia gli accounts"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Silenzia tutti i post {displayTag}"
@@ -3870,14 +4088,18 @@ msgid "Mute conversation"
msgstr "Silenzia la conversazione"
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Silenzia solo i tags"
+#~ msgid "Mute in tags only"
+#~ msgstr "Silenzia solo i tags"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Silenzia nel testo & tags"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Silenzia nel testo & tags"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Silenziare la lista"
@@ -3886,40 +4108,56 @@ msgstr "Silenziare la lista"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Vuoi silenziare queste liste?"
#~ msgid "Mute this List"
#~ msgstr "Silenzia questa Lista"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Silenzia questa parola nel testo e nei tag del post"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Siilenzia questa parola solo nei tags"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Silenzia questa discussione"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Silenzia parole & tags"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Silenziato"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Account silenziato"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Accounts Silenziati"
@@ -3928,7 +4166,7 @@ msgstr "Accounts Silenziati"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tue notifiche. Silenziare è completamente privato."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Silenziato da \"{0}\""
@@ -3936,7 +4174,7 @@ msgstr "Silenziato da \"{0}\""
msgid "Muted words & tags"
msgstr "Parole e tags silenziati"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Silenziare un account è privato. Gli account silenziati possono interagire con te, ma non vedrai i loro post né riceverai le loro notifiche."
@@ -3945,7 +4183,7 @@ msgstr "Silenziare un account è privato. Gli account silenziati possono interag
msgid "My Birthday"
msgstr "Il mio Compleanno"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "I miei Feed"
@@ -3953,11 +4191,11 @@ msgstr "I miei Feed"
msgid "My Profile"
msgstr "Il mio Profilo"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "I miei feed salvati"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "I miei Feed Salvati"
@@ -3985,7 +4223,7 @@ msgstr "Il Nome o la Descrizione Viola gli Standard della Comunità"
msgid "Nature"
msgstr "Natura"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3999,7 +4237,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Vai alla schermata successiva"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Vai al tuo profilo"
@@ -4013,7 +4251,7 @@ msgstr "Hai bisogno di segnalare una violazione del copyright?"
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Non perdere mai l'accesso ai tuoi follower o ai tuoi dati."
@@ -4021,7 +4259,7 @@ msgstr "Non perdere mai l'accesso ai tuoi follower o ai tuoi dati."
msgid "Nevermind, create a handle for me"
msgstr "Non importa, crea una handle per me"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Nuova"
@@ -4057,12 +4295,12 @@ msgctxt "action"
msgid "New post"
msgstr "Nuovo Post"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Nuovo post"
@@ -4099,10 +4337,10 @@ msgstr "Notizie"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -4117,17 +4355,17 @@ msgstr "Seguente"
msgid "Next image"
msgstr "Immagine seguente"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "No"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Senza descrizione"
@@ -4144,12 +4382,12 @@ msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un proble
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Non segui più {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Non più di 253 caratteri"
@@ -4161,7 +4399,7 @@ msgstr "Ancora nessun messaggio"
msgid "No more conversations to show"
msgstr "Nessuna conversazione da visualizzare"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Ancora nessuna notifica!"
@@ -4172,6 +4410,10 @@ msgstr "Ancora nessuna notifica!"
msgid "No one"
msgstr "Nessuno"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4185,11 +4427,11 @@ msgstr "Nessun risultato"
msgid "No results"
msgstr "Nessun risultato"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Non si è trovato nessun risultato"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Nessun risultato trovato per \"{query}\""
@@ -4210,13 +4452,13 @@ msgstr "Nessun risultato trovato per \"{search}\"."
msgid "No thanks"
msgstr "No grazie"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Nessuno"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "Nessuno puo rispondere"
+#~ msgid "Nobody can reply"
+#~ msgstr "Nessuno puo rispondere"
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4234,7 +4476,7 @@ msgstr "Nudità non sessuale"
#~ msgid "Not Applicable."
#~ msgstr "Non applicabile."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Non trovato"
@@ -4245,12 +4487,12 @@ msgid "Not right now"
msgstr "Non adesso"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Nota sulla condivisione"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nota: Bluesky è una rete aperta e pubblica. Questa impostazione limita solo la visibilità dei tuoi contenuti sull'app e sul sito Web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web."
@@ -4262,7 +4504,7 @@ msgstr "Nulla qui"
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4279,14 +4521,14 @@ msgstr "Suoni di notifica"
msgid "Notification Sounds"
msgstr "Suoni di notifica"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Notifiche"
@@ -4317,12 +4559,12 @@ msgid "Off"
msgstr "Spento"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Oh no!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Oh no! Qualcosa è andato male."
@@ -4346,7 +4588,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Reimpostazione dell'onboarding"
@@ -4354,7 +4596,7 @@ msgstr "Reimpostazione dell'onboarding"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "A una o più immagini manca il testo alternativo."
@@ -4363,14 +4605,14 @@ msgid "Only .jpg and .png files are supported"
msgstr "Solo i file .jpg e .png sono supportati"
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Solo {0} può rispondere."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Solo {0} può rispondere."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Contiene solo lettere, numeri e trattini"
@@ -4378,7 +4620,7 @@ msgstr "Contiene solo lettere, numeri e trattini"
msgid "Oops, something went wrong!"
msgstr "Ops! Qualcosa è andato male!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4387,11 +4629,11 @@ msgstr "Ops! Qualcosa è andato male!"
msgid "Oops!"
msgstr "Ops!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Apri"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4404,8 +4646,8 @@ msgstr "Apri il generatore di avatar"
msgid "Open conversation options"
msgstr "Apri opzioni conversazione"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Apri il selettore emoji"
@@ -4413,7 +4655,7 @@ msgstr "Apri il selettore emoji"
msgid "Open feed options menu"
msgstr "Apri il menu delle opzioni del feed"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Apri i links con il navigatore della app"
@@ -4429,20 +4671,20 @@ msgstr "Apri le impostazioni delle parole e dei tag silenziati"
msgid "Open navigation"
msgstr "Apri la navigazione"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Apri il menu delle opzioni del post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Apri la pagina della cronologia"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Apri il registro di sistema"
@@ -4450,11 +4692,11 @@ msgstr "Apri il registro di sistema"
msgid "Opens {numItems} options"
msgstr "Apre le {numItems} opzioni"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Apre le impostazioni di accessibilità"
@@ -4466,19 +4708,23 @@ msgstr "Apre dettagli aggiuntivi per una debug entry"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Apre un elenco ampliato di utenti in questa notifica"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Apre la fotocamera sul dispositivo"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "Apre impostazioni messaggi"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Apre il compositore"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Apre le impostazioni configurabili delle lingue"
@@ -4489,7 +4735,7 @@ msgstr "Apre la galleria fotografica del dispositivo"
#~ msgid "Opens editor for profile display name, avatar, background image, and description"
#~ msgstr "Apre l'editor per il nome configurato del profilo, l'avatar, l'immagine di sfondo e la descrizione"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Apre le impostazioni esterne per gli incorporamenti"
@@ -4520,30 +4766,30 @@ msgstr "Apre la finestra per selezionare i GIF"
msgid "Opens list of invite codes"
msgstr "Apre la lista dei codici di invito"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Apre la modale per la conferma dell'eliminazione dell'account. Richiede un codice e-mail"
#~ msgid "Opens modal for account deletion confirmation. Requires email code."
#~ msgstr "Apre il modal per la conferma dell'eliminazione dell'account. Richiede un codice email."
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Apre la modale per modificare il tuo password di Bluesky"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Apre la modale per la scelta di un nuovo handle di Bluesky"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Apre la modale per scaricare i dati del tuo account Bluesky (repository)"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Apre la modale per la verifica dell'e-mail"
@@ -4551,7 +4797,7 @@ msgstr "Apre la modale per la verifica dell'e-mail"
msgid "Opens modal for using custom domain"
msgstr "Apre il modal per l'utilizzo del dominio personalizzato"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Apre le impostazioni di moderazione"
@@ -4564,18 +4810,18 @@ msgstr "Apre il modulo di reimpostazione della password"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Apre la schermata per modificare i feed salvati"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Apre la schermata con tutti i feed salvati"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Apre le impostazioni della password dell'app"
#~ msgid "Opens the app password settings page"
#~ msgstr "Apre la pagina delle impostazioni della password dell'app"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Apre le preferenze del feed Following"
@@ -4590,21 +4836,21 @@ msgstr "Apre il sito Web collegato"
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Apri la pagina della cronologia"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Apre la pagina del registro di sistema"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Apre le preferenze dei threads"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4617,11 +4863,15 @@ msgid "Option {0} of {numItems}"
msgstr "Opzione {0} di {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Oppure combina queste opzioni:"
@@ -4641,6 +4891,10 @@ msgstr "Altri"
msgid "Other account"
msgstr "Altro account"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#~ msgid "Other service"
#~ msgstr "Altro servizio"
@@ -4652,7 +4906,7 @@ msgstr "Altro..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "I nostri moderatori hanno revisionato i report e deciso di disabilitare il tuo accesso ai messaggi su Bluesky."
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Pagina non trovata"
@@ -4681,19 +4935,24 @@ msgid "Password updated!"
msgstr "Password aggiornata!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Pausa"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Gente"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Persone seguite da @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Persone che seguono @{0}"
@@ -4726,7 +4985,7 @@ msgid "Pictures meant for adults."
msgstr "Immagini per adulti."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Fissa su Home"
@@ -4738,11 +4997,12 @@ msgstr "Fissa su Home"
msgid "Pinned Feeds"
msgstr "Feed Fissi"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "Fissa ai tuoi feed"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Play"
@@ -4754,6 +5014,11 @@ msgstr "Riproduci {0}"
msgid "Play or pause the GIF"
msgstr "Riproduci o pausa la GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4763,16 +5028,16 @@ msgstr "Riproduci video"
msgid "Plays the GIF"
msgstr "Riproduci questa GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Scegli il tuo nome utente."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Scegli la tua password."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Si prega di completare il captcha di verifica."
@@ -4791,7 +5056,7 @@ msgstr "Inserisci un nome per la password dell'app. Tutti gli spazi non sono con
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Inserisci un nome unico per la password dell'app o utilizzane uno generato automaticamente."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Inserisci una parola, un tag o una frase valida da silenziare"
@@ -4801,7 +5066,7 @@ msgstr "Inserisci una parola, un tag o una frase valida da silenziare"
#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}."
#~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}."
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Inserisci la tua email."
@@ -4814,7 +5079,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Inserisci anche la tua password:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Spiega perché ritieni che questa etichetta sia stata applicata in modo errato da {0}"
@@ -4837,7 +5102,7 @@ msgstr "Accedi come @{0}"
msgid "Please Verify Your Email"
msgstr "Verifica la tua email"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Attendi il caricamento della scheda di collegamento"
@@ -4853,13 +5118,13 @@ msgstr "Porno"
#~ msgid "Pornography"
#~ msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Post"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Post"
@@ -4867,34 +5132,39 @@ msgstr "Post"
#~ msgid "Post"
#~ msgstr "Post"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Pubblicato da {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Pubblicato da @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Post eliminato"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Post nascosto"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Post nascosto dalla Parola Silenziata"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Post nascosto da te"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Lingua del post"
@@ -4903,23 +5173,27 @@ msgstr "Lingua del post"
msgid "Post Languages"
msgstr "Lingue del post"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Post non trovato"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Post"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "I post possono essere silenziati in base al testo, ai tag o entrambi."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "I post possono essere silenziati in base al testo, ai tag o entrambi."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4941,7 +5215,7 @@ msgstr "Premere per tentare di riconnetterti"
msgid "Press to change hosting provider"
msgstr "Premi per cambiare provider di hosting"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4956,7 +5230,7 @@ msgstr ""
msgid "Previous image"
msgstr "Immagine precedente"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Lingua principale"
@@ -4968,16 +5242,16 @@ msgstr "Dai priorità a quelli che segui"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Privacy"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Informativa sulla privacy"
@@ -4989,16 +5263,16 @@ msgstr "Messaggia privatamente con altri utenti."
msgid "Processing..."
msgstr "Elaborazione in corso…"
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "profilo"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Profilo"
@@ -5006,11 +5280,11 @@ msgstr "Profilo"
msgid "Profile updated"
msgstr "Profilo aggiornato"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Proteggi il tuo account verificando la tua email."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Pubblico"
@@ -5018,15 +5292,15 @@ msgstr "Pubblico"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Elenchi pubblici e condivisibili di utenti da disattivare o bloccare in blocco."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Liste pubbliche e condivisibili che possono impulsare i feed."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Pubblica il post"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Pubblica la risposta"
@@ -5046,10 +5320,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Cita il post"
@@ -5066,6 +5340,39 @@ msgstr "Cita il post"
#~ msgid "Quote Post"
#~ msgstr "Cita il post"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")"
@@ -5074,15 +5381,32 @@ msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")"
msgid "Ratios"
msgstr "Rapporti"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "Motivazione:"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Ricerche recenti"
@@ -5104,15 +5428,16 @@ msgstr ""
msgid "Reload conversations"
msgstr "Ricarica conversazioni"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Rimuovi"
@@ -5123,11 +5448,11 @@ msgstr "Rimuovi"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Rimuovi l'account"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Rimuovere Avatar"
@@ -5140,8 +5465,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Rimuovi il feed"
@@ -5149,19 +5474,27 @@ msgstr "Rimuovi il feed"
msgid "Remove feed?"
msgstr "Rimuovere il feed?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Rimuovi dai miei feed"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Rimuovere dai miei feed?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Rimuovi l'immagine"
@@ -5170,24 +5503,24 @@ msgstr "Rimuovi l'immagine"
msgid "Remove image preview"
msgstr "Rimuovi l'anteprima dell'immagine"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Rimuovi la parola silenziata dalla tua lista"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "Rimuovi citazione"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Rimuovi la ripubblicazione"
@@ -5201,18 +5534,31 @@ msgstr "Rimuovi questo feed dai feed salvati"
#~ msgid "Remove this feed from your saved feeds?"
#~ msgstr "Elimina questo feed dai feed salvati?"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Elimina dalla lista"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Rimuovere dai miei feed"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Rimosso dai tuoi feed"
@@ -5220,7 +5566,7 @@ msgstr "Rimosso dai tuoi feed"
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Elimina la miniatura predefinita da {0}"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "Rimuovi post citato"
@@ -5228,8 +5574,8 @@ msgstr "Rimuovi post citato"
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Sostituisci con Discover"
@@ -5237,7 +5583,7 @@ msgstr "Sostituisci con Discover"
msgid "Replies"
msgstr "Risposte"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5245,40 +5591,75 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Le risposte a questo thread sono disabilitate"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Le risposte a questo thread sono disabilitate"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Risposta"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Filtri di risposta"
+#~ msgid "Reply Filters"
+#~ msgstr "Filtri di risposta"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#~ msgctxt "description"
#~ msgid "Reply to <0/>"
#~ msgstr "In risposta a <0/>"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Rispondi a <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5308,7 +5689,7 @@ msgstr "Segnala il dialogo"
msgid "Report feed"
msgstr "Segnala il feed"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Segnala la lista"
@@ -5316,13 +5697,13 @@ msgstr "Segnala la lista"
msgid "Report message"
msgstr "Segnala il messaggio"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Segnala il post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5356,33 +5737,34 @@ msgstr ""
msgid "Report this user"
msgstr "Segnala questo utente"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Ripubblicare"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Ripubblicare"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Ripubblica o cita il post"
#~ msgid "Reposted by"
#~ msgstr "Repost di"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Ripubblicato da"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Ripubblicato da{0}"
@@ -5392,20 +5774,20 @@ msgstr "Ripubblicato da{0}"
#~ msgid "Reposted by <0/>"
#~ msgstr "Repost di <0/>"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Ripubblicato da <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "ripubblicato il tuo post"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Ripubblicazioni di questo post"
@@ -5422,7 +5804,7 @@ msgstr "Richiedi un cambio"
msgid "Request Code"
msgstr "Richiedi il codice"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Richiedi il testo alternativo prima di pubblicare"
@@ -5450,8 +5832,8 @@ msgstr "Reimposta il Codice"
#~ msgid "Reset onboarding"
#~ msgstr "Reimposta l'incorporazione"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Reimposta lo stato dell' incorporazione"
@@ -5462,16 +5844,16 @@ msgstr "Reimposta la password"
#~ msgid "Reset preferences"
#~ msgstr "Reimposta le preferenze"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Reimposta lo stato delle preferenze"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Reimposta lo stato dell'incorporazione"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Reimposta lo stato delle preferenze"
@@ -5485,26 +5867,29 @@ msgid "Retries the last action, which errored out"
msgstr "Ritenta l'ultima azione che ha generato un errore"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Riprova"
#~ msgid "Retry."
#~ msgstr "Riprova."
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Ritorna alla pagina precedente"
@@ -5521,7 +5906,8 @@ msgstr "Ritorna alla pagina precedente"
#~ msgstr "SANDBOX. I post e gli account non sono permanenti."
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5571,7 +5957,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr "Salva nei miei feed"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Canali salvati"
@@ -5583,7 +5969,7 @@ msgstr "Salvata nella tua galleria"
#~ msgstr "Salvato nel rullino fotografico."
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Salvato nei tuoi feed"
@@ -5601,8 +5987,8 @@ msgstr "Salva le impostazioni di ritaglio dell'immagine"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "Di ciao!"
@@ -5611,13 +5997,12 @@ msgstr "Di ciao!"
msgid "Science"
msgstr "Scienza"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Scorri verso l'alto"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5626,14 +6011,12 @@ msgstr "Scorri verso l'alto"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Cerca"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Cerca \"{query}\""
@@ -5641,11 +6024,11 @@ msgstr "Cerca \"{query}\""
msgid "Search for \"{searchText}\""
msgstr "Cerca \"{searchText}\""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Cerca tutti i post di @{authorHandle} con tag {displayTag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Cerca tutti i post con il tag {displayTag}"
@@ -5653,8 +6036,6 @@ msgstr "Cerca tutti i post con il tag {displayTag}"
msgid "Search for feeds that you want to suggest to others."
msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Cerca utenti"
@@ -5678,28 +6059,32 @@ msgstr "Cerca Tenor"
msgid "Security Step Required"
msgstr "Passaggio di sicurezza obbligatorio"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Vedi {truncatedTag} post"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Visualizza i post {truncatedTag} per utente"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Vedi <0>{displayTag}0> posts"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Vedi <0>{displayTag}0> posts di questo utente"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr "Vedi il profilo"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Consulta questa guida"
@@ -5741,7 +6126,11 @@ msgstr "Seleziona GIF"
msgid "Select GIF \"{0}\""
msgstr "Seleziona GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Seleziona lingue"
@@ -5764,7 +6153,7 @@ msgstr "Seleziona l'opzione {i} di {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Scegli la {emojiName} emoji come tuo avatar"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Seleziona il/i servizio/i di moderazione per fare la segnalazione"
@@ -5780,11 +6169,15 @@ msgstr "Seleziona il servizio che ospita i tuoi dati."
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Seleziona ciò che vuoi vedere (o non vedere) e noi gestiremo il resto."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Seleziona le lingue che desideri includere nei feed a cui sei iscritto. Se non ne viene selezionata nessuna, verranno visualizzate tutte le lingue."
@@ -5799,14 +6192,14 @@ msgstr "Seleziona la lingua dell'app per il testo predefinito da visualizzare ne
msgid "Select your date of birth"
msgstr "Seleziona la tua data di nascita"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Seleziona i tuoi interessi dalle seguenti opzioni"
#~ msgid "Select your phone's country"
#~ msgstr "Seleziona il Paese del tuo cellulare"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed."
@@ -5839,7 +6232,7 @@ msgstr "Invia email"
#~ msgid "Send Email"
#~ msgstr "Envia Email"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Invia feedback"
@@ -5854,8 +6247,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Invia la segnalazione"
@@ -5871,8 +6264,8 @@ msgstr "Invia la segnalazione a {0}"
msgid "Send verification email"
msgstr "Invia la email di verifica"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5891,7 +6284,7 @@ msgstr "Indirizzo del server"
#~ msgid "Set Age"
#~ msgstr "Imposta l'età"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Imposta la data di nascita"
@@ -5917,15 +6310,15 @@ msgstr "Imposta una nuova password"
#~ msgid "Set password"
#~ msgstr "Imposta la password"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Seleziona \"No\" per nascondere tutti i post con le citazioni dal tuo feed. I repost saranno ancora visibili."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Seleziona \"No\" per nascondere tutte le risposte dal tuo feed."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed."
@@ -5936,7 +6329,7 @@ msgstr "Seleziona \"Sì\" per mostrare le risposte in una visualizzazione concat
#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature."
#~ msgstr "Seleziona \"Sì\" per mostrare esempi dei feed salvati nel feed successivo. Questa è una funzionalità sperimentale."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Imposta questa impostazione su \"Sì\" per mostrare esempi dei tuoi feed salvati nel feed Seguiti. Questa è una funzionalità sperimentale."
@@ -5949,24 +6342,24 @@ msgid "Sets Bluesky username"
msgstr "Imposta il tuo nome utente di Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Imposta il tema colore su scuro"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Imposta il tema colore su scuro"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Imposta il tema colore su chiaro"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Imposta il tema colore su chiaro"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Imposta il tema colore basato impostazioni di sistema"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Imposta il tema colore basato impostazioni di sistema"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Imposta il tema scuro sul tema scuro"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Imposta il tema scuro sul tema scuro"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Imposta il tema scuro sul tema semi fosco"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Imposta il tema scuro sul tema semi fosco"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5990,11 +6383,11 @@ msgstr "Imposta l'amplio sulle proporzioni dell'immagine"
#~ msgid "Sets server for the Bluesky client"
#~ msgstr "Imposta il server per il client Bluesky"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Impostazioni"
@@ -6007,14 +6400,14 @@ msgid "Sexually Suggestive"
msgstr "Sessualmente suggestivo"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Condividi"
@@ -6032,8 +6425,8 @@ msgid "Share a fun fact!"
msgstr "Condividi un fatto divertente!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Condividi comunque"
@@ -6044,7 +6437,7 @@ msgstr "Condividi il feed"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -6062,7 +6455,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -6074,7 +6467,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr "Condividi il tuo feed preferito!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -6085,7 +6478,7 @@ msgstr "Condivide il sito Web nel link"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Mostra"
@@ -6096,8 +6489,9 @@ msgstr "Mostra"
msgid "Show alt text"
msgstr "Mostra testo alternativo"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Mostra comunque"
@@ -6121,19 +6515,23 @@ msgstr "Mostra follows simile a {0}"
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "Mostra meno come questo"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Mostra di più"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -6141,11 +6539,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Mostra post dai miei feed"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Mostra post con citazioni"
@@ -6161,7 +6559,7 @@ msgstr "Mostra post con citazioni"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Mostra re-post nel feed Seguiti"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Mostra risposte"
@@ -6180,7 +6578,12 @@ msgstr "Mostra le risposte delle persone che segui prima delle altre risposte."
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "Mostra risposte con almeno {value} {0}"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Mostra ripubblicazioni"
@@ -6255,11 +6658,15 @@ msgstr "Accedi o crea il tuo account per partecipare alla conversazione!"
msgid "Sign into Bluesky or create a new account"
msgstr "Accedi a Bluesky o crea un nuovo account"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Disconnetta"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6281,7 +6688,7 @@ msgstr "Iscriviti o accedi per partecipare alla conversazione"
msgid "Sign-in Required"
msgstr "È richiesta l'autenticazione"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Registrato/a come"
@@ -6290,24 +6697,28 @@ msgstr "Registrato/a come"
msgid "Signed in as @{0}"
msgstr "Registrato/a come @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
#~ msgid "Signs {0} out of Bluesky"
#~ msgstr "{0} esce da Bluesky"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Salta questo passo"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Salta questa corrente"
@@ -6319,12 +6730,11 @@ msgstr "Salta questa corrente"
msgid "Software Dev"
msgstr "Sviluppo Software"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "Solo alcune persone possono rispondere"
@@ -6350,7 +6760,7 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr "Qualcosa è andato male, prova di nuovo."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
@@ -6358,8 +6768,8 @@ msgstr ""
#~ msgid "Something went wrong. Check your email and try again."
#~ msgstr "Qualcosa è andato storto. Controlla la tua email e riprova."
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Scusa! La tua sessione è scaduta. Per favore accedi di nuovo."
@@ -6375,8 +6785,12 @@ msgstr "Ordina le risposte allo stesso post per:"
#~ msgstr "Origine:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "Fonte: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr "Fonte: <0>{0}0>"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -6416,17 +6830,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6441,37 +6855,37 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Pagina di stato"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "Pagina di stato"
#~ msgid "Step"
#~ msgstr "Passo"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Step {0} di {1}"
#~ msgid "Step {0} of {numSteps}"
#~ msgstr "Passo {0} di {numSteps}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Spazio di archiviazione eliminato. Riavvia l'app."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Cronologia"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Invia"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Iscriviti"
@@ -6492,11 +6906,11 @@ msgstr "Iscriviti a Labeler"
msgid "Subscribe to this labeler"
msgstr "Iscriviti a questo labeler"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Iscriviti alla lista"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6504,8 +6918,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Accounts da seguire"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Suggerito per te"
@@ -6513,7 +6926,7 @@ msgstr "Suggerito per te"
msgid "Suggestive"
msgstr "Suggestivo"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6531,30 +6944,35 @@ msgstr "Cambia account"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Cambia a {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Cambia l'account dal quale hai effettuato l'accesso"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Sistema"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Registro di sistema"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "tag"
+#~ msgid "tag"
+#~ msgstr "tag"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Tag menu: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Alto"
@@ -6563,11 +6981,19 @@ msgstr "Alto"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Tocca per visualizzare completamente"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6592,11 +7018,11 @@ msgstr ""
msgid "Terms"
msgstr "Termini"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Termini di servizio"
@@ -6608,16 +7034,20 @@ msgid "Terms used violate community standards"
msgstr "I termini utilizzati violano gli standard della comunità"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "testo"
+#~ msgid "text"
+#~ msgstr "testo"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Campo di testo"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Grazie. La tua segnalazione è stata inviata."
@@ -6625,19 +7055,23 @@ msgstr "Grazie. La tua segnalazione è stata inviata."
msgid "That contains the following:"
msgstr "Che contiene il seguente:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Questo handle è già stato preso."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6646,6 +7080,15 @@ msgstr "L'account sarà in grado di interagire con te dopo lo sblocco."
#~ msgid "the author"
#~ msgstr "l'autore"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Le Linee guida della community sono state spostate a<0/>"
@@ -6654,12 +7097,16 @@ msgstr "Le Linee guida della community sono state spostate a<0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "La politica sul copyright è stata spostata a <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6667,11 +7114,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr "Questo feed è stato sostituito con Discover."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Al tuo account sono state applicate le seguenti etichette."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette."
@@ -6679,8 +7126,8 @@ msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette."
msgid "The following steps will help customize your Bluesky experience."
msgstr "I passaggi seguenti ti aiuteranno a personalizzare la tua esperienza con Bluesky."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Il post potrebbe essere stato cancellato."
@@ -6688,7 +7135,11 @@ msgstr "Il post potrebbe essere stato cancellato."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La politica sulla privacy è stata spostata a <0/><0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6736,24 +7187,24 @@ msgstr "Si è verificato un problema durante la connessione a Tenor."
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Si è verificato un problema durante il contatto con il server"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Si è verificato un problema durante il contatto con il tuo server"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare."
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
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."
@@ -6761,13 +7212,13 @@ msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprov
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Si è verificato un problema durante il recupero dell'elenco. Tocca qui per riprovare."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Si è verificato un problema durante il recupero delle tue liste. Tocca qui per riprovare."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Si è verificato un problema durante l'invio della segnalazione. Per favore controlla la tua connessione Internet."
@@ -6793,16 +7244,19 @@ msgstr "Si è verificato un problema durante il recupero delle password dell'app
msgid "There was an issue! {0}"
msgstr "Si è verificato un problema! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Si è verificato un problema. Per favore controlla la tua connessione Internet e prova di nuovo."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Si è verificato un problema imprevisto nell'applicazione. Per favore facci sapere se ti è successo!"
@@ -6821,11 +7275,11 @@ msgstr "C'è stata un'ondata di nuovi utenti su Bluesky! Attiveremo il tuo accou
#~ msgid "This {0} has been labeled."
#~ msgstr "Questo {0} è stato etichettato."
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Questa {screenDescription} è stata segnalata:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Questo account ha richiesto agli utenti di accedere Bluesky per visualizzare il profilo."
@@ -6834,8 +7288,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr "Questo account è bloccato da uno o più appartenente alle tue liste di moderazione. Per sbloccare, visista le liste direttamente e rimuovi l'utente."
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Questo ricorso verrà inviato a <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Questo ricorso verrà inviato a <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6857,8 +7315,8 @@ msgstr "Questo contenuto ha ricevuto un avviso generale dai moderatori."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Questo contenuto è hosted da {0}. Vuoi abilitare i media esterni?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti ha bloccato l'altro."
@@ -6893,7 +7351,7 @@ msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le imposta
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6915,15 +7373,15 @@ msgstr "Questo è importante nel caso in cui avessi bisogno di modificare la tua
#~ msgid "This label was applied by {0}."
#~ msgstr "Questa etichetta è stata applicata da {0}."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "Questa etichetta è stata applicata da <0>{0}0>."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "Questa etichetta è stata applicata dall'autore."
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "Questa etichetta è stata applicata da te."
@@ -6935,7 +7393,11 @@ msgstr "Questo etichettatore non ha dichiarato quali etichette pubblica e potreb
msgid "This link is taking you to the following website:"
msgstr "Questo link ti porta al seguente sito web:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "La lista è vuota!"
@@ -6947,23 +7409,35 @@ msgstr "Questo servizio di moderazione non è disponibile. Vedi giù per ulterio
msgid "This name is already in use"
msgstr "Questo nome è già in uso"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Questo post è stato cancellato."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Questo post è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Questo post verrà nascosto dai feed."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Questo post verrà nascosto dai feed."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Questo profilo è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Questo servizio non ha fornito termini di servizio o un'informativa sulla privacy."
@@ -6980,8 +7454,8 @@ msgstr "Questo utente non ha follower."
msgid "This user has blocked you"
msgstr "Questo utente ti ha bloccato"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Questo utente ti ha bloccato. Non è possibile visualizzare il suo contenuto."
@@ -6995,11 +7469,11 @@ msgstr "Questo utente ha richiesto che i suoi contenuti vengano mostrati solo ag
#~ msgid "This user is included in the <0/> list which you have muted."
#~ msgstr "Questo utente è incluso nell'elenco <0/> che hai disattivato."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Questo utente è incluso nell'elenco <0>{0}0> che hai bloccato."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Questo utente è incluso nell'elenco <0>{0}0> che hai silenziato."
@@ -7017,31 +7491,43 @@ msgstr "Questo utente non sta seguendo nessuno."
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Questo avviso è disponibile solo per i post con contenuti multimediali allegati."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
+
#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Questo eliminerà {0} dalle parole disattivate. Puoi sempre aggiungerla nuovamente in seguito."
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Questo eliminerà {0} dalle parole disattivate. Puoi sempre aggiungerla nuovamente in seguito."
#~ msgid "This will hide this post from your feeds."
#~ msgstr "Questo nasconderà il post dai tuoi feed."
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Preferenze delle discussioni"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Preferenze delle Discussioni"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Modalità discussione"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Preferenze per le discussioni"
@@ -7058,14 +7544,14 @@ msgid "To whom would you like to send this report?"
msgstr "A chi desideri inviare questo report?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Alterna tra le opzioni delle parole silenziate."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Alterna tra le opzioni delle parole silenziate."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Attiva/disattiva il menu a discesa"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti"
@@ -7080,10 +7566,10 @@ msgstr "Trasformazioni"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Tradurre"
@@ -7099,7 +7585,7 @@ msgstr "Riprova"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Autenticazione a due fattori"
@@ -7111,11 +7597,11 @@ msgstr "Scrivi il tuo messaggio qui"
msgid "Type:"
msgstr "Tipo:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Sblocca la lista"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Riattiva questa lista"
@@ -7123,12 +7609,12 @@ msgstr "Riattiva questa lista"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -7139,7 +7625,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Sblocca"
@@ -7163,9 +7649,9 @@ msgstr "Sblocca Account"
msgid "Unblock Account?"
msgstr "Sblocca Account?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Annulla la ripubblicazione"
@@ -7175,8 +7661,8 @@ msgid "Unfollow"
msgstr "Smetti di seguire"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Smetti di seguire"
+#~ msgid "Unfollow"
+#~ msgstr "Smetti di seguire"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -7197,12 +7683,14 @@ msgstr "Smetti di seguire questo account"
msgid "Unlike this feed"
msgstr "Togli il like a questo feed"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Riattiva"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Riattiva {truncatedTag}"
@@ -7211,7 +7699,7 @@ msgstr "Riattiva {truncatedTag}"
msgid "Unmute Account"
msgstr "Riattiva questo account"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Riattiva tutti i post di {displayTag}"
@@ -7219,13 +7707,21 @@ msgstr "Riattiva tutti i post di {displayTag}"
msgid "Unmute conversation"
msgstr "Riattiva conversazione"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Riattiva questa discussione"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Stacca dal profilo"
@@ -7233,11 +7729,11 @@ msgstr "Stacca dal profilo"
msgid "Unpin from home"
msgstr "Stacca dalla Home"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Stacca la lista di moderazione"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "Sblocca dai tuoi feed"
@@ -7248,16 +7744,25 @@ msgstr "Sblocca dai tuoi feed"
msgid "Unsubscribe"
msgstr "Annulla l'iscrizione"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Annulla l'iscrizione a questo/a labeler"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Unwanted Sexual Content"
msgstr "Contenuti Sessuali Indesiderati"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Aggiorna {displayName} negli elenchi"
@@ -7268,6 +7773,14 @@ msgstr "Aggiorna {displayName} negli elenchi"
msgid "Update to {handle}"
msgstr "Aggiorna a {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "In aggiornamento..."
@@ -7280,20 +7793,20 @@ msgstr "Alternativamente carica una foto"
msgid "Upload a text file to:"
msgstr "Carica una file di testo a:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Carica dalla fotocamera"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Carica dai Files"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7344,12 +7857,12 @@ msgstr "Utilizza questo per accedere all'altra app insieme al tuo nome utente."
msgid "Used by:"
msgstr "Usato da:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Utente bloccato"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Utente bloccato da \"{0}\""
@@ -7357,33 +7870,31 @@ msgstr "Utente bloccato da \"{0}\""
msgid "User blocked by list"
msgstr "Utente bloccato dalla lista"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Utente bloccato dalla lista"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Questo Utente ti Blocca"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Questo utente ti blocca"
#~ msgid "User handle"
#~ msgstr "Handle dell'utente"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Lista di {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Lista di<0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "La tua lista"
@@ -7395,7 +7906,7 @@ msgstr "Lista creata"
msgid "User list updated"
msgstr "Lista aggiornata"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Liste publiche"
@@ -7403,13 +7914,17 @@ msgstr "Liste publiche"
msgid "Username or email address"
msgstr "Nome utente o indirizzo Email"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Utenti"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "utenti seguiti da <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "utenti seguiti da <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7418,7 +7933,7 @@ msgstr "utenti seguiti da <0/>"
msgid "Users I follow"
msgstr "Utenti che seguo"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Utenti in «{0}»"
@@ -7440,15 +7955,15 @@ msgstr "Valore:"
msgid "Verify DNS Record"
msgstr "Verifica record DNS"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Verifica Email"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Verifica la mia email"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Verifica la Mia Email"
@@ -7468,31 +7983,44 @@ msgstr "Verifica la tua email"
#~ msgid "Version {0}"
#~ msgstr "Versione {0}"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "Versione {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Video Games"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Vedi l'avatar di {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Vedi le informazioni del debug"
@@ -7505,7 +8033,7 @@ msgstr "Vedere dettagli"
msgid "View details for reporting a copyright violation"
msgstr "Visualizza i dettagli per segnalare una violazione del copyright"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Vedi la discussione completa"
@@ -7516,12 +8044,12 @@ msgstr "Visualizza le informazioni su queste etichette"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Vedi il profilo"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Vedi l'avatar"
@@ -7533,11 +8061,23 @@ msgstr "Visualizza il servizio di etichettatura fornito da @{0}"
msgid "View users who like this feed"
msgstr "Visualizza gli utenti a cui piace questo feed"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7572,7 +8112,7 @@ msgstr "Non riusciamo a caricare questa conversazione"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Stimiamo {estimatedTime} prima che il tuo account sia pronto."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Speriamo di darti dei momenti dei bei momenti. Ricorda, Bluesky è:"
@@ -7581,8 +8121,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Abbiamo esaurito i posts dei tuoi follower. Ecco le ultime novità da <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Ti consigliamo di evitare usare parole comuni che compaiono in molti post, perchè ciò potrebbe comportare la mancata visualizzazione dei post."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Ti consigliamo di evitare usare parole comuni che compaiono in molti post, perchè ciò potrebbe comportare la mancata visualizzazione dei post."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7592,11 +8132,11 @@ msgstr "Ti consigliamo di evitare usare parole comuni che compaiono in molti pos
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Non siamo riusciti a caricare le tue preferenze relative alla data di nascita. Per favore riprova."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "Al momento non è stato possibile caricare le etichettatori configurati."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare il tuo account. Se il problema persiste, puoi ignorare questo flusso."
@@ -7607,7 +8147,7 @@ msgstr "Ti faremo sapere quando il tuo account sarà pronto."
#~ msgid "We'll look into your appeal promptly."
#~ msgstr "Esamineremo il tuo ricorso al più presto."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Lo useremo per personalizzare la tua esperienza."
@@ -7615,15 +8155,15 @@ msgstr "Lo useremo per personalizzare la tua esperienza."
msgid "We're having network issues, try again"
msgstr "Stiamo riscontrando problemi di rete, riprova"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Siamo felici che tu ti unisca a noi!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il problema persiste, contatta il creatore della lista, @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Siamo spiacenti, ma al momento non siamo riusciti a caricare le parole silenziate. Per favore riprova si nuovo."
@@ -7631,11 +8171,11 @@ msgstr "Siamo spiacenti, ma al momento non siamo riusciti a caricare le parole s
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Siamo spiacenti, ma non è stato possibile completare la ricerca. Riprova tra qualche minuto."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando."
@@ -7659,7 +8199,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Quali sono i tuoi interessi?"
@@ -7675,7 +8215,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Come va?"
@@ -7687,22 +8227,26 @@ msgstr "Che lingue sono utilizzate in questo post?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feed?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "Chi puoi inviarti messaggi?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Chi può rispondere"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7746,12 +8290,12 @@ msgstr "Largo"
msgid "Write a message"
msgstr "Scrivi un messaggio"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Scrivi un post"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Scrivi la tua risposta"
@@ -7764,10 +8308,10 @@ msgstr "Scrittori"
#~ msgstr "XXXXXX"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7778,10 +8322,18 @@ msgstr "Si"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7790,7 +8342,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr "Ieri, {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7858,11 +8411,11 @@ msgstr "Non hai fissato nessun feed."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "Non hai salvato nessun feed!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Non hai salvato nessun feed."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore."
@@ -7870,9 +8423,9 @@ msgstr "Hai bloccato l'autore o sei stato bloccato dall'autore."
msgid "You have blocked this user"
msgstr "Hai bloccato questo utente"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Hai bloccato questo utente. Non è possibile visualizzare il contenuto."
@@ -7883,20 +8436,20 @@ msgstr "Hai bloccato questo utente. Non è possibile visualizzare il contenuto."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Hai inserito un codice non valido. Dovrebbe apparire come XXXX-XXXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Hai nascosto questo post"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Hai silenziato questo post."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Hai silenziato questo account."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Hai silenziato questo utente"
@@ -7907,12 +8460,12 @@ msgstr "Hai silenziato questo utente"
msgid "You have no conversations yet. Start one!"
msgstr "Non hai ancora nessuna conversazione. Avviane una!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Non hai feed."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Non hai liste."
@@ -7942,27 +8495,40 @@ msgstr "Hai raggiunto la fine"
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Non hai ancora silenziato nessuna parola o tag"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "Ti puoi appellare alle etichette se pensi che sia stata applicata per errore."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Puoi presentare ricorso contro queste etichette se ritieni che siano state inserite per errore."
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Per iscriverti devi avere almeno 13 anni."
@@ -7985,7 +8551,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "È necessario selezionare almeno un'etichettatore per un report"
@@ -7993,11 +8559,11 @@ msgstr "È necessario selezionare almeno un'etichettatore per un report"
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Non riceverai più notifiche per questo filo di discussione"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Adesso riceverai le notifiche per questa discussione"
@@ -8017,23 +8583,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -8052,12 +8618,12 @@ msgstr "Sei in fila"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Sei pronto per iniziare!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Hai scelto di nascondere una parola o un tag in questo post."
@@ -8065,7 +8631,7 @@ msgstr "Hai scelto di nascondere una parola o un tag in questo post."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Il tuo account"
@@ -8081,6 +8647,10 @@ msgstr "L'archivio del tuo account, che contiene tutti i record di dati pubblici
msgid "Your birth date"
msgstr "La tua data di nascita"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "Le tue conversazioni sonos state disabiltate"
@@ -8094,7 +8664,7 @@ msgstr "La tua scelta verrà salvata, ma potrà essere modificata successivament
#~ msgstr "Il tuo feed predefinito è \"Following\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -8111,7 +8681,7 @@ msgstr "La tua email è stata aggiornata ma non verificata. Come passo successiv
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "La tua email non è stata ancora verificata. Ti consigliamo di fare questo importante passo per la sicurezza del tuo account."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -8119,7 +8689,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Il tuo feed seguente è vuoto! Segui più utenti per vedere cosa sta succedendo."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Il tuo nome di utente completo sarà"
@@ -8133,7 +8703,7 @@ msgstr "Il tuo nome di utente completo sarà <0>@{0}0>"
#~ msgid "Your invite codes are hidden when logged in using an App Password"
#~ msgstr "I tuoi codici di invito vengono celati quando accedi utilizzando una password per l'app"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Le tue parole silenziate"
@@ -8141,15 +8711,15 @@ msgstr "Le tue parole silenziate"
msgid "Your password has been changed successfully!"
msgstr "La tua password è stata modificata correttamente!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Il tuo post è stato pubblicato"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "I tuoi post, i tuoi Mi piace e i tuoi blocchi sono pubblici. I conti silenziati sono privati."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Il tuo profilo"
@@ -8157,7 +8727,7 @@ msgstr "Il tuo profilo"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "La tua risposta è stata pubblicata"
@@ -8165,6 +8735,6 @@ msgstr "La tua risposta è stata pubblicata"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "La tua segnalazione verrà inviata al Servizio Moderazione di Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Il tuo handle utente"
diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po
index e5ea1427ec..8bfc547cbe 100644
--- a/src/locale/locales/ja/messages.po
+++ b/src/locale/locales/ja/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-07-24 09:47+0900\n"
+"PO-Revision-Date: 2024-08-23 13:21+0900\n"
"Last-Translator: tkusano\n"
"Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n"
"Plural-Forms: \n"
@@ -21,7 +21,8 @@ msgstr "(埋め込みコンテンツあり)"
msgid "(no email)"
msgstr "(メールがありません)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, other {他{formattedCount}人}}"
@@ -33,7 +34,7 @@ msgstr "{0, plural, other {#個のラベルがこのアカウントに適用さ
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, other {#個のラベルがこのコンテンツに適用されています}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, other {#回のリポスト}}"
@@ -47,16 +48,16 @@ msgstr "{0, plural, other {フォロワー}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, other {フォロー中}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, other {いいね(#個のいいね)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, other {いいね}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, other {#人のユーザーがいいね}}"
@@ -64,27 +65,41 @@ msgstr "{0, plural, other {#人のユーザーがいいね}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, other {投稿}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr "{0, plural, other {引用}}"
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, other {返信(#件の返信)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, other {リポスト}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, other {いいねを外す(#個のいいね)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr "<0><1>タグ1>中の0>{0}"
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "<0><1>テキストとタグ1>中の0>{0}"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "今週、{0}人が参加しました"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0}人がこのスターターパックを使用しました!"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "{0}のアバター"
@@ -120,7 +135,7 @@ msgstr "{diff, plural, other {ヶ月}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, other {秒}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "{displayName}のスターターパック"
@@ -147,7 +162,7 @@ msgstr "{handle}にメッセージを送れません"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, other {#人のユーザーがいいね}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications}件の未読"
@@ -159,14 +174,6 @@ msgstr "{profileName}はBlueskyに{0}前に参加しました"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName}はスターターパックを使って{0}前に参加しました"
-#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {すべての返信を表示} other {#個以上のいいねがついた返信を表示}}"
-
-#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/>のメンバー"
-
#: src/screens/StarterPack/Wizard/index.tsx:466
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -177,11 +184,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}、1>そして{2, plural, other {他#フィード}}があなたのスターターパックに含まれています"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, other {フォロワー}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, other {フォロー}}"
@@ -193,6 +200,10 @@ msgstr "<0>{0}0>と<2>{1}2>はあなたのスターターパックに含ま
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0>はあなたのスターターパックに含まれています"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr "<0>{0}0>のメンバー"
+
#: src/view/com/modals/SelfLabel.tsx:135
msgid "<0>Not Applicable.0> This warning is only available for posts with media attached."
msgstr "<0>適用できません。0> この警告はメディアが添付された投稿にのみ利用可能です。"
@@ -205,15 +216,27 @@ msgstr "<0>あなた0>と<1>1><2>{0}2>はあなたのスターターパッ
msgid "⚠Invalid Handle"
msgstr "⚠無効なハンドル"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr "24時間"
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "2要素認証の確認"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr "30日"
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr "7日"
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr "ヘルプ・ツールチップ"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "ナビゲーションリンクと設定にアクセス"
@@ -223,22 +246,22 @@ msgid "Access profile and other navigation links"
msgstr "プロフィールと他のナビゲーションリンクにアクセス"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "アクセシビリティ"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "アクセシビリティの設定"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "アクセシビリティの設定"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "アカウント"
@@ -254,20 +277,20 @@ msgstr "アカウントをフォローしました"
msgid "Account muted"
msgstr "アカウントをミュートしました"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "ミュート中のアカウント"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "リストによってミュート中のアカウント"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "アカウントオプション"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "クイックアクセスからアカウントを解除"
@@ -284,10 +307,10 @@ msgstr "アカウントのフォローを解除しました"
msgid "Account unmuted"
msgstr "アカウントのミュートを解除しました"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "追加"
@@ -303,14 +326,14 @@ msgstr "{displayName}をスターターパックに加える"
msgid "Add a content warning"
msgstr "コンテンツの警告を追加"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "リストにユーザーを追加"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "アカウントを追加"
@@ -329,11 +352,11 @@ msgstr "ALTテキストを追加"
msgid "Add App Password"
msgstr "アプリパスワードを追加"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "ミュートするワードを設定に追加"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "ミュートするワードとタグを追加"
@@ -353,7 +376,7 @@ msgstr "フォローしているユーザーのみのデフォルトのフィー
msgid "Add the following DNS record to your domain:"
msgstr "次のDNSレコードをドメインに追加してください:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "このフィードをあなたのフィードに追加する"
@@ -362,29 +385,26 @@ msgstr "このフィードをあなたのフィードに追加する"
msgid "Add to Lists"
msgstr "リストに追加"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "マイフィードに追加"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "リストに追加"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "マイフィードに追加"
-#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "返信がフィードに表示されるために必要ないいねの数を調整します。"
-
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "成人向けコンテンツ"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "成人向けコンテンツは<0>bsky.app0>のウェブ版からしか有効にできません。"
@@ -392,20 +412,20 @@ msgstr "成人向けコンテンツは<0>bsky.app0>のウェブ版からしか
msgid "Adult content is disabled."
msgstr "成人向けコンテンツは無効になっています。"
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "高度な設定"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr "アルゴリズムのトレーニング完了!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "すべてのアカウントをフォローしました!"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "保存したすべてのフィードを1箇所にまとめます。"
@@ -419,6 +439,14 @@ msgstr "ダイレクトメッセージへのアクセスを許可"
msgid "Allow new messages from"
msgstr "新しいメッセージを誰から受け取れるか:"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr "誰が返信できるか:"
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr "ダイレクトメッセージへのアクセスを許可"
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -436,7 +464,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "ALTテキスト"
@@ -457,23 +485,37 @@ msgstr "メールが{0}に送信されました。以下に入力できる確認
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "以前のメールアドレス{0}にメールが送信されました。以下に入力できる確認コードがそのメールに記載されています。"
-#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr "エラーが発生しました"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr "エラーが発生しました"
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "スターターパックの生成中にエラーが発生しました。再度試しますか?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr "ビデオの読み込み時にエラーが発生しました。時間をおいてもう一度お試しください。"
+
#: src/components/StarterPack/QrCodeDialog.tsx:71
#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QRコードの保存中にエラーが発生しました!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "すべてフォローしようとしたらエラーが発生しました"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr "ビデオのアップロード中にエラーが発生しました。"
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "ほかの選択肢にはあてはまらない問題"
@@ -488,21 +530,25 @@ msgstr "チャットを開始しようとした時に問題が発生しました
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "問題が発生しました。もう一度お試しください。"
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "何らかのエラーが発生しました"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr "不明なラベラー"
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "および"
@@ -519,6 +565,10 @@ msgstr "アニメーションGIF"
msgid "Anti-Social Behavior"
msgstr "反社会的な行動"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr "誰でも反応可能"
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "アプリの言語"
@@ -535,26 +585,26 @@ msgstr "アプリパスワードの名前には、英数字、スペース、ハ
msgid "App Password names must be at least 4 characters long."
msgstr "アプリパスワードの名前は長さが4文字以上である必要があります。"
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "アプリパスワードの設定"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "アプリパスワード"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "異議を申し立てる"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "「{0}」のラベルに異議を申し立てる"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "異議申し立てを提出しました"
@@ -566,10 +616,19 @@ msgstr "異議申し立てを提出しました"
msgid "Appeal this decision"
msgstr "この決定に異議を申し立てる"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "背景"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr "背景の設定"
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr "背景の設定"
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -583,7 +642,7 @@ msgstr "アプリパスワード「{name}」を本当に削除しますか?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "このメッセージを本当に削除しますか?このメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr "本当にこのスターターパックを削除したいですか?"
@@ -591,19 +650,19 @@ msgstr "本当にこのスターターパックを削除したいですか?"
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。"
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "あなたのフィードから{0}を削除してもよろしいですか?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "本当にこのフィードをあなたのフィードから削除したいですか?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "本当にこの下書きを破棄しますか?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "本当によろしいですか?"
@@ -620,13 +679,13 @@ msgstr "アート"
msgid "Artistic or non-erotic nudity."
msgstr "芸術的または性的ではないヌード。"
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "少なくとも3文字"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -639,12 +698,12 @@ msgstr "少なくとも3文字"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "戻る"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "基本"
@@ -652,7 +711,7 @@ msgstr "基本"
msgid "Birthday"
msgstr "生年月日"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "生年月日:"
@@ -675,28 +734,27 @@ msgstr "アカウントをブロック"
msgid "Block Account?"
msgstr "アカウントをブロックしますか?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "アカウントをブロック"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "リストをブロック"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "これらのアカウントをブロックしますか?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "ブロックされています"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "ブロック中のアカウント"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "ブロック中のアカウント"
@@ -709,7 +767,7 @@ msgstr "ブロック中のアカウントは、あなたのスレッドでの返
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。あなたは相手のコンテンツを見ることができず、相手はあなたのコンテンツを見ることができなくなります。"
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "投稿をブロックしました。"
@@ -717,7 +775,7 @@ msgstr "投稿をブロックしました。"
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができます。"
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ブロックしたことは公開されます。ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。"
@@ -725,7 +783,7 @@ msgstr "ブロックしたことは公開されます。ブロック中のアカ
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができますが、このアカウントがあなたのスレッドに返信したり、やりとりをしたりといったことはできなくなります。"
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "ブログ"
@@ -746,7 +804,7 @@ msgstr "Blueskyは友達と一緒のほうが楽しい!"
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。"
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Blueskyはログアウトしたユーザーにあなたのプロフィールや投稿を表示しません。他のアプリはこのリクエストに応じない場合があります。この設定はあなたのアカウントを非公開にするものではありません。"
@@ -763,21 +821,23 @@ msgstr "画像のぼかしとフィードからのフィルタリング"
msgid "Books"
msgstr "書籍"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr "検索ページでさらにアカウントを見る"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr "検索ページでさらにフィードを見る"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr "さらにおすすめを見る"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr "検索ページでさらにおすすめを見る"
@@ -786,11 +846,11 @@ msgstr "検索ページでさらにおすすめを見る"
msgid "Browse other feeds"
msgstr "他のフィードを見る"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "ビジネス"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "作成者:-"
@@ -798,15 +858,15 @@ msgstr "作成者:-"
msgid "By {0}"
msgstr "作成者:{0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "作成者:<0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "アカウントを作成することで、{els}に同意したものとみなされます。"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "作成者:あなた"
@@ -818,13 +878,13 @@ msgstr "カメラ"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "英数字、スペース、ハイフン、アンダースコアのみが使用可能です。長さは4文字以上32文字以下である必要があります。"
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -840,9 +900,8 @@ msgstr "英数字、スペース、ハイフン、アンダースコアのみが
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "キャンセル"
@@ -870,7 +929,7 @@ msgstr "画像の切り抜きをキャンセル"
msgid "Cancel profile editing"
msgstr "プロフィールの編集をキャンセル"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "引用をキャンセル"
@@ -879,7 +938,6 @@ msgid "Cancel reactivation and log out"
msgstr "再有効化をキャンセルしてログアウト"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "検索をキャンセル"
@@ -891,17 +949,17 @@ msgstr "リンク先のウェブサイトを開くことをキャンセル"
msgid "Change"
msgstr "変更"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "変更"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "ハンドルを変更"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "ハンドルを変更"
@@ -909,12 +967,12 @@ msgstr "ハンドルを変更"
msgid "Change my email"
msgstr "メールアドレスを変更"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "パスワードを変更"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "パスワードを変更"
@@ -926,7 +984,7 @@ msgstr "投稿の言語を{0}に変更します"
msgid "Change Your Email"
msgstr "メールアドレスを変更"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -938,14 +996,14 @@ msgstr "チャットをミュートしました"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "チャットの設定"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "チャットの設定"
@@ -966,15 +1024,15 @@ msgstr "確認コードが記載されたメールを確認し、ここに入力
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "入力したメールアドレスの受信トレイを確認して、以下に入力するための確認コードが記載されたメールが届いていないか確認してください:"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr "3つ以上選んでください:"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr "少なくともさらに{0}つ選んでください"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "フィードの選択"
@@ -982,7 +1040,7 @@ msgstr "フィードの選択"
msgid "Choose for me"
msgstr "私向けに選んで"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "ユーザーの選択"
@@ -990,7 +1048,7 @@ msgstr "ユーザーの選択"
msgid "Choose Service"
msgstr "サービスを選択"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "カスタムフィードのアルゴリズムを選択できます。"
@@ -998,28 +1056,15 @@ msgstr "カスタムフィードのアルゴリズムを選択できます。"
msgid "Choose this color as your avatar"
msgstr "この色をアバターとして選択"
-#: src/components/dialogs/ThreadgateEditor.tsx:91
-#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "誰が返信できるかを選択"
-
#: src/screens/Signup/StepInfo/index.tsx:171
msgid "Choose your password"
msgstr "パスワードを入力"
-#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "レガシーストレージデータをすべてクリア"
-
-#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "すべてのレガシーストレージデータをクリア(このあと再起動します)"
-
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "すべてのストレージデータをクリア"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "すべてのストレージデータをクリア(このあと再起動します)"
@@ -1028,11 +1073,7 @@ msgstr "すべてのストレージデータをクリア(このあと再起動
msgid "Clear search query"
msgstr "検索クエリをクリア"
-#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "すべてのレガシーストレージデータをクリア"
-
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "すべてのストレージデータをクリア"
@@ -1048,10 +1089,18 @@ msgstr "アカウントの無効化について詳しくはこちらをクリッ
msgid "Click here for more information."
msgstr "詳しい情報についてはここをクリック。"
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "{tag}のタグメニューをクリックして表示"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr "クリックしてこの投稿の引用投稿を無効に。"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr "クリックしてこの投稿の引用投稿を有効に。"
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "送信失敗したメッセージを再送信"
@@ -1065,12 +1114,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "パカラッ 🐴 パカラッ 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1091,7 +1140,7 @@ msgid "Close bottom drawer"
msgstr "一番下の引き出しを閉じる"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "ダイアログを閉じる"
@@ -1115,8 +1164,8 @@ msgstr "モーダルを閉じる"
msgid "Close navigation footer"
msgstr "ナビゲーションフッターを閉じる"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "このダイアログを閉じる"
@@ -1128,7 +1177,7 @@ msgstr "下部のナビゲーションバーを閉じる"
msgid "Closes password update alert"
msgstr "パスワード更新アラートを閉じる"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "投稿の編集画面を閉じて下書きを削除する"
@@ -1136,11 +1185,11 @@ msgstr "投稿の編集画面を閉じて下書きを削除する"
msgid "Closes viewer for header image"
msgstr "ヘッダー画像のビューワーを閉じる"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "ユーザーリストを折りたたむ"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "指定した通知のユーザーリストを折りたたむ"
@@ -1154,27 +1203,31 @@ msgstr "コメディー"
msgid "Comics"
msgstr "漫画"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
-msgstr "コミュニティーガイドライン"
+msgstr "コミュニティガイドライン"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "初期設定を完了してアカウントを使い始める"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "テストをクリアしてください"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "{MAX_GRAPHEME_LENGTH}文字までの投稿を作成"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "返信を作成"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr "圧縮中…"
+
#: src/components/moderation/LabelPreference.tsx:81
msgid "Configure content filtering setting for category: {name}"
msgstr "このカテゴリのコンテンツフィルタリングを設定:{name}"
@@ -1206,11 +1259,11 @@ msgstr "コンテンツの言語設定を確認"
msgid "Confirm delete account"
msgstr "アカウントの削除を確認"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "年齢の確認:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "生年月日の確認"
@@ -1228,7 +1281,8 @@ msgstr "確認コード"
msgid "Connecting..."
msgstr "接続中…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "サポートに連絡"
@@ -1236,24 +1290,24 @@ msgstr "サポートに連絡"
msgid "Content Blocked"
msgstr "ブロックされたコンテンツ"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "コンテンツのフィルター"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "コンテンツの言語"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "コンテンツはありません"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "コンテンツの警告"
@@ -1265,7 +1319,7 @@ msgstr "コンテンツの警告"
msgid "Context menu backdrop, click to close the menu."
msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。"
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "続行"
@@ -1278,7 +1332,7 @@ msgstr "{0}として続行(現在サインイン中)"
msgid "Continue thread..."
msgstr "スレッドの続き…"
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1297,7 +1351,7 @@ msgstr "料理"
msgid "Copied"
msgstr "コピーしました"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "ビルドバージョンをクリップボードにコピーしました"
@@ -1305,8 +1359,8 @@ msgstr "ビルドバージョンをクリップボードにコピーしました
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "クリップボードにコピーしました"
@@ -1340,12 +1394,12 @@ msgstr "リンクをコピー"
msgid "Copy Link"
msgstr "リンクをコピー"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "リストへのリンクをコピー"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "投稿へのリンクをコピー"
@@ -1354,8 +1408,8 @@ msgstr "投稿へのリンクをコピー"
msgid "Copy message text"
msgstr "メッセージのテキストをコピー"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "投稿のテキストをコピー"
@@ -1363,15 +1417,11 @@ msgstr "投稿のテキストをコピー"
msgid "Copy QR code"
msgstr "QRコードをコピー"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "著作権ポリシー"
-#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr "ビデオを圧縮できませんでした"
-
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
msgstr "チャットからの退出に失敗しました"
@@ -1380,7 +1430,7 @@ msgstr "チャットからの退出に失敗しました"
msgid "Could not load feed"
msgstr "フィードの読み込みに失敗しました"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "リストの読み込みに失敗しました"
@@ -1397,7 +1447,7 @@ msgstr "作成"
msgid "Create a new account"
msgstr "新しいアカウントを作成"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "新しいBlueskyアカウントを作成"
@@ -1407,7 +1457,7 @@ msgstr "スターターパックのQRコードを作成"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "スターターパックを作成"
@@ -1415,7 +1465,7 @@ msgstr "スターターパックを作成"
msgid "Create a starter pack for me"
msgstr "私向けのスターターパックを作成"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "アカウントを作成"
@@ -1463,26 +1513,34 @@ msgstr "カスタム"
msgid "Custom domain"
msgstr "カスタムドメイン"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
-msgstr "コミュニティーによって作成されたカスタムフィードは、あなたに新しい体験をもたらし、あなたが好きなコンテンツを見つけるのに役立ちます。"
+msgstr "コミュニティによって作成されたカスタムフィードは、あなたに新しい体験をもたらし、あなたが好きなコンテンツを見つけるのに役立ちます。"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "外部サイトのメディアをカスタマイズします。"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr "この投稿に誰が反応できるかカスタマイズする。"
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "ダーク"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "ダークモード"
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr "ダークテーマ"
#: src/screens/Signup/StepInfo/index.tsx:191
@@ -1490,15 +1548,15 @@ msgid "Date of birth"
msgstr "生年月日"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "アカウントを無効化"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "アカウントを無効化"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "モデレーションをデバッグ"
@@ -1507,16 +1565,16 @@ msgid "Debug panel"
msgstr "デバッグパネル"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "削除"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "アカウントを削除"
@@ -1532,8 +1590,8 @@ msgstr "アプリパスワードを削除"
msgid "Delete app password?"
msgstr "アプリパスワードを削除しますか?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "チャットの宣言レコードを削除"
@@ -1541,7 +1599,7 @@ msgstr "チャットの宣言レコードを削除"
msgid "Delete for me"
msgstr "自分宛を削除"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "リストを削除"
@@ -1557,41 +1615,41 @@ msgstr "メッセージの宛先から自分を削除"
msgid "Delete my account"
msgstr "アカウントを削除"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "アカウントを削除…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "投稿を削除"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "スターターパックを削除"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "スターターパックを削除しますか?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "このリストを削除しますか?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "この投稿を削除しますか?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "削除されています"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "投稿を削除しました。"
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "チャットの宣言レコードを削除する"
@@ -1606,11 +1664,25 @@ msgstr "説明"
msgid "Descriptive alt text"
msgstr "説明的なALTテキスト"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr "引用を切り離す"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr "引用投稿を切り離しますか?"
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr "ダイアログ:この投稿に誰が反応できるか調整"
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "なにか言いたいことはあった?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "グレー"
@@ -1618,7 +1690,7 @@ msgstr "グレー"
msgid "Direct messages are here!"
msgstr "ダイレクトメッセージはこちら!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "GIFを自動再生しない"
@@ -1626,29 +1698,33 @@ msgstr "GIFを自動再生しない"
msgid "Disable Email 2FA"
msgstr "メールでの2要素認証を無効化"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "触覚フィードバックを無効化"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr "サブタイトル(字幕)を無効にする"
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "無効"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "破棄"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "下書きを削除しますか?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "アプリがログアウトしたユーザーに自分のアカウントを表示しないようにする"
@@ -1661,19 +1737,27 @@ msgstr "Discoverは閲覧中にどの投稿が好みなのかを学習します
msgid "Discover new custom feeds"
msgstr "新しいカスタムフィードを見つける"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "新しいフィードを探す"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "新しいフィードを探す"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr "消す"
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr "エラーを消す"
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr "入門ガイドを消す"
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "大きなALTテキストのバッジを表示"
@@ -1689,11 +1773,15 @@ msgstr "表示名"
msgid "DNS Panel"
msgstr "DNSパネルがある場合"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr "このミュートワードはフォローしているユーザーには適用しない"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "ヌードは含まれません。"
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "ハイフンで始まったり終ったりしない"
@@ -1707,7 +1795,6 @@ msgstr "ドメインを確認しました!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1726,8 +1813,8 @@ msgstr "完了"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "完了"
@@ -1736,7 +1823,7 @@ msgstr "完了"
msgid "Done{extraText}"
msgstr "完了{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "Blueskyをダウンロード"
@@ -1749,6 +1836,10 @@ msgstr "CARファイルをダウンロード"
msgid "Drop to add images"
msgstr "ドロップして画像を追加する"
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr "期間:"
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "例:太郎"
@@ -1789,11 +1880,11 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "編集"
@@ -1802,12 +1893,12 @@ msgctxt "action"
msgid "Edit"
msgstr "編集"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "アバターを編集"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "フィードを編集"
@@ -1816,7 +1907,12 @@ msgstr "フィードを編集"
msgid "Edit image"
msgstr "画像を編集"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr "反応関連の設定を編集"
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "リストの詳細を編集"
@@ -1824,10 +1920,10 @@ msgstr "リストの詳細を編集"
msgid "Edit Moderation List"
msgstr "モデレーションリストを編集"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "マイフィードを編集"
@@ -1835,10 +1931,15 @@ msgstr "マイフィードを編集"
msgid "Edit my profile"
msgstr "マイプロフィールを編集"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "ユーザーを編集"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr "投稿への反応の設定を編集"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1849,7 +1950,7 @@ msgstr "プロフィールを編集"
msgid "Edit Profile"
msgstr "プロフィールを編集"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "スターターパックを編集"
@@ -1857,7 +1958,7 @@ msgstr "スターターパックを編集"
msgid "Edit User List"
msgstr "ユーザーリストを編集"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "誰が返信できるのかを編集"
@@ -1869,7 +1970,7 @@ msgstr "あなたの表示名を編集します"
msgid "Edit your profile description"
msgstr "あなたのプロフィールの説明を編集します"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "スターターパックを編集"
@@ -1878,10 +1979,6 @@ msgstr "スターターパックを編集"
msgid "Education"
msgstr "教育"
-#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "「全員」か「返信不可」を選択"
-
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
msgid "Email"
@@ -1908,7 +2005,7 @@ msgstr "メールアドレスは更新されました"
msgid "Email verified"
msgstr "メールアドレスは認証されました"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "メールアドレス:"
@@ -1917,8 +2014,8 @@ msgid "Embed HTML code"
msgstr "HTMLコードを埋め込む"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "投稿を埋め込む"
@@ -1930,7 +2027,7 @@ msgstr "この投稿をあなたのウェブサイトに埋め込みます。以
msgid "Enable {0} only"
msgstr "{0}のみ有効にする"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "成人向けコンテンツを有効にする"
@@ -1939,18 +2036,18 @@ msgstr "成人向けコンテンツを有効にする"
msgid "Enable external media"
msgstr "外部メディアを有効にする"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "有効にするメディアプレイヤー"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
-msgstr ""
+msgstr "優先通知を有効にする"
-#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "この設定を有効にすると、自分がフォローしているユーザーからの返信だけが表示されます。"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr "サブタイトル(字幕)を有効にする"
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -1958,11 +2055,11 @@ msgstr "このソースのみ有効にする"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "有効"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "フィードの終わり"
@@ -1978,8 +2075,8 @@ msgstr "このアプリパスワードの名前を入力"
msgid "Enter a password"
msgstr "パスワードを入力"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "ワードまたはタグを入力"
@@ -2024,25 +2121,27 @@ msgstr "ユーザー名とパスワードを入力してください"
msgid "Error occurred while saving file"
msgstr "ファイルの保存中にエラーが発生しました"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Captchaレスポンスの受信中にエラーが発生しました。"
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "エラー:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "全員"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "誰でも返信可能"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr "この投稿に全員が返信できる。"
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2058,6 +2157,14 @@ msgstr "過剰なメンションや返信"
msgid "Excessive or unwanted messages"
msgstr "多すぎる、または不要なメッセージ"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr "フォローしているユーザーは除外"
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr "フォローしているユーザーは除外"
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "アカウントの削除処理を終了"
@@ -2075,7 +2182,6 @@ msgid "Exits image view"
msgstr "画像表示を終了"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "検索クエリの入力を終了"
@@ -2083,7 +2189,7 @@ msgstr "検索クエリの入力を終了"
msgid "Expand alt text"
msgstr "ALTテキストを展開"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "ユーザーリストを展開"
@@ -2094,7 +2200,15 @@ msgstr "返信する投稿全体を展開または折りたたむ"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
-msgstr ""
+msgstr "実験的機能: この設定を有効にすると、フォローしているユーザーからの返信と引用通知のみを受け取るようになります。今後、いろんなコントロールを追加していきます。"
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr "期限切れ"
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr "期限:{0}"
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
@@ -2104,12 +2218,12 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。
msgid "Explicit sexual images."
msgstr "露骨な性的画像。"
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "私のデータをエクスポートする"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "私のデータをエクスポートする"
@@ -2119,17 +2233,17 @@ msgid "External Media"
msgstr "外部メディア"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "外部メディアを有効にすると、それらのメディアのウェブサイトがあなたやお使いのデバイスに関する情報を収集する場合があります。その場合でも、あなたが「再生」ボタンを押すまで情報は送信されず、要求もされません。"
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "外部メディアの設定"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "外部メディアの設定"
@@ -2138,8 +2252,8 @@ msgstr "外部メディアの設定"
msgid "Failed to create app password."
msgstr "アプリパスワードの作成に失敗しました。"
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "スターターパックの作成に失敗しました"
@@ -2151,16 +2265,16 @@ msgstr "リストの作成に失敗しました。インターネットへの接
msgid "Failed to delete message"
msgstr "メッセージの削除に失敗しました"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "投稿の削除に失敗しました。もう一度お試しください。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "スターターパックの削除に失敗しました"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "フィードの設定の読み込みに失敗しました"
@@ -2173,12 +2287,12 @@ msgstr "GIFの読み込みに失敗しました"
msgid "Failed to load past messages"
msgstr "過去のメッセージの読み込みに失敗しました"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "おすすめのフィードの読み込みに失敗しました"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "おすすめのフォローの読み込みに失敗しました"
@@ -2188,22 +2302,22 @@ msgstr "画像の保存に失敗しました:{0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "通知の設定の保存に失敗しました。再度試してください"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
msgstr "送信に失敗"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "異議申し立ての送信に失敗しました。再度試してください。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "スレッドのミュートの切り替えに失敗しました。再度試してください"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "フィードの更新に失敗しました"
@@ -2212,41 +2326,41 @@ msgstr "フィードの更新に失敗しました"
msgid "Failed to update settings"
msgstr "設定の更新に失敗しました"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "フィード"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "{0}によるフィード"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Feed toggle"
-msgstr "フィードの切替"
+msgstr "フィードの切り替え"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "フィードバック"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "フィード"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "フィードはユーザーがプログラミングの専門知識を持って構築するカスタムアルゴリズムです。詳細については、<0/>を参照してください。"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "フィードを更新しました!"
@@ -2262,7 +2376,7 @@ msgstr "ファイルの保存に成功しました!"
msgid "Filter from feeds"
msgstr "フィードからのフィルター"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "最後に"
@@ -2280,7 +2394,7 @@ msgstr "検索ページでフォローすべきフィードやアカウントを
msgid "Find posts and users on Bluesky"
msgstr "投稿やユーザーをBlueskyで検索"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Followingフィードに表示されるコンテンツを調整します。"
@@ -2288,7 +2402,7 @@ msgstr "Followingフィードに表示されるコンテンツを調整します
msgid "Fine-tune the discussion threads."
msgstr "ディスカッションスレッドを微調整します。"
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "完了"
@@ -2300,7 +2414,7 @@ msgstr "ツアーを終了してアプリを使用開始"
msgid "Fitness"
msgstr "フィットネス"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "柔軟です"
@@ -2314,12 +2428,11 @@ msgid "Flip vertically"
msgstr "垂直方向に反転"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "フォロー"
@@ -2333,7 +2446,7 @@ msgstr "フォロー"
msgid "Follow {0}"
msgstr "{0}をフォロー"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "{name}をフォロー"
@@ -2346,8 +2459,8 @@ msgstr "7アカウントをフォロー"
msgid "Follow Account"
msgstr "アカウントをフォロー"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "すべてフォロー"
@@ -2355,7 +2468,7 @@ msgstr "すべてフォロー"
msgid "Follow Back"
msgstr "フォローバック"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "もっとたくさんのアカウントをフォローして、興味あることにつながり、ネットワークを広げましょう。"
@@ -2375,19 +2488,15 @@ msgstr "<0>{0}0>と<1>{1}1>がフォロー中"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>、<1>{1}1>および{2, plural, other {他#人}}がフォロー中"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "自分がフォローしているユーザー"
-#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "自分がフォローしているユーザーのみ"
-
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "があなたをフォローしました"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr "があなたをフォローバックしました"
@@ -2396,7 +2505,7 @@ msgstr "があなたをフォローバックしました"
msgid "Followers"
msgstr "フォロワー"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "あなたが知っている@{0}のフォロワー"
@@ -2406,34 +2515,34 @@ msgid "Followers you know"
msgstr "あなたが知っているフォロワー"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "フォロー中"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "{0}をフォローしています"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "{name}をフォローしています"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Followingフィードの設定"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Followingフィードの設定"
@@ -2445,7 +2554,7 @@ msgstr "Followingはフォローしてるユーザーの最新の投稿を表示
msgid "Follows you"
msgstr "あなたをフォロー"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "あなたをフォロー"
@@ -2462,6 +2571,10 @@ msgstr "セキュリティ上の理由から、あなたのメールアドレス
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "セキュリティ上の理由から、これを再度表示することはできません。このパスワードを紛失した場合は、新しいパスワードを生成する必要があります。"
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr "永久"
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2483,7 +2596,7 @@ msgstr "望ましくないコンテンツを頻繁に投稿"
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor}による"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>から"
@@ -2496,7 +2609,7 @@ msgstr "ギャラリー"
msgid "Generate a starter pack"
msgstr "スターターパックを生成"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr "ヘルプを表示"
@@ -2525,37 +2638,38 @@ msgstr "プロフィールに顔をつける"
msgid "Glaring violations of law or terms of service"
msgstr "法律または利用規約への明らかな違反"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "戻る"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "戻る"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "前のステップに戻る"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "前のステップに戻る"
@@ -2592,7 +2706,7 @@ msgstr "ユーザーのプロフィールへ移動"
msgid "Graphic Media"
msgstr "生々しいメディア"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr "半分まで来ました!"
@@ -2600,7 +2714,7 @@ msgstr "半分まで来ました!"
msgid "Handle"
msgstr "ハンドル"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "触覚フィードバック"
@@ -2608,7 +2722,7 @@ msgstr "触覚フィードバック"
msgid "Harassment, trolling, or intolerance"
msgstr "嫌がらせ、荒らし、不寛容"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "ハッシュタグ"
@@ -2616,12 +2730,12 @@ msgstr "ハッシュタグ"
msgid "Hashtag: #{tag}"
msgstr "ハッシュタグ:#{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "なにか問題が発生しましたか?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "ヘルプ"
@@ -2633,6 +2747,10 @@ msgstr "画像をアップロードするかアバターを作ってあなたが
msgid "Here is your app password."
msgstr "アプリパスワードをお知らせします。"
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr "非表示のリスト"
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2640,30 +2758,45 @@ msgstr "アプリパスワードをお知らせします。"
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "非表示"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "非表示"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:390
-#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "投稿を非表示"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr "投稿を自分には非表示"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr "返信を全員に非表示"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr "返信を自分には非表示"
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "コンテンツを非表示"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "この投稿を非表示にしますか?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr "この返信を非表示にしますか?"
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "ユーザーリストを非表示"
@@ -2695,12 +2828,12 @@ msgstr "このデータの読み込みに問題があるようです。詳細は
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "そのモデレーションサービスを読み込めませんでした。"
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "ホーム"
@@ -2733,7 +2866,7 @@ msgstr "確認コードを持っています"
msgid "I have my own domain"
msgstr "自分のドメインを持っています"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "理解した"
@@ -2746,15 +2879,15 @@ msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り
msgid "If none are selected, suitable for all ages."
msgstr "なにも選択しない場合は、全年齢対象です。"
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "あなたがお住いの国の法律においてまだ成人していない場合は、親権者または法定後見人があなたに代わって本規約をお読みください。"
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "このリストを削除すると、復元できなくなります。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "この投稿を削除すると、復元できなくなります。"
@@ -2826,10 +2959,14 @@ msgstr "あなたのパスワードを入力"
msgid "Input your preferred hosting provider"
msgstr "ご希望のホスティングプロバイダーを入力"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "あなたのユーザーハンドルを入力"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr "反応が制限されています"
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "ダイレクトメッセージの紹介"
@@ -2839,7 +2976,7 @@ msgstr "ダイレクトメッセージの紹介"
msgid "Invalid 2FA confirmation code."
msgstr "無効な2要素認証の確認コードです。"
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "無効またはサポートされていない投稿のレコード"
@@ -2855,7 +2992,7 @@ msgstr "友達を招待"
msgid "Invite code"
msgstr "招待コード"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "招待コードが確認できません。正しく入力されていることを確認し、もう一度実行してください。"
@@ -2883,14 +3020,14 @@ msgstr "招待、ただし個人的なもの"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。"
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "仕事"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "Blueskyに参加"
@@ -2919,11 +3056,11 @@ msgstr "ラベル"
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "ラベルは、ユーザーやコンテンツに対する注釈です。ラベルはネットワークを隠したり、警告したり、分類したりするのに使われます。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "あなたのアカウントのラベル"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "あなたのコンテンツのラベル"
@@ -2931,16 +3068,16 @@ msgstr "あなたのコンテンツのラベル"
msgid "Language selection"
msgstr "言語の選択"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "言語の設定"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "言語の設定"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "言語"
@@ -2949,21 +3086,26 @@ msgstr "言語"
msgid "Latest"
msgstr "最新"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "詳細"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr "Blueskyについての詳細"
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "このコンテンツに適用されるモデレーションはこちらを参照してください。"
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "この警告の詳細"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Blueskyで公開されている内容はこちらを参照してください。"
@@ -3000,10 +3142,6 @@ msgstr "Blueskyから離れる"
msgid "left to go."
msgstr "あと少しです。"
-#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "レガシーストレージがクリアされたため、今すぐアプリを再起動する必要があります。"
-
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
msgstr "選ばせて"
@@ -3013,12 +3151,13 @@ msgstr "選ばせて"
msgid "Let's get your password reset!"
msgstr "パスワードをリセットしましょう!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "さあ始めましょう!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "ライト"
@@ -3026,8 +3165,8 @@ msgstr "ライト"
msgid "Like 10 posts"
msgstr "10投稿をいいね"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr "Discoverフィードを訓練するために10投稿をいいねする"
@@ -3037,22 +3176,23 @@ msgid "Like this feed"
msgstr "このフィードをいいね"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "いいねしたユーザー"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "いいねしたユーザー"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "があなたのカスタムフィードをいいねしました"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "があなたの投稿をいいねしました"
@@ -3060,11 +3200,11 @@ msgstr "があなたの投稿をいいねしました"
msgid "Likes"
msgstr "いいね"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "この投稿をいいねする"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "リスト"
@@ -3072,20 +3212,28 @@ msgstr "リスト"
msgid "List Avatar"
msgstr "リストのアバター"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "リストをブロックしました"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "{0}によるリスト"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "リストを削除しました"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr "リストは非表示です"
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr "非表示のリスト"
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "リストをミュートしました"
@@ -3093,20 +3241,20 @@ msgstr "リストをミュートしました"
msgid "List Name"
msgstr "リストの名前"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "リストのブロックを解除しました"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "リストのミュートを解除しました"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "リスト"
@@ -3130,10 +3278,10 @@ msgstr "おすすめのフォローをさらに読み込む"
msgid "Load new notifications"
msgstr "最新の通知を読み込む"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "最新の投稿を読み込む"
@@ -3141,7 +3289,7 @@ msgstr "最新の投稿を読み込む"
msgid "Loading..."
msgstr "読み込み中…"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "ログ"
@@ -3157,7 +3305,7 @@ msgstr "ログインまたはサインアップ"
msgid "Log out"
msgstr "ログアウト"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "ログアウトしたユーザーからの可視性"
@@ -3193,7 +3341,7 @@ msgstr "私のために作って"
msgid "Make sure this is where you intend to go!"
msgstr "意図した場所であることを確認してください!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "ミュートしたワードとタグの管理"
@@ -3202,20 +3350,20 @@ msgstr "ミュートしたワードとタグの管理"
msgid "Mark as read"
msgstr "既読にする"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "メディア"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "メンションされたユーザー"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "メンションされたユーザー"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "メニュー"
@@ -3246,7 +3394,7 @@ msgstr "メッセージが長すぎます"
msgid "Message settings"
msgstr "メッセージの設定"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3257,29 +3405,31 @@ msgstr "メッセージ"
msgid "Misleading Account"
msgstr "誤解を招くアカウント"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr "モード"
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "モデレーション"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "モデレーションの詳細"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "{0}の作成したモデレーションリスト"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "<0/>の作成したモデレーションリスト"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "あなたの作成したモデレーションリスト"
@@ -3291,20 +3441,24 @@ msgstr "モデレーションリストを作成しました"
msgid "Moderation list updated"
msgstr "モデレーションリストを更新しました"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "モデレーションリスト"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "モデレーションリスト"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr "モデレーションの設定"
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "モデレーションの設定"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "モデレーションのステータス"
@@ -3312,12 +3466,12 @@ msgstr "モデレーションのステータス"
msgid "Moderation tools"
msgstr "モデレーションのツール"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "モデレーターによりコンテンツに一般的な警告が設定されました。"
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "さらに"
@@ -3325,7 +3479,7 @@ msgstr "さらに"
msgid "More feeds"
msgstr "その他のフィード"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "その他のオプション"
@@ -3341,11 +3495,13 @@ msgstr "映画"
msgid "Music"
msgstr "音楽"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "ミュート"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "{truncatedTag}をミュート"
@@ -3354,11 +3510,11 @@ msgstr "{truncatedTag}をミュート"
msgid "Mute Account"
msgstr "アカウントをミュート"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "アカウントをミュート"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "{displayTag}のすべての投稿をミュート"
@@ -3367,49 +3523,61 @@ msgstr "{displayTag}のすべての投稿をミュート"
msgid "Mute conversation"
msgstr "会話をミュート"
-#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "タグのみをミュート"
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr "ミュート対象:"
-#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "テキストとタグをミュート"
-
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "リストをミュート"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "これらのアカウントをミュートしますか?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr "このワードを24時間ミュート"
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr "このワードを30日間ミュート"
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr "このワードを7日間ミュート"
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "投稿のテキストやタグでこのワードをミュート"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "タグのみでこのワードをミュート"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr "このワードをミュート解除するまでミュート"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "スレッドをミュート"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "ワードとタグをミュート"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "ミュートされています"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "ミュート中のアカウント"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "ミュート中のアカウント"
@@ -3418,7 +3586,7 @@ msgstr "ミュート中のアカウント"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "ミュート中のアカウントの投稿は、フィードや通知から取り除かれます。ミュートの設定は完全に非公開です。"
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "「{0}」によってミュート中"
@@ -3426,7 +3594,7 @@ msgstr "「{0}」によってミュート中"
msgid "Muted words & tags"
msgstr "ミュートしたワードとタグ"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "ミュートの設定は非公開です。ミュート中のアカウントはあなたと引き続き関わることができますが、そのアカウントの投稿や通知を受信することはできません。"
@@ -3435,7 +3603,7 @@ msgstr "ミュートの設定は非公開です。ミュート中のアカウン
msgid "My Birthday"
msgstr "生年月日"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "マイフィード"
@@ -3443,11 +3611,11 @@ msgstr "マイフィード"
msgid "My Profile"
msgstr "マイプロフィール"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "保存されたフィード"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "保存されたフィード"
@@ -3472,7 +3640,7 @@ msgstr "名前または説明がコミュニティ基準に違反"
msgid "Nature"
msgstr "自然"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr "{0}へ移動します"
@@ -3486,7 +3654,7 @@ msgstr "スターターパックへ移動します"
msgid "Navigates to the next screen"
msgstr "次の画面に移動します"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "あなたのプロフィールに移動します"
@@ -3494,7 +3662,7 @@ msgstr "あなたのプロフィールに移動します"
msgid "Need to report a copyright violation?"
msgstr "著作権侵害を報告する必要がありますか?"
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "フォロワーやデータへのアクセスを失うことはありません。"
@@ -3502,7 +3670,7 @@ msgstr "フォロワーやデータへのアクセスを失うことはありま
msgid "Nevermind, create a handle for me"
msgstr "気にせずにハンドルを作成"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "新規"
@@ -3538,12 +3706,12 @@ msgctxt "action"
msgid "New post"
msgstr "新しい投稿"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "新しい投稿"
@@ -3577,10 +3745,10 @@ msgstr "ニュース"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3591,17 +3759,17 @@ msgstr "次へ"
msgid "Next image"
msgstr "次の画像"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "いいえ"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "説明はありません"
@@ -3618,12 +3786,12 @@ msgstr "おすすめのGIFが見つかりません。Tenorに問題があるか
msgid "No feeds found. Try searching for something else."
msgstr "フィードが見つかりませんでした。他を探してみて。"
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "{0}のフォローを解除しました"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "253文字まで"
@@ -3635,7 +3803,7 @@ msgstr "メッセージはありません"
msgid "No more conversations to show"
msgstr "これ以上表示できる会話はありません"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "お知らせはありません!"
@@ -3646,6 +3814,10 @@ msgstr "お知らせはありません!"
msgid "No one"
msgstr "誰からも受け取らない"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr "投稿主だけがこの投稿を引用できます。"
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr "まだ投稿がありません。"
@@ -3659,11 +3831,11 @@ msgstr "結果はありません"
msgid "No results"
msgstr "結果はありません"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "結果は見つかりません"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "「{query}」の検索結果はありません"
@@ -3684,14 +3856,10 @@ msgstr "「{search}」の検索結果はありません。"
msgid "No thanks"
msgstr "結構です"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "返信不可"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "誰も返信できない"
-
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
msgid "Nobody has liked this yet. Maybe you should be the first!"
@@ -3705,7 +3873,7 @@ msgstr "誰も見つかりませんでした。他を探してみて。"
msgid "Non-sexual Nudity"
msgstr "性的ではないヌード"
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "見つかりません"
@@ -3716,12 +3884,12 @@ msgid "Not right now"
msgstr "今はしない"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "共有についての注意事項"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "注記:Blueskyはオープンでパブリックなネットワークです。この設定はBlueskyのアプリおよびウェブサイト上のみでのあなたのコンテンツの可視性を制限するものであり、他のアプリではこの設定を尊重しない場合があります。他のアプリやウェブサイトでは、ログアウトしたユーザーにあなたのコンテンツが表示される場合があります。"
@@ -3731,16 +3899,16 @@ msgstr "何もありません"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "通知フィルター"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "通知設定"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "通知設定"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -3750,14 +3918,14 @@ msgstr "通知音"
msgid "Notification Sounds"
msgstr "通知音"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "通知"
@@ -3782,14 +3950,14 @@ msgid "Off"
msgstr "オフ"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "ちょっと!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
-msgstr "ちょっと!なにかがおかしいです。"
+msgstr "ちょっと!何らかの問題が発生したようです。"
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339
msgid "OK"
@@ -3811,7 +3979,7 @@ msgstr "on"
msgid "on {str}"
msgstr "{str}"
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "オンボーディングのリセット"
@@ -3819,7 +3987,7 @@ msgstr "オンボーディングのリセット"
msgid "Onboarding tour step {0}: {1}"
msgstr "オンボーディングツアー ステップ {0}:{1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "1つもしくは複数の画像にALTテキストがありません。"
@@ -3827,19 +3995,19 @@ msgstr "1つもしくは複数の画像にALTテキストがありません。
msgid "Only .jpg and .png files are supported"
msgstr ".jpgと.pngファイルのみに対応しています"
-#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "{0}のみ返信可能"
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "{0}のみ返信可能。"
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "英数字とハイフンのみ"
#: src/components/Lists.tsx:88
msgid "Oops, something went wrong!"
-msgstr "おっと、なにかが間違っているようです!"
+msgstr "おっと、何らかの問題が発生したようです!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -3848,11 +4016,11 @@ msgstr "おっと、なにかが間違っているようです!"
msgid "Oops!"
msgstr "おっと!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "開かれています"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "{name}のプロフィールのショートカットメニューを開く"
@@ -3865,8 +4033,8 @@ msgstr "アバター・クリエイターを開く"
msgid "Open conversation options"
msgstr "会話のオプションを開く"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "絵文字を入力"
@@ -3874,7 +4042,7 @@ msgstr "絵文字を入力"
msgid "Open feed options menu"
msgstr "フィードの設定メニューを開く"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "アプリ内ブラウザーでリンクを開く"
@@ -3890,20 +4058,20 @@ msgstr "ミュートしたワードとタグの設定を開く"
msgid "Open navigation"
msgstr "ナビゲーションを開く"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "投稿のオプションを開く"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "スターターパックのメニューを開く"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "絵本のページを開く"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "システムのログを開く"
@@ -3911,11 +4079,11 @@ msgstr "システムのログを開く"
msgid "Opens {numItems} options"
msgstr "{numItems}個のオプションを開く"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "このスレッドに誰が返信できるかを選択するダイアログを開く"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "アクセシビリティの設定を開く"
@@ -3923,19 +4091,23 @@ msgstr "アクセシビリティの設定を開く"
msgid "Opens additional details for a debug entry"
msgstr "デバッグエントリーの追加詳細を開く"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr "背景の設定を開く"
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "デバイスのカメラを開く"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "チャットの設定を開く"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "編集画面を開く"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "構成可能な言語設定を開く"
@@ -3943,7 +4115,7 @@ msgstr "構成可能な言語設定を開く"
msgid "Opens device photo gallery"
msgstr "デバイスのフォトギャラリーを開く"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "外部コンテンツの埋め込みの設定を開く"
@@ -3965,27 +4137,27 @@ msgstr "GIFの選択のダイアログを開く"
msgid "Opens list of invite codes"
msgstr "招待コードのリストを開く"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "アカウント無効化の確認のモーダルを開く"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "アカウントの削除確認用のモーダルを開きます。メールアドレスのコードが必要です"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Blueskyのパスワードを変更するためのモーダルを開く"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "新しいBlueskyのハンドルを選択するためのモーダルを開く"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Blueskyのアカウントのデータ(リポジトリ)をダウンロードするためのモーダルを開く"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "メールアドレスの認証のためのモーダルを開く"
@@ -3993,7 +4165,7 @@ msgstr "メールアドレスの認証のためのモーダルを開く"
msgid "Opens modal for using custom domain"
msgstr "カスタムドメインを使用するためのモーダルを開く"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "モデレーションの設定を開く"
@@ -4001,15 +4173,15 @@ msgstr "モデレーションの設定を開く"
msgid "Opens password reset form"
msgstr "パスワードリセットのフォームを開く"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "保存されたすべてのフィードで画面を開く"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "アプリパスワードの設定を開く"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Followingフィードの設定を開く"
@@ -4017,21 +4189,21 @@ msgstr "Followingフィードの設定を開く"
msgid "Opens the linked website"
msgstr "リンク先のウェブサイトを開く"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "ストーリーブックのページを開く"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "システムログのページを開く"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "スレッドの設定を開く"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "プロフィールを開く"
@@ -4044,11 +4216,15 @@ msgid "Option {0} of {numItems}"
msgstr "{numItems}個中{0}目のオプション"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "オプションとして、以下に追加情報をご記入ください:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr "オプション:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "または以下のオプションを組み合わせてください:"
@@ -4068,6 +4244,10 @@ msgstr "その他"
msgid "Other account"
msgstr "その他のアカウント"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr "その他のアカウント"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "その他…"
@@ -4076,7 +4256,7 @@ msgstr "その他…"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "モデレーターが報告をレビューし、Blueskyであなたがチャットにアクセスできないようにしました。"
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "ページが見つかりません"
@@ -4105,19 +4285,24 @@ msgid "Password updated!"
msgstr "パスワードが更新されました!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "一時停止"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr "ビデオを一時停止"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "ユーザー"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "@{0}がフォロー中のユーザー"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "@{0}をフォロー中のユーザー"
@@ -4131,7 +4316,7 @@ msgstr "カメラへのアクセスが拒否されました。システムの設
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
-msgstr "ユーザーを切替"
+msgstr "ユーザーを切り替え"
#: src/screens/Onboarding/index.tsx:28
#: src/screens/Onboarding/state.ts:94
@@ -4147,7 +4332,7 @@ msgid "Pictures meant for adults."
msgstr "成人向けの画像です。"
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "ホームにピン留め"
@@ -4159,11 +4344,12 @@ msgstr "ホームにピン留め"
msgid "Pinned Feeds"
msgstr "ピン留めされたフィード"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "フィードにピン留めしました"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "再生"
@@ -4175,6 +4361,11 @@ msgstr "{0}を再生"
msgid "Play or pause the GIF"
msgstr "GIFの再生や一時停止"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr "動画を再生"
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4184,16 +4375,16 @@ msgstr "動画を再生"
msgid "Plays the GIF"
msgstr "GIFを再生"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "ハンドルをお選びください。"
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "パスワードを選択してください。"
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Captcha認証を完了してください。"
@@ -4209,11 +4400,11 @@ msgstr "アプリパスワードにつける名前を入力してください。
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "このアプリパスワードに固有の名前を入力するか、ランダムに生成された名前を使用してください。"
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "ミュートにする有効な単語、タグ、フレーズを入力してください"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "メールアドレスを入力してください。"
@@ -4226,7 +4417,7 @@ msgstr "招待コードを入力してください。"
msgid "Please enter your password as well:"
msgstr "パスワードも入力してください:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "{0}によって適用されたこのラベルが誤りであると思われる理由を説明してください"
@@ -4243,7 +4434,7 @@ msgstr "@{0}としてサインインしてください"
msgid "Please Verify Your Email"
msgstr "メールアドレスを確認してください"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "リンクカードが読み込まれるまでお待ちください"
@@ -4256,45 +4447,50 @@ msgstr "政治"
msgid "Porn"
msgstr "ポルノ"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "投稿"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "投稿"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "{0}による投稿"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "@{0}による投稿"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "投稿を削除"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "投稿を非表示"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "ミュートしたワードによって投稿が表示されません"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "あなたが非表示にした投稿"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr "投稿への反応の設定"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "投稿の言語"
@@ -4303,23 +4499,23 @@ msgstr "投稿の言語"
msgid "Post Languages"
msgstr "投稿の言語"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "投稿が見つかりません"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "投稿"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "投稿"
-#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "投稿はテキスト、タグ、またはその両方に基づいてミュートできます。"
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr "投稿はテキスト、タグ、またはその両方に基づいてミュートできます。投稿が表示されなくなる可能性があるため、多くの投稿に使われる一般的なワードは避けることをおすすめします。"
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4331,7 +4527,7 @@ msgstr "誤解を招く可能性のあるリンク"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "設定を保存しました"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -4341,7 +4537,7 @@ msgstr "再接続してみる"
msgid "Press to change hosting provider"
msgstr "ホスティングプロバイダーを変える"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4356,7 +4552,7 @@ msgstr "あなたもフォローしているこのアカウントのフォロワ
msgid "Previous image"
msgstr "前の画像"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "第一言語"
@@ -4366,18 +4562,18 @@ msgstr "あなたのフォローを優先"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "優先通知"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "プライバシー"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "プライバシーポリシー"
@@ -4389,16 +4585,16 @@ msgstr "他のユーザーとプライベートにチャットします。"
msgid "Processing..."
msgstr "処理中…"
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "プロフィール"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "プロフィール"
@@ -4406,11 +4602,11 @@ msgstr "プロフィール"
msgid "Profile updated"
msgstr "プロフィールを更新しました"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "メールアドレスを確認してアカウントを保護します。"
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "公開されています"
@@ -4418,15 +4614,15 @@ msgstr "公開されています"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "ユーザーを一括でミュートまたはブロックする、公開された共有可能なリスト。"
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "フィードとして利用できる、公開された共有可能なリスト。"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "投稿を公開"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "返信を公開"
@@ -4446,13 +4642,46 @@ msgstr "QRコードをカメラロールに保存しました!"
msgid "Quick tip"
msgstr "クイック・チップ"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "引用"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr "引用投稿が再び関連付けられました"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr "引用投稿を切り離すことができました"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr "引用投稿は無効です"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr "引用投稿は有効です"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr "引用の設定"
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr "引用"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr "この投稿の引用"
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "ランダムな順番で表示(別名「投稿者のルーレット」)"
@@ -4461,15 +4690,32 @@ msgstr "ランダムな順番で表示(別名「投稿者のルーレット」
msgid "Ratios"
msgstr "比率"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr "引用を再度関連付ける"
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "あなたのアカウントを再有効化"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr "Blueskyのブログを読む"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr "Blueskyのプライバシーポリシーを読む"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr "Blueskyの利用規約を読む"
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "理由:"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "検索履歴"
@@ -4479,21 +4725,22 @@ msgstr "再接続"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "通知を更新"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "会話を再読み込み"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "削除"
@@ -4501,11 +4748,11 @@ msgstr "削除"
msgid "Remove {displayName} from starter pack"
msgstr "{displayName}をスターターパックから削除"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "アカウントを削除"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "アバターを削除"
@@ -4518,8 +4765,8 @@ msgid "Remove embed"
msgstr "埋め込みを削除"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "フィードを削除"
@@ -4527,19 +4774,27 @@ msgstr "フィードを削除"
msgid "Remove feed?"
msgstr "フィードを削除しますか?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "マイフィードから削除"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "マイフィードから削除しますか?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr "クイックアクセスから削除しますか?"
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr "保存フィードから削除"
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "イメージを削除"
@@ -4548,24 +4803,24 @@ msgstr "イメージを削除"
msgid "Remove image preview"
msgstr "イメージプレビューを削除"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "リストからミュートワードを削除"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "プロフィールを削除"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "検索履歴からプロフィールを削除する"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "引用を削除"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "リポストを削除"
@@ -4573,22 +4828,35 @@ msgstr "リポストを削除"
msgid "Remove this feed from your saved feeds"
msgstr "保存したフィードからこのフィードを削除"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr "投稿者が削除しました"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr "あなたが削除しました"
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "リストから削除されました"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "マイフィードから削除しました"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr "保存フィードから削除しました"
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "あなたのフィードから削除しました"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "引用を削除する"
@@ -4596,8 +4864,8 @@ msgstr "引用を削除する"
msgid "Removes the image preview"
msgstr "画像のプレビューを削除する"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Discoverで置き換える"
@@ -4605,40 +4873,67 @@ msgstr "Discoverで置き換える"
msgid "Replies"
msgstr "返信"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "返信できません"
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "このスレッドへの返信はできません"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr "この投稿への返信は無効化されています。"
-#: src/view/com/composer/Composer.tsx:507
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "返信"
-#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "返信のフィルター"
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr "返信はスレッドの投稿者によって非表示に"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr "返信はあなたによって非表示に"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr "返信の設定"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr "返信の設定はスレッドの投稿者によって選択されています"
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0>に返信"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "ブロックした投稿への返信"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr "投稿への返信"
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr "あなたへの返信"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr "表示・非表示の設定を更新しました"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr "返信を非表示にすることができました"
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -4665,7 +4960,7 @@ msgstr "報告ダイアログ"
msgid "Report feed"
msgstr "フィードを報告"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "リストを報告"
@@ -4673,13 +4968,13 @@ msgstr "リストを報告"
msgid "Report message"
msgstr "メッセージを報告"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "投稿を報告"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "スタータパックを報告"
@@ -4713,47 +5008,48 @@ msgstr "このスターターパックを報告"
msgid "Report this user"
msgstr "このユーザーを報告"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "リポスト"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "リポスト"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "リポストまたは引用"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "リポストしたユーザー"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "{0}にリポストされた"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0>がリポスト"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr "あなたのリポスト"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "があなたの投稿をリポストしました"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "この投稿をリポスト"
@@ -4767,7 +5063,7 @@ msgstr "変更を要求"
msgid "Request Code"
msgstr "コードをリクエスト"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "画像投稿時にALTテキストを必須とする"
@@ -4792,8 +5088,8 @@ msgstr "リセットコード"
msgid "Reset Code"
msgstr "リセットコード"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "オンボーディングの状態をリセット"
@@ -4801,16 +5097,16 @@ msgstr "オンボーディングの状態をリセット"
msgid "Reset password"
msgstr "パスワードをリセット"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "設定をリセット"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "オンボーディングの状態をリセットします"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "設定の状態をリセットします"
@@ -4824,23 +5120,26 @@ msgid "Retries the last action, which errored out"
msgstr "エラーになった最後のアクションをやり直す"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "再試行"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "前のページに戻る"
@@ -4854,7 +5153,8 @@ msgid "Returns to previous page"
msgstr "前のページに戻る"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -4904,7 +5204,7 @@ msgstr "QRコードを保存"
msgid "Save to my feeds"
msgstr "マイフィードに保存"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "保存されたフィード"
@@ -4913,7 +5213,7 @@ msgid "Saved to your camera roll"
msgstr "カメラロールに保存しました"
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "フィードを保存しました"
@@ -4931,8 +5231,8 @@ msgstr "画像の切り抜き設定を保存"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "よろしく!"
@@ -4941,13 +5241,12 @@ msgstr "よろしく!"
msgid "Science"
msgstr "科学"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "一番上までスクロール"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -4956,14 +5255,12 @@ msgstr "一番上までスクロール"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "検索"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "「{query}」を検索"
@@ -4971,11 +5268,11 @@ msgstr "「{query}」を検索"
msgid "Search for \"{searchText}\""
msgstr "「{searchText}」を検索"
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "{displayTag}のすべての投稿を検索(@{authorHandle}のみ)"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "{displayTag}のすべての投稿を検索(すべてのユーザー)"
@@ -4983,8 +5280,6 @@ msgstr "{displayTag}のすべての投稿を検索(すべてのユーザー)
msgid "Search for feeds that you want to suggest to others."
msgstr "他の人におすすめしたいフィードを検索。"
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "ユーザーを検索"
@@ -5008,23 +5303,27 @@ msgstr "Tenorを検索"
msgid "Security Step Required"
msgstr "必要なセキュリティの手順"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "{truncatedTag}の投稿を表示(すべてのユーザー)"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "{truncatedTag}の投稿を表示(このユーザーのみ)"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "<0>{displayTag}0>の投稿を表示(すべてのユーザー)"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "<0>{displayTag}0>の投稿を表示(このユーザーのみ)"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr "Blueskyの求人を見る"
+
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "ガイドを見る"
@@ -5060,7 +5359,11 @@ msgstr "GIFを選ぶ"
msgid "Select GIF \"{0}\""
msgstr "GIF「{0}」を選ぶ"
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr "このワードをどのくらいの間ミュートするのかを選択。"
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "言語を選択"
@@ -5076,7 +5379,7 @@ msgstr "{numItems}個中{i}個目のオプションを選択"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "絵文字{emojiName}をアバターとして選択"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "報告先のモデレーションサービスを選んでください"
@@ -5088,7 +5391,11 @@ msgstr "データをホストするサービスを選択します。"
msgid "Select video"
msgstr "ビデオを選択"
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr "このミュートワードをどのコンテンツに適用するのかを選択。"
+
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "登録されたフィードに含める言語を選択します。選択されていない場合は、すべての言語が表示されます。"
@@ -5100,11 +5407,11 @@ msgstr "アプリに表示されるデフォルトのテキストの言語を選
msgid "Select your date of birth"
msgstr "生年月日を選択"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "次のオプションから興味のあるものを選択してください"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "フィード内の翻訳に使用する言語を選択します。"
@@ -5126,7 +5433,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "メールを送信"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "フィードバックを送信"
@@ -5141,8 +5448,8 @@ msgstr "投稿を送る…"
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "報告を送信"
@@ -5155,8 +5462,8 @@ msgstr "{0}に報告を送信"
msgid "Send verification email"
msgstr "確認メールを送信"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "ダイレクトメッセージで送信"
@@ -5168,7 +5475,7 @@ msgstr "アカウントの削除の確認コードをメールに送信"
msgid "Server address"
msgstr "サーバーアドレス"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "生年月日を設定"
@@ -5176,15 +5483,15 @@ msgstr "生年月日を設定"
msgid "Set new password"
msgstr "新しいパスワードを設定"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "フィード内の引用をすべて非表示にするには、この設定を「いいえ」にします。リポストは引き続き表示されます。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "フィード内の返信をすべて非表示にするには、この設定を「いいえ」にします。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "フィード内のリポストをすべて非表示にするには、この設定を「いいえ」にします。"
@@ -5192,7 +5499,7 @@ msgstr "フィード内のリポストをすべて非表示にするには、こ
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "スレッド表示で返信を表示するには、この設定を「はい」にします。これは実験的な機能です。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "保存されたフィードから投稿を抽出してFollowingフィードに表示するには、この設定を「はい」にします。これは実験的な機能です。"
@@ -5204,26 +5511,6 @@ msgstr "アカウントを設定する"
msgid "Sets Bluesky username"
msgstr "Blueskyのユーザーネームを設定"
-#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "カラーテーマをダークに設定します"
-
-#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "カラーテーマをライトに設定します"
-
-#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "デバイスで設定したカラーテーマを使用するように設定します"
-
-#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "ダークテーマを暗いものに設定します"
-
-#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "ダークテーマを薄暗いものに設定します"
-
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
msgstr "パスワードをリセットするためのメールアドレスを入力"
@@ -5240,11 +5527,11 @@ msgstr "画像のアスペクト比を縦長に設定"
msgid "Sets image aspect ratio to wide"
msgstr "画像のアスペクト比をワイドに設定"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "設定"
@@ -5257,14 +5544,14 @@ msgid "Sexually Suggestive"
msgstr "性的にきわどい"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "共有"
@@ -5282,8 +5569,8 @@ msgid "Share a fun fact!"
msgstr "面白いことをシェアして!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "とにかく共有"
@@ -5294,7 +5581,7 @@ msgstr "フィードを共有"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "リンクを共有"
@@ -5312,7 +5599,7 @@ msgstr "リンク共有のダイアログ"
msgid "Share QR code"
msgstr "QRコードを共有"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "このスターターパックを共有"
@@ -5324,7 +5611,7 @@ msgstr "このスターターパックを共有して、他のユーザーがBlu
msgid "Share your favorite feed!"
msgstr "お気に入りのフィードをシェアして!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr "Shared Preferencesのテスター"
@@ -5335,7 +5622,7 @@ msgstr "リンクしたウェブサイトを共有"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "表示"
@@ -5343,8 +5630,9 @@ msgstr "表示"
msgid "Show alt text"
msgstr "ALTテキストを表示"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "とにかく表示"
@@ -5363,21 +5651,25 @@ msgstr "{0}に似たおすすめのフォロー候補を表示"
#: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23
msgid "Show hidden replies"
-msgstr "隠れている返信を表示"
+msgstr "非表示の返信を表示"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "このような投稿の表示を減らす"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr "とにかくリストを表示"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "さらに表示"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "このような投稿の表示を増やす"
@@ -5385,15 +5677,15 @@ msgstr "このような投稿の表示を増やす"
msgid "Show muted replies"
msgstr "ミュートした返信を表示"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "マイフィードからの投稿を表示"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "引用を表示"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "返信を表示"
@@ -5401,7 +5693,12 @@ msgstr "返信を表示"
msgid "Show replies by people you follow before all other replies."
msgstr "自分がフォローしているユーザーからの返信を、他のすべての返信の前に表示します。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr "返信を全員に見せる"
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "リポストを表示"
@@ -5459,11 +5756,15 @@ msgstr "会話に参加するにはサインインするか新しくアカウン
msgid "Sign into Bluesky or create a new account"
msgstr "Blueskyにサインイン または 新規アカウントの登録"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "サインアウト"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr "すべてのアカウントからサインアウト"
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5485,7 +5786,7 @@ msgstr "サインアップまたはサインインして会話に参加"
msgid "Sign-in Required"
msgstr "サインインが必要"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "サインイン済み"
@@ -5494,21 +5795,25 @@ msgstr "サインイン済み"
msgid "Signed in as @{0}"
msgstr "@{0}でサインイン"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "あなたのスターターパックでサインアップ"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "スターターパックを使わずにサインアップ"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr "類似のアカウント"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "スキップ"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "この手順をスキップする"
@@ -5517,37 +5822,36 @@ msgstr "この手順をスキップする"
msgid "Software Dev"
msgstr "ソフトウェア開発"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr "お好みかもしれない他のフィード"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "一部の人が返信可能"
#: src/screens/Messages/Conversation/index.tsx:106
msgid "Something went wrong"
-msgstr "何らかの問題が発生しました"
+msgstr "何らかの問題が発生したようです"
#: src/screens/Deactivated.tsx:94
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
msgid "Something went wrong, please try again"
-msgstr "なにか間違っているようなので、もう一度お試しください"
+msgstr "何らかの問題が発生したようなので、もう一度お試しください"
#: src/components/ReportDialog/index.tsx:59
#: src/screens/Moderation/index.tsx:115
#: src/screens/Profile/Sections/Labels.tsx:87
msgid "Something went wrong, please try again."
-msgstr "なにか間違っているようなので、もう一度お試しください。"
+msgstr "何らかの問題が発生したようなので、もう一度お試しください。"
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
-msgstr ""
+msgstr "何らかの問題が発生したようです!"
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "大変申し訳ありません!セッションの有効期限が切れました。もう一度ログインしてください。"
@@ -5559,9 +5863,9 @@ msgstr "返信を並び替える"
msgid "Sort replies to the same post by:"
msgstr "次の方法で同じ投稿への返信を並び替えます。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "ソース:<0>{0}0>"
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr "ソース:<0>{sourceName}0>"
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -5598,17 +5902,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr "オンボーディングツアー・ウインドウ開始。前へ戻らないでください。代わりに、進んで他のオプションを見るか、スキップしてください。"
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "スターターパック"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "{0}によるスターターパック"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "スターターパックが無効です"
@@ -5620,31 +5924,31 @@ msgstr "スターターパック"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "ステータスページ"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "ステップ {0} / {1}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "ストレージがクリアされたため、今すぐアプリを再起動する必要があります。"
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "ストーリーブック"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "送信"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "登録"
@@ -5660,16 +5964,15 @@ msgstr "ラベラーを登録する"
msgid "Subscribe to this labeler"
msgstr "このラベラーを登録"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "このリストに登録"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "おすすめのアカウント"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "あなたへのおすすめ"
@@ -5677,7 +5980,7 @@ msgstr "あなたへのおすすめ"
msgid "Suggestive"
msgstr "きわどい"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -5692,30 +5995,31 @@ msgstr "アカウントを切り替える"
msgid "Switch between feeds to control your experience."
msgstr "フィードを切り替えて、あなたの体験をコントロールしよう。"
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "{0}に切り替え"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "ログインしているアカウントを切り替えます"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "システム"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "システムログ"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "タグ"
-
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "タグメニュー:{displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr "タグのみ"
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "トール"
@@ -5724,11 +6028,19 @@ msgstr "トール"
msgid "Tap to dismiss"
msgstr "タップして消す"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr "タップしてフルスクリーンに"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr "タップして音の切り替え"
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "タップして全体を表示"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr "タスク完了 - 10いいね!"
@@ -5753,11 +6065,11 @@ msgstr "もう少し教えて"
msgid "Terms"
msgstr "条件"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "利用規約"
@@ -5768,17 +6080,17 @@ msgstr "利用規約"
msgid "Terms used violate community standards"
msgstr "使用されている用語がコミュニティ基準に違反している"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "テキスト"
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr "テキストとタグ"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "テキストの入力フィールド"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "ありがとうございます。あなたの報告は送信されました。"
@@ -5786,38 +6098,55 @@ msgstr "ありがとうございます。あなたの報告は送信されまし
msgid "That contains the following:"
msgstr "その内容は以下の通りです:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "そのハンドルはすでに使用されています。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "そのスターターパックが見つかりませんでした。"
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr "以上です、皆さん!"
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
msgstr "このアカウントは、ブロック解除後にあなたとやり取りすることができます。"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr "このスレッドの投稿者がこの返信を非表示にしました"
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr "Blueskyウェブアプリ"
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
-msgstr "コミュニティーガイドラインは<0/>に移動しました"
+msgstr "コミュニティガイドラインは<0/>に移動しました"
#: src/view/screens/CopyrightPolicy.tsx:33
msgid "The Copyright Policy has been moved to <0/>"
msgstr "著作権ポリシーは<0/>に移動しました"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr "Discoverフィード"
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr "Discoverフィードはあなたの好みを学習しました"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。"
@@ -5825,11 +6154,11 @@ msgstr "アプリのほうがより良い体験をすることができます。
msgid "The feed has been replaced with Discover."
msgstr "フィードはDiscoverと置き換えられました。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "以下のラベルがあなたのアカウントに適用されました。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "以下のラベルがあなたのコンテンツに適用されました。"
@@ -5837,8 +6166,8 @@ msgstr "以下のラベルがあなたのコンテンツに適用されました
msgid "The following steps will help customize your Bluesky experience."
msgstr "次の手順であなたのBlueskyでの体験をカスタマイズできます。"
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "投稿が削除された可能性があります。"
@@ -5846,7 +6175,11 @@ msgstr "投稿が削除された可能性があります。"
msgid "The Privacy Policy has been moved to <0/>"
msgstr "プライバシーポリシーは<0/>に移動しました"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr "選択したビデオのサイズが100MBを超えています。"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。"
@@ -5883,24 +6216,24 @@ msgid "There was an issue connecting to Tenor."
msgstr "Tenorへの接続中に問題が発生しました。"
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "サーバーへの問い合わせ中に問題が発生しました"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "サーバーへの問い合わせ中に問題が発生しました"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
@@ -5908,13 +6241,13 @@ msgstr "投稿の取得中に問題が発生しました。もう一度試すに
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "報告の送信に問題が発生しました。インターネットの接続を確認してください。"
@@ -5936,16 +6269,19 @@ msgstr "アプリパスワードの取得中に問題が発生しました"
msgid "There was an issue! {0}"
msgstr "問題が発生しました! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。"
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "アプリケーションに予期しない問題が発生しました。このようなことが繰り返した場合はサポートへお知らせください!"
@@ -5954,11 +6290,11 @@ msgstr "アプリケーションに予期しない問題が発生しました。
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Blueskyに新規ユーザーが殺到しています!できるだけ早くアカウントを有効にできるよう努めます。"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "この{screenDescription}にはフラグが設定されています:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "このアカウントを閲覧するためにはサインインが必要です。"
@@ -5966,9 +6302,9 @@ msgstr "このアカウントを閲覧するためにはサインインが必要
msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
msgstr "このアカウントは1つ、あるいは複数のモデレーションリストでブロックされています。ブロックを解除するにはリストの画面に移動してこのユーザーをリストから外してください。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "この申し立ては<0>{0}0>に送られます。"
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr "この申し立ては<0>{sourceName}0>に送られます。"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -5990,8 +6326,8 @@ msgstr "このコンテンツはモデレーターから一般的な警告を受
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "このコンテンツは{0}によってホストされています。外部メディアを有効にしますか?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "このコンテンツは関係するユーザーの一方が他方をブロックしているため、利用できません。"
@@ -6017,7 +6353,7 @@ msgstr "このフィードは空です!もっと多くのユーザーをフォ
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "このフィードは空です。"
@@ -6033,15 +6369,15 @@ msgstr "この情報は他のユーザーと共有されません。"
msgid "This is important in case you ever need to change your email or reset your password."
msgstr "これは、メールアドレスの変更やパスワードのリセットが必要な場合に重要です。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "<0>{0}0>によって適用されたラベルです。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "投稿者によって適用されたラベルです。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "あなたによって適用されたラベルです。"
@@ -6053,7 +6389,11 @@ msgstr "このラベラーはどのようなラベルを発行しているか宣
msgid "This link is taking you to the following website:"
msgstr "このリンクは次のウェブサイトへリンクしています:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr "このリスト — <0>{0}0>が作成 — は名前か説明がBlueskyのコミュニティガイドラインに違反している可能性があります。"
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "このリストは空です!"
@@ -6065,23 +6405,31 @@ msgstr "このモデレーションのサービスはご利用できません。
msgid "This name is already in use"
msgstr "この名前はすでに使用中です"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "この投稿は削除されました。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "この投稿はログインしているユーザーにのみ表示されます。ログインしていない方には見えません。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "この投稿はフィードから非表示になります。"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。"
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr "この投稿の投稿者は引用投稿を無効にしています。"
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "このプロフィールはログインしているユーザーにのみ表示されます。ログインしていない方には見えません。"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr "この返信はスレッドの一番下にある非表示のセクションに移動され、その後のあなたや他のユーザー宛の返信の通知をミュートします。"
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "このサービスには、利用規約もプライバシーポリシーもありません。"
@@ -6098,8 +6446,8 @@ msgstr "このユーザーにはフォロワーがいません。"
msgid "This user has blocked you"
msgstr "このユーザーはあなたをブロックしています"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "このユーザーはあなたをブロックしているため、あなたはこのユーザーのコンテンツを閲覧できません。"
@@ -6107,11 +6455,11 @@ msgstr "このユーザーはあなたをブロックしているため、あな
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "このユーザーは自分のコンテンツをサインインしたユーザーにのみ表示するように求めています。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "このユーザーはブロックした<0>{0}0>リストに含まれています。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "このユーザーはミュートした<0>{0}0>リストに含まれています。"
@@ -6123,28 +6471,32 @@ msgstr "新しいユーザーです。ここを押すといつ参加したかの
msgid "This user isn't following anyone."
msgstr "このユーザーは誰もフォローしていません。"
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "ミュートしたワードから{0}が削除されます。あとでいつでも戻すことができます。"
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr "ミュートしたワードから「{0}」が削除されます。あとでいつでも戻すことができます。"
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr "クイックアクセスのリストから@{0}を削除します。"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr "これによってあなたの投稿が全員に見える引用投稿からは削除され、プレースホルダーに置き換えられます。"
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "スレッドの設定"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "スレッドの設定"
-#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "スレッドの設定を更新しました"
-
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "スレッドモード"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "スレッドの設定"
@@ -6160,15 +6512,11 @@ msgstr "会話を報告するには、会話の画面からメッセージのう
msgid "To whom would you like to send this report?"
msgstr "この報告を誰に送りたいですか?"
-#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "ミュートしたワードのオプションを切り替えます。"
-
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
-msgstr "ドロップダウンをトグル"
+msgstr "ドロップダウンを切り替え"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "成人向けコンテンツの有効もしくは無効の切り替え"
@@ -6183,10 +6531,10 @@ msgstr "変換"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "翻訳"
@@ -6199,7 +6547,7 @@ msgstr "再試行"
msgid "TV"
msgstr "テレビ"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "2要素認証"
@@ -6211,11 +6559,11 @@ msgstr "ここにメッセージを入力する"
msgid "Type:"
msgstr "タイプ:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "リストでのブロックを解除"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "リストでのミュートを解除"
@@ -6223,12 +6571,12 @@ msgstr "リストでのミュートを解除"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "あなたのサービスに接続できません。インターネットの接続を確認してください。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "削除できません"
@@ -6239,7 +6587,7 @@ msgstr "削除できません"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "ブロックを解除"
@@ -6263,9 +6611,9 @@ msgstr "アカウントのブロックを解除"
msgid "Unblock Account?"
msgstr "アカウントのブロックを解除しますか?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "リポストを元に戻す"
@@ -6274,10 +6622,6 @@ msgctxt "action"
msgid "Unfollow"
msgstr "フォローを解除"
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "フォローを解除"
-
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
msgstr "{0}のフォローを解除"
@@ -6291,12 +6635,14 @@ msgstr "アカウントのフォローを解除"
msgid "Unlike this feed"
msgstr "このフィードからいいねを外す"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "ミュートを解除"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "{truncatedTag}のミュートを解除"
@@ -6305,7 +6651,7 @@ msgstr "{truncatedTag}のミュートを解除"
msgid "Unmute Account"
msgstr "アカウントのミュートを解除"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "{displayTag}のすべての投稿のミュートを解除"
@@ -6313,13 +6659,21 @@ msgstr "{displayTag}のすべての投稿のミュートを解除"
msgid "Unmute conversation"
msgstr "会話のミュートを解除"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "スレッドのミュートを解除"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr "ビデオのミュートを解除"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr "ミュート解除中"
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "ピン留めを解除"
@@ -6327,11 +6681,11 @@ msgstr "ピン留めを解除"
msgid "Unpin from home"
msgstr "ホームからピン留めを解除"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "モデレーションリストのピン留めを解除"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "フィードからピン留めを解除"
@@ -6339,16 +6693,25 @@ msgstr "フィードからピン留めを解除"
msgid "Unsubscribe"
msgstr "登録を解除"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr "リストの登録を解除"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "このラベラーの登録を解除"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr "リストの登録を解除しました"
+
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Unwanted Sexual Content"
msgstr "望まない性的なコンテンツ"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "リストの{displayName}を更新"
@@ -6356,6 +6719,14 @@ msgstr "リストの{displayName}を更新"
msgid "Update to {handle}"
msgstr "{handle}に更新"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr "引用の切り離しに失敗しました"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr "返信の表示・非表示に変更に失敗しました"
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "更新中…"
@@ -6368,20 +6739,20 @@ msgstr "代わりに写真をアップロード"
msgid "Upload a text file to:"
msgstr "テキストファイルのアップロード先:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "カメラからアップロード"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "ファイルからアップロード"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6429,12 +6800,12 @@ msgstr "このアプリパスワードとハンドルを使って他のアプリ
msgid "Used by:"
msgstr "使用者:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "ブロック中のユーザー"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "「{0}」によってブロックされたユーザー"
@@ -6442,30 +6813,28 @@ msgstr "「{0}」によってブロックされたユーザー"
msgid "User blocked by list"
msgstr "リストによってブロック中のユーザー"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "リストによってブロック中のユーザー"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "あなたをブロックしているユーザー"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "あなたをブロックしているユーザー"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "<0/>の作成したユーザーリスト"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "<0/>の作成したユーザーリスト"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "あなたの作成したユーザーリスト"
@@ -6477,7 +6846,7 @@ msgstr "ユーザーリストを作成しました"
msgid "User list updated"
msgstr "ユーザーリストを更新しました"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "ユーザーリスト"
@@ -6485,13 +6854,13 @@ msgstr "ユーザーリスト"
msgid "Username or email address"
msgstr "ユーザー名またはメールアドレス"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "ユーザー"
-#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "<0/>にフォローされているユーザー"
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr "<0>@{0}0>にフォローされているユーザー"
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -6500,7 +6869,7 @@ msgstr "<0/>にフォローされているユーザー"
msgid "Users I follow"
msgstr "フォローしているユーザー"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "{0}のユーザー"
@@ -6516,15 +6885,15 @@ msgstr "値:"
msgid "Verify DNS Record"
msgstr "DNSレコードを確認"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "メールアドレスを確認"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "メールアドレスを確認"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "メールアドレスを確認"
@@ -6541,31 +6910,40 @@ msgstr "テキストファイルを確認"
msgid "Verify Your Email"
msgstr "メールアドレスを確認"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "バージョン {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr "ビデオ"
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "ビデオゲーム"
-#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr "ビデオは100MB以下にしてください"
-
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "{0}のアバターを表示"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "{0}のプロフィールを表示"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr "{displayName}のプロフィールを表示"
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "ブロック中のユーザーのプロフィールを表示"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr "詳細についてのブログの記事を見る"
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "デバッグエントリーを表示"
@@ -6578,7 +6956,7 @@ msgstr "詳細を表示"
msgid "View details for reporting a copyright violation"
msgstr "著作権侵害の報告の詳細を見る"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "スレッドをすべて表示"
@@ -6589,12 +6967,12 @@ msgstr "これらのラベルに関する情報を見る"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "プロフィールを表示"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "アバターを表示"
@@ -6606,11 +6984,23 @@ msgstr "@{0}によって提供されるラベリングサービスを見る"
msgid "View users who like this feed"
msgstr "このフィードにいいねしたユーザーを見る"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr "ブロックしたアカウントを見る"
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr "フィードを表示し、さらにフィードを探す"
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr "モデレーションリストを見る"
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr "ミュートしたアカウントを見る"
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -6642,7 +7032,7 @@ msgstr "この会話を読み込めませんでした"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "あなたのアカウントが準備できるまで{estimatedTime}ほどかかります。"
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "素敵なひとときをお過ごしください。覚えておいてください、Blueskyは:"
@@ -6650,19 +7040,15 @@ msgstr "素敵なひとときをお過ごしください。覚えておいてく
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "あなたのフォロー中のユーザーの投稿を読み終わりました。フィード<0/>内の最新の投稿を表示します。"
-#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "投稿が表示されなくなる可能性があるため、多くの投稿に使われる一般的なワードは避けることをおすすめします。"
-
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "生年月日の設定を読み込むことはできませんでした。もう一度お試しください。"
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "現在設定されたラベラーを読み込めません。"
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "接続できませんでした。アカウントの設定を続けるためにもう一度お試しください。繰り返し失敗する場合は、この手順をスキップすることもできます。"
@@ -6670,7 +7056,7 @@ msgstr "接続できませんでした。アカウントの設定を続けるた
msgid "We will let you know when your account is ready."
msgstr "アカウントの準備ができたらお知らせします。"
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "これはあなたの体験をカスタマイズするために使用されます。"
@@ -6678,15 +7064,15 @@ msgstr "これはあなたの体験をカスタマイズするために使用さ
msgid "We're having network issues, try again"
msgstr "ネットワークで問題が発生しています。再度試してください"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "私たちはあなたが参加してくれることをとても楽しみにしています!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "大変申し訳ありませんが、このリストを解決できませんでした。それでもこの問題が解決しない場合は、作成者の@{handleOrDid}までお問い合わせください。"
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "大変申し訳ありませんが、現在ミュートされたワードを読み込むことができませんでした。もう一度お試しください。"
@@ -6694,11 +7080,11 @@ msgstr "大変申し訳ありませんが、現在ミュートされたワード
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "大変申し訳ありませんが、検索を完了できませんでした。数分後に再試行してください。"
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。"
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "大変申し訳ありません!お探しのページは見つかりません。"
@@ -6715,7 +7101,7 @@ msgstr "おかえりなさい!"
msgid "Welcome, friend!"
msgstr "ようこそ、友よ!"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "なにに興味がありますか?"
@@ -6725,7 +7111,7 @@ msgstr "あなたのスターターパックを何と呼びたいですか?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "最近どう?"
@@ -6737,23 +7123,19 @@ msgstr "この投稿ではどの言語が使われていますか?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "アルゴリズムによるフィードにはどの言語を使用しますか?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr "誰がこの投稿に反応できますか?"
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "誰があなたへメッセージを送れるか?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "返信できるユーザー"
-#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "誰が返信できるのかについてのダイアログ"
-
-#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "誰が返信できますか?"
-
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
msgid "Whoops!"
@@ -6796,12 +7178,12 @@ msgstr "ワイド"
msgid "Write a message"
msgstr "メッセージを書く"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "投稿を書く"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "返信を書く"
@@ -6811,10 +7193,10 @@ msgid "Writers"
msgstr "ライター"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -6825,10 +7207,18 @@ msgstr "はい"
msgid "Yes, deactivate"
msgstr "はい、無効化します"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr "はい、このスターターパックを削除します"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr "はい、切り離します"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr "はい、非表示にします"
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "はい、アカウントを再有効化します"
@@ -6837,7 +7227,8 @@ msgstr "はい、アカウントを再有効化します"
msgid "Yesterday, {time}"
msgstr "昨日、{time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "あなた"
@@ -6895,11 +7286,11 @@ msgstr "まだ招待コードがありません!Blueskyをもうしばらく
msgid "You don't have any pinned feeds."
msgstr "ピン留めされたフィードがありません。"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "保存されたフィードがありません。"
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "あなたが投稿者をブロックしているか、または投稿者によってあなたはブロックされています。"
@@ -6907,9 +7298,9 @@ msgstr "あなたが投稿者をブロックしているか、または投稿者
msgid "You have blocked this user"
msgstr "あなたはこのユーザーをブロックしました"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "あなたはこのユーザーをブロックしているため、コンテンツを閲覧できません。"
@@ -6920,20 +7311,20 @@ msgstr "あなたはこのユーザーをブロックしているため、コン
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "無効なコードが入力されました。それはXXXXX-XXXXXのようになっているはずです。"
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "この投稿を非表示にしました"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "この投稿を非表示にしました。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "このアカウントをミュートしました。"
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "このユーザーをミュートしました"
@@ -6941,12 +7332,12 @@ msgstr "このユーザーをミュートしました"
msgid "You have no conversations yet. Start one!"
msgstr "まだ会話していません。始めましょう!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "フィードがありません。"
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "リストがありません。"
@@ -6970,27 +7361,32 @@ msgstr "最後まで到達しました"
msgid "You haven't created a starter pack yet!"
msgstr "スターターパックをまだ作成していません!"
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "まだワードやタグをミュートしていません"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr "あなたがこの返信を非表示にしました。"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "間違って適用されたと思うのであれば、自己申告ではないラベルならば異議申し立てができます。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "これらのラベルが誤って適用されたと思った場合は、異議申し立てを行うことができます。"
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "50フィードまで追加できます"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr "{STARTER_PACK_MAX_SIZE}ユーザーまで追加できます"
-#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "50ユーザーまで追加できます"
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr "3フィードまで追加できます"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "サインアップするには、13歳以上である必要があります。"
@@ -7006,7 +7402,7 @@ msgstr "QRコードを保存するには写真ライブラリへのアクセス
msgid "You must grant access to your photo library to save the image."
msgstr "画像を保存するには写真ライブラリへのアクセスを許可する必要があります。"
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "報告をするには少なくとも1つのラベラーを選択する必要があります"
@@ -7014,11 +7410,11 @@ msgstr "報告をするには少なくとも1つのラベラーを選択する
msgid "You previously deactivated @{0}."
msgstr "以前、あなたは@{0}を無効化しました。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "これ以降、このスレッドに関する通知を受け取ることはできなくなります"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "これ以降、このスレッドに関する通知を受け取ることができます"
@@ -7038,23 +7434,23 @@ msgstr "あなた: {defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "あなた: {short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!"
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "これらのユーザーや他{0}をフォローします"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "これらのユーザーをすぐにフォローします"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "これらのフィードの更新を受け取ります"
@@ -7069,12 +7465,12 @@ msgstr "あなたは並んでいます。"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "アプリパスワードでログイン中です。アカウントの無効化を続けるにはメインのパスワードでログインしてください。"
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "準備ができました!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "この投稿でワードまたはタグを隠すことを選択しました。"
@@ -7082,7 +7478,7 @@ msgstr "この投稿でワードまたはタグを隠すことを選択しまし
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。"
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "あなたのアカウント"
@@ -7098,6 +7494,10 @@ msgstr "あなたのアカウントの公開データの全記録を含むリポ
msgid "Your birth date"
msgstr "生年月日"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr "利用中のブラウザがこのビデオ形式をサポートしていません。他のブラウザをお試しください。"
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "あなたのチャットは無効化されています"
@@ -7107,7 +7507,7 @@ msgid "Your choice will be saved, but can be changed later in settings."
msgstr "ここで選択した内容は保存されますが、あとから設定で変更できます。"
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7121,7 +7521,7 @@ msgstr "メールアドレスは更新されましたが、確認されていま
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "メールアドレスはまだ確認されていません。これは、当社が推奨する重要なセキュリティステップです。"
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr "最初のいいね!"
@@ -7129,7 +7529,7 @@ msgstr "最初のいいね!"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Followingフィードは空です!もっと多くのユーザーをフォローして、近況を確認しましょう。"
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "フルハンドルは"
@@ -7137,7 +7537,7 @@ msgstr "フルハンドルは"
msgid "Your full handle will be <0>@{0}0>"
msgstr "フルハンドルは<0>@{0}0>になります"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "ミュートしたワード"
@@ -7145,15 +7545,15 @@ msgstr "ミュートしたワード"
msgid "Your password has been changed successfully!"
msgstr "パスワードの変更が完了しました!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "投稿を公開しました"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "投稿、いいね、ブロックは公開されます。ミュートは非公開です。"
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "あなたのプロフィール"
@@ -7161,7 +7561,7 @@ msgstr "あなたのプロフィール"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "あなたのプロフィール、投稿、フィード、そしてリストは他のBlueskyユーザーに見えなくなります。ログインすることでいつでもアカウントを再有効化できます。"
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "返信を公開しました"
@@ -7169,6 +7569,6 @@ msgstr "返信を公開しました"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "あなたの報告はBluesky Moderation Serviceに送られます"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "あなたのユーザーハンドル"
diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po
index 3783b61f51..1f6cfef0ef 100644
--- a/src/locale/locales/ko/messages.po
+++ b/src/locale/locales/ko/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-07-05 09:53+0900\n"
+"PO-Revision-Date: 2024-08-23 11:39+0900\n"
"Last-Translator: quiple\n"
"Language-Team: quiple, lens0021, HaruChanHeart, hazzzi, heartade\n"
"Plural-Forms: \n"
@@ -21,7 +21,8 @@ msgstr "(임베드 콘텐츠 포함)"
msgid "(no email)"
msgstr "(이메일 없음)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "외 {0, plural, other {{formattedCount}}}명"
@@ -33,7 +34,7 @@ msgstr "이 계정에 {0, plural, other {#}}개의 라벨이 지정됨"
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "이 콘텐츠에 {0, plural, other {#}}개의 라벨이 지정됨"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, other {#}}개"
@@ -47,16 +48,16 @@ msgstr "팔로워"
msgid "{0, plural, one {following} other {following}}"
msgstr "팔로우 중"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "좋아요 ({0, plural, other {#}}개)"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "좋아요"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, other {#}}명의 사용자가 좋아함"
@@ -64,27 +65,41 @@ msgstr "{0, plural, other {#}}명의 사용자가 좋아함"
msgid "{0, plural, one {post} other {posts}}"
msgstr "게시물"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr "인용"
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "답글 ({0, plural, other {#}}개)"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "재게시"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "좋아요 취소 ({0, plural, other {#}}개)"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr "<0><1>태그1>에서0> {0}"
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "<0><1>텍스트 및 태그1>에서0> {0}"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "이번 주에 {0}명이 가입함"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0}명이 이 스타터 팩을 사용했습니다!"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "{0} 님의 아바타"
@@ -120,7 +135,7 @@ msgstr "개월"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "초"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "{displayName} 님의 스타터 팩"
@@ -147,7 +162,7 @@ msgstr "{handle} 님에게 메시지를 보낼 수 없습니다"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, other {#}}명의 사용자가 좋아함"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications}개 읽지 않음"
@@ -159,14 +174,6 @@ msgstr "{profileName} 님은 {0} 전에 Bluesky에 가입했습니다"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} 님은 {0} 전에 스타터 팩을 사용하여 Bluesky에 가입했습니다"
-#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {모든 답글 표시} other {좋아요가 #개 이상인 답글 표시}}"
-
-#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/>의 멤버"
-
#: src/screens/StarterPack/Wizard/index.tsx:466
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -177,11 +184,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}, 0><1>{1} 1>외 {2, plural, other {#}}개가 스타터 팩에 포함됩니다"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> 팔로워"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> 팔로우 중"
@@ -193,6 +200,10 @@ msgstr "<0>{0}0> 및<1> 1><2>{1}2>이(가) 스타터 팩에 포함됩니
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0>이(가) 스타터 팩에 포함됩니다"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr "<0>{0}0>의 멤버"
+
#: src/view/com/modals/SelfLabel.tsx:135
msgid "<0>Not Applicable.0> This warning is only available for posts with media attached."
msgstr "<0>해당 없음.0> 이 경고는 미디어가 첨부된 게시물에만 사용할 수 있습니다."
@@ -205,15 +216,27 @@ msgstr "<0>나0>와<1> 1><2>{0} 2>님이 스타터 팩에 포함됩니다"
msgid "⚠Invalid Handle"
msgstr "⚠잘못된 핸들"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr "24시간"
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "2단계 인증"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr "30일"
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr "7일"
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr "도움말 툴팁"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "탐색 링크 및 설정으로 이동합니다"
@@ -223,22 +246,22 @@ msgid "Access profile and other navigation links"
msgstr "프로필 및 기타 탐색 링크로 이동합니다"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "접근성"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "접근성 설정"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "접근성 설정"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "계정"
@@ -254,20 +277,20 @@ msgstr "계정 팔로우함"
msgid "Account muted"
msgstr "계정 뮤트됨"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "계정 뮤트됨"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "리스트로 계정 뮤트됨"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
-msgstr "계정 옵션"
+msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "빠른 액세스에서 계정 제거"
@@ -284,16 +307,16 @@ msgstr "계정 언팔로우함"
msgid "Account unmuted"
msgstr "계정 언뮤트됨"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "추가"
#: src/screens/StarterPack/Wizard/index.tsx:568
msgid "Add {0} more to continue"
-msgstr "계속하려면 {0}개 더 추가하기"
+msgstr "계속하려면 {0}명 더 추가하기"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:59
msgid "Add {displayName} to starter pack"
@@ -303,14 +326,14 @@ msgstr "스타터 팩에 {displayName} 추가"
msgid "Add a content warning"
msgstr "콘텐츠 경고 추가"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "이 리스트에 사용자 추가"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "계정 추가"
@@ -329,11 +352,11 @@ msgstr "대체 텍스트 추가"
msgid "Add App Password"
msgstr "앱 비밀번호 추가"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "구성 설정에 뮤트 단어 추가"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "뮤트할 단어 및 태그 추가"
@@ -353,7 +376,7 @@ msgstr "내가 팔로우하는 사람의 기본 피드만 추가하기"
msgid "Add the following DNS record to your domain:"
msgstr "도메인에 다음 DNS 레코드를 추가하세요:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "이 피드를 내 피드에 추가하기"
@@ -362,29 +385,26 @@ msgstr "이 피드를 내 피드에 추가하기"
msgid "Add to Lists"
msgstr "리스트에 추가"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "내 피드에 추가"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "리스트에 추가됨"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "내 피드에 추가됨"
-#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "답글이 피드에 표시되기 위해 필요한 좋아요 수를 조정합니다."
-
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "성인 콘텐츠"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "성인 콘텐츠는 <0>bsky.app0>에서 웹을 통해서만 활성화할 수 있습니다."
@@ -392,20 +412,20 @@ msgstr "성인 콘텐츠는 <0>bsky.app0>에서 웹을 통해서만 활성화
msgid "Adult content is disabled."
msgstr "성인 콘텐츠가 비활성화되어 있습니다."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "고급"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr "알고리즘 훈련 완료!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "모든 계정을 팔로우했습니다"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "저장한 모든 피드를 한 곳에서 확인하세요."
@@ -419,6 +439,14 @@ msgstr "다이렉트 메시지 접근 허용"
msgid "Allow new messages from"
msgstr "새 메시지를 허용할 대상"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr "답글을 허용할 대상"
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr "다이렉트 메시지 접근 허용"
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -436,7 +464,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "대체 텍스트"
@@ -457,52 +485,70 @@ msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "이전 주소인 {0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 입력하는 인증 코드가 포함되어 있습니다."
-#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr "오류 발생"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr "오류 발생"
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 나중에 다시 시도하세요."
+
#: src/components/StarterPack/QrCodeDialog.tsx:71
#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr "동영상을 업로드하는 동안 오류가 발생했습니다."
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "어떤 옵션에도 포함되지 않는 문제"
#: src/components/dms/dialogs/NewChatDialog.tsx:36
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "채팅을 시작하는 동안 문제가 발생했습니다"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "채팅을 여는 동안 문제가 발생했습니다"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "문제가 발생했습니다. 다시 시도해 주세요."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "알 수 없는 오류가 발생했습니다"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr "알 수 없는 라벨러"
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "및"
@@ -519,6 +565,10 @@ msgstr "움직이는 GIF"
msgid "Anti-Social Behavior"
msgstr "반사회적 행위"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr "누구나 상호작용할 수 있음"
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "앱 언어"
@@ -535,26 +585,26 @@ msgstr "앱 비밀번호 이름에는 문자, 숫자, 공백, 대시, 밑줄만
msgid "App Password names must be at least 4 characters long."
msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "앱 비밀번호 설정"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "앱 비밀번호"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "이의신청"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "\"{0}\" 라벨 이의신청"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "이의신청 제출함"
@@ -566,19 +616,24 @@ msgstr "이의신청 제출함"
msgid "Appeal this decision"
msgstr "이 결정에 이의신청"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "모양"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr "모양 설정"
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr "모양 설정"
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
msgstr "기본 추천 피드 적용하기"
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
-#~ msgid "Are you sure you want delete this starter pack?"
-#~ msgstr "이 스타터 팩을 삭제하시겠습니까?"
-
#: src/view/screens/AppPasswords.tsx:282
msgid "Are you sure you want to delete the app password \"{name}\"?"
msgstr "앱 비밀번호 \"{name}\"을(를) 삭제하시겠습니까?"
@@ -587,27 +642,27 @@ msgstr "앱 비밀번호 \"{name}\"을(를) 삭제하시겠습니까?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "정말 이 메시지를 삭제하시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다."
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
-msgstr ""
+msgstr "이 스타터 팩을 삭제하시겠습니까?"
#: src/components/dms/LeaveConvoPrompt.tsx:48
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다."
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "피드에서 {0}을(를) 제거하시겠습니까?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "내 피드에서 이 피드를 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "이 초안을 삭제하시겠습니까?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "정말인가요?"
@@ -624,13 +679,13 @@ msgstr "예술"
msgid "Artistic or non-erotic nudity."
msgstr "선정적이지 않거나 예술적인 노출."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "3자 이상"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -643,12 +698,12 @@ msgstr "3자 이상"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "뒤로"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "기본"
@@ -656,7 +711,7 @@ msgstr "기본"
msgid "Birthday"
msgstr "생년월일"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "생년월일:"
@@ -679,28 +734,27 @@ msgstr "계정 차단"
msgid "Block Account?"
msgstr "계정을 차단하시겠습니까?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "계정 차단"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "리스트 차단"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "이 계정들을 차단하시겠습니까?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "차단됨"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "차단한 계정"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "차단한 계정"
@@ -713,7 +767,7 @@ msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다. 차단한 계정의 콘텐츠를 볼 수 없으며 해당 계정도 내 콘텐츠를 볼 수 없게 됩니다."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "차단된 게시물."
@@ -721,7 +775,7 @@ msgstr "차단된 게시물."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "차단하더라도 이 라벨러가 내 계정에 라벨을 붙이는 것을 막지는 못합니다."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "차단 목록은 공개됩니다. 차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다."
@@ -729,7 +783,7 @@ msgstr "차단 목록은 공개됩니다. 차단한 계정은 내 스레드에
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "차단하더라도 내 계정에 라벨이 붙는 것은 막지 못하지만, 이 계정이 내 스레드에 답글을 달거나 나와 상호작용하는 것은 중지됩니다."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "블로그"
@@ -750,7 +804,7 @@ msgstr "Bluesky는 친구와 함께하면 더 좋답니다!"
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky가 네트워크에 있는 사람들 중에서 임의로 추천 계정 세트를 선택합니다."
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "로그아웃한 사용자에게 내 프로필과 게시물을 표시하지 않습니다. 다른 앱에서는 이 설정을 따르지 않을 수 있습니다. 내 계정을 비공개로 전환하지는 않습니다."
@@ -767,21 +821,23 @@ msgstr "이미지 흐리게 및 피드에서 필터링"
msgid "Books"
msgstr "책"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr "탐색 페이지에서 더 많은 계정 찾아보기"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr "탐색 페이지에서 더 많은 피드 찾아보기"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr "더 많은 추천 찾아보기"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr "탐색 페이지에서 더 많은 추천 찾아보기"
@@ -790,11 +846,11 @@ msgstr "탐색 페이지에서 더 많은 추천 찾아보기"
msgid "Browse other feeds"
msgstr "다른 피드 탐색하기"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "비즈니스"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "— 님이 만듦"
@@ -802,15 +858,15 @@ msgstr "— 님이 만듦"
msgid "By {0}"
msgstr "{0} 님이 만듦"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "<0/> 님이 만듦"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "계정을 만들면 {els}에 동의하는 것입니다."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "내가 만듦"
@@ -822,13 +878,13 @@ msgstr "카메라"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "글자, 숫자, 공백, 대시, 밑줄만 포함할 수 있습니다. 길이는 4자 이상이어야 하고 32자를 넘지 않아야 합니다."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -844,9 +900,8 @@ msgstr "글자, 숫자, 공백, 대시, 밑줄만 포함할 수 있습니다.
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "취소"
@@ -874,7 +929,7 @@ msgstr "이미지 자르기 취소"
msgid "Cancel profile editing"
msgstr "프로필 편집 취소"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "게시물 인용 취소"
@@ -883,7 +938,6 @@ msgid "Cancel reactivation and log out"
msgstr "재활성화 취소 및 로그아웃"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "검색 취소"
@@ -895,17 +949,17 @@ msgstr "연결된 웹사이트를 여는 것을 취소합니다"
msgid "Change"
msgstr "변경"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "변경"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "핸들 변경"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "핸들 변경"
@@ -913,12 +967,12 @@ msgstr "핸들 변경"
msgid "Change my email"
msgstr "내 이메일 변경하기"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "비밀번호 변경"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "비밀번호 변경"
@@ -930,7 +984,7 @@ msgstr "게시물 언어를 {0}(으)로 변경"
msgid "Change Your Email"
msgstr "이메일 변경"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -942,14 +996,14 @@ msgstr "대화 뮤트됨"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "대화 설정"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "대화 설정"
@@ -970,15 +1024,15 @@ msgstr "이메일에서 로그인 코드를 확인한 후 여기에 입력하세
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "받은 편지함에서 아래에 입력할 인증 코드가 포함된 이메일이 있는지 확인하세요."
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr "3개 이상 선택하세요."
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr "최소 {0}개 이상 선택하세요"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "피드 선택"
@@ -986,7 +1040,7 @@ msgstr "피드 선택"
msgid "Choose for me"
msgstr "임의로 선택하기"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "사람들 선택"
@@ -994,7 +1048,7 @@ msgstr "사람들 선택"
msgid "Choose Service"
msgstr "서비스 선택"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요."
@@ -1002,28 +1056,15 @@ msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요."
msgid "Choose this color as your avatar"
msgstr "이 색상을 아바타로 선택"
-#: src/components/dialogs/ThreadgateEditor.tsx:91
-#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "답글을 달 수 있는 사람 선택하기"
-
#: src/screens/Signup/StepInfo/index.tsx:171
msgid "Choose your password"
msgstr "비밀번호를 입력하세요"
-#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "모든 레거시 스토리지 데이터 지우기"
-
-#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "모든 레거시 스토리지 데이터 지우기 (이후 다시 시작)"
-
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "모든 스토리지 데이터 지우기"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)"
@@ -1032,11 +1073,7 @@ msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)"
msgid "Clear search query"
msgstr "검색어 지우기"
-#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "모든 레거시 스토리지 데이터를 지웁니다"
-
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "모든 스토리지 데이터를 지웁니다"
@@ -1052,10 +1089,18 @@ msgstr "계정 비활성화에 대한 자세한 내용을 보려면 이곳을
msgid "Click here for more information."
msgstr "자세한 내용을 보려면 이곳을 클릭하세요."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "이곳을 클릭하여 {tag}의 태그 메뉴 열기"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr "이 게시물의 인용 게시물을 비활성화하려면 클릭하세요."
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr "이 게시물의 인용 게시물을 활성화하려면 클릭하세요."
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "클릭하여 메시지를 다시 보내기"
@@ -1069,12 +1114,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "다그닥 🐴 다그닥 🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1095,7 +1140,7 @@ msgid "Close bottom drawer"
msgstr "하단 서랍 닫기"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "대화 상자 닫기"
@@ -1119,8 +1164,8 @@ msgstr "대화 상자 닫기"
msgid "Close navigation footer"
msgstr "탐색 푸터 닫기"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "이 대화 상자 닫기"
@@ -1132,7 +1177,7 @@ msgstr "하단 탐색 막대를 닫습니다"
msgid "Closes password update alert"
msgstr "비밀번호 변경 알림을 닫습니다"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다"
@@ -1140,11 +1185,11 @@ msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다"
msgid "Closes viewer for header image"
msgstr "헤더 이미지 뷰어를 닫습니다"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "사용자 목록 접기"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "이 알림에 대한 사용자 목록을 축소합니다"
@@ -1158,27 +1203,31 @@ msgstr "코미디"
msgid "Comics"
msgstr "만화"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "커뮤니티 가이드라인"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "온보딩 완료 후 계정 사용 시작"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "챌린지 완료하기"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "최대 {MAX_GRAPHEME_LENGTH}자 길이까지 글을 작성할 수 있습니다"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "답글 작성하기"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr "압축 중..."
+
#: src/components/moderation/LabelPreference.tsx:81
msgid "Configure content filtering setting for category: {name}"
msgstr "{name} 카테고리에 대한 콘텐츠 필터링 설정을 구성합니다."
@@ -1210,11 +1259,11 @@ msgstr "콘텐츠 언어 설정 확인"
msgid "Confirm delete account"
msgstr "계정 삭제 확인"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "나이를 확인하세요:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "생년월일 확인"
@@ -1232,7 +1281,8 @@ msgstr "인증 코드"
msgid "Connecting..."
msgstr "연결 중…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "지원에 연락하기"
@@ -1240,24 +1290,24 @@ msgstr "지원에 연락하기"
msgid "Content Blocked"
msgstr "콘텐츠 차단됨"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "콘텐츠 필터"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "콘텐츠 언어"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "콘텐츠를 사용할 수 없음"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "콘텐츠 경고"
@@ -1269,7 +1319,7 @@ msgstr "콘텐츠 경고"
msgid "Context menu backdrop, click to close the menu."
msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "계속"
@@ -1282,7 +1332,7 @@ msgstr "{0}(으)로 계속하기 (현재 로그인)"
msgid "Continue thread..."
msgstr "스레드 더 보기..."
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1301,7 +1351,7 @@ msgstr "요리"
msgid "Copied"
msgstr "복사됨"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "빌드 버전 클립보드에 복사됨"
@@ -1309,8 +1359,8 @@ msgstr "빌드 버전 클립보드에 복사됨"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "클립보드에 복사됨"
@@ -1344,12 +1394,12 @@ msgstr "링크 복사"
msgid "Copy Link"
msgstr "링크 복사"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "리스트 링크 복사"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "게시물 링크 복사"
@@ -1358,8 +1408,8 @@ msgstr "게시물 링크 복사"
msgid "Copy message text"
msgstr "메시지 텍스트 복사"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "게시물 텍스트 복사"
@@ -1367,15 +1417,11 @@ msgstr "게시물 텍스트 복사"
msgid "Copy QR code"
msgstr "QR 코드 복사"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "저작권 정책"
-#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
-
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
msgstr "대화에서 나갈 수 없습니다"
@@ -1384,7 +1430,7 @@ msgstr "대화에서 나갈 수 없습니다"
msgid "Could not load feed"
msgstr "피드를 불러올 수 없습니다"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "리스트를 불러올 수 없습니다"
@@ -1401,7 +1447,7 @@ msgstr "만들기"
msgid "Create a new account"
msgstr "새 계정 만들기"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "새 Bluesky 계정을 만듭니다"
@@ -1411,7 +1457,7 @@ msgstr "스타터 팩 QR 코드 만들기"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "스타터 팩 만들기"
@@ -1419,7 +1465,7 @@ msgstr "스타터 팩 만들기"
msgid "Create a starter pack for me"
msgstr "나를 위한 스타터 팩 만들기"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "계정 만들기"
@@ -1467,26 +1513,34 @@ msgstr "사용자 지정"
msgid "Custom domain"
msgstr "사용자 지정 도메인"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "커뮤니티에서 구축한 맞춤 피드는 새로운 경험을 제공하고 좋아하는 콘텐츠를 찾을 수 있도록 도와줍니다."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "외부 사이트 미디어를 사용자 지정합니다."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr "이 게시물과 상호작용할 수 있는 사람을 사용자 지정합니다."
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "어두움"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "어두운 모드"
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr "어두운 테마"
#: src/screens/Signup/StepInfo/index.tsx:191
@@ -1494,15 +1548,15 @@ msgid "Date of birth"
msgstr "생년월일"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "계정 비활성화"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "내 계정 비활성화"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "검토 디버그"
@@ -1511,16 +1565,16 @@ msgid "Debug panel"
msgstr "디버그 패널"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "삭제"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "계정 삭제"
@@ -1536,8 +1590,8 @@ msgstr "앱 비밀번호 삭제"
msgid "Delete app password?"
msgstr "앱 비밀번호를 삭제하시겠습니까?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "대화 신고 기록 삭제"
@@ -1545,7 +1599,7 @@ msgstr "대화 신고 기록 삭제"
msgid "Delete for me"
msgstr "나에게서 삭제"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "리스트 삭제"
@@ -1555,47 +1609,47 @@ msgstr "메시지 삭제"
#: src/components/dms/MessageMenu.tsx:122
msgid "Delete message for me"
-msgstr "내게 보이는 메시지 삭제"
+msgstr "나에게 보이는 메시지 삭제"
#: src/view/com/modals/DeleteAccount.tsx:285
msgid "Delete my account"
msgstr "내 계정 삭제"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "내 계정 삭제…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "게시물 삭제"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "스타터 팩 삭제"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "스타터 팩 삭제"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "이 리스트를 삭제하시겠습니까?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "이 게시물을 삭제하시겠습니까?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "삭제됨"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "삭제된 게시물."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "대화 신고 기록을 삭제합니다"
@@ -1610,11 +1664,25 @@ msgstr "설명"
msgid "Descriptive alt text"
msgstr "설명이 포함된 대체 텍스트"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr "인용 해제"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr "인용을 해제하시겠습니까?"
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사람 조정하기"
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "하고 싶은 말이 없나요?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "어둑함"
@@ -1622,7 +1690,7 @@ msgstr "어둑함"
msgid "Direct messages are here!"
msgstr "다이렉트 메시지가 생겼습니다!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "GIF 자동 재생 끄기"
@@ -1630,29 +1698,33 @@ msgstr "GIF 자동 재생 끄기"
msgid "Disable Email 2FA"
msgstr "이메일 2단계 인증 끄기"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "햅틱 피드백 끄기"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr "자막 사용 안 함"
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "사용 안 함"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "삭제"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "초안 삭제"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "앱이 로그아웃한 사용자에게 내 계정을 표시하지 않도록 설정하기"
@@ -1665,19 +1737,27 @@ msgstr "Discover 피드는 탐색하며 내가 어떤 게시물을 좋아하는
msgid "Discover new custom feeds"
msgstr "새로운 맞춤 피드 찾아보기"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "새 피드 발견하기"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "새 피드 발견하기"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr "닫기"
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr "오류 무시"
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr "시작하기 가이드 닫기"
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "더 큰 대체 텍스트 배지 표시"
@@ -1693,11 +1773,15 @@ msgstr "표시 이름"
msgid "DNS Panel"
msgstr "DNS 패널"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr "내가 팔로우하는 사용자에게는 이 뮤트 단어를 적용하지 않기"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "노출을 포함하지 않습니다."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "하이픈으로 시작하거나 끝나지 않음"
@@ -1711,7 +1795,6 @@ msgstr "도메인을 확인했습니다."
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1730,8 +1813,8 @@ msgstr "완료"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "완료"
@@ -1740,7 +1823,7 @@ msgstr "완료"
msgid "Done{extraText}"
msgstr "완료{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "Bluesky 다운로드"
@@ -1753,6 +1836,10 @@ msgstr "CAR 파일 다운로드"
msgid "Drop to add images"
msgstr "드롭하여 이미지 추가"
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr "기간:"
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "예: alice"
@@ -1793,11 +1880,11 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "편집"
@@ -1806,12 +1893,12 @@ msgctxt "action"
msgid "Edit"
msgstr "편집"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "아바타 편집"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "피드 편집하기"
@@ -1820,7 +1907,12 @@ msgstr "피드 편집하기"
msgid "Edit image"
msgstr "이미지 편집하기"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr "상호작용 설정 편집"
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "리스트 세부 정보 편집"
@@ -1828,10 +1920,10 @@ msgstr "리스트 세부 정보 편집"
msgid "Edit Moderation List"
msgstr "검토 리스트 편집"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "내 피드 편집"
@@ -1839,10 +1931,15 @@ msgstr "내 피드 편집"
msgid "Edit my profile"
msgstr "내 프로필 편집하기"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "사람들 편집하기"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr "게시물 상호작용 설정 편집하기"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1853,7 +1950,7 @@ msgstr "프로필 편집"
msgid "Edit Profile"
msgstr "프로필 편집"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "스타터 팩 편집"
@@ -1861,7 +1958,7 @@ msgstr "스타터 팩 편집"
msgid "Edit User List"
msgstr "사용자 리스트 편집"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "답글을 달 수 있는 사람 편집"
@@ -1873,7 +1970,7 @@ msgstr "내 표시 이름 편집"
msgid "Edit your profile description"
msgstr "내 프로필 설명 편집"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "스타터 팩 편집"
@@ -1882,10 +1979,6 @@ msgstr "스타터 팩 편집"
msgid "Education"
msgstr "교육"
-#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "\"모두\" 또는 \"없음\"을 선택합니다."
-
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
msgid "Email"
@@ -1912,7 +2005,7 @@ msgstr "이메일 변경됨"
msgid "Email verified"
msgstr "이메일 확인됨"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "이메일:"
@@ -1921,8 +2014,8 @@ msgid "Embed HTML code"
msgstr "임베드 HTML 코드"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "게시물 임베드"
@@ -1934,7 +2027,7 @@ msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를
msgid "Enable {0} only"
msgstr "{0}에서만 사용"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "성인 콘텐츠 활성화"
@@ -1943,18 +2036,18 @@ msgstr "성인 콘텐츠 활성화"
msgid "Enable external media"
msgstr "외부 미디어 사용"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "미디어 플레이어를 사용할 외부 사이트"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
-msgstr ""
+msgstr "우선순위 알림 사용"
-#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "내가 팔로우하는 사람들 간의 답글만 표시합니다."
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr "자막 사용"
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -1962,11 +2055,11 @@ msgstr "이 소스에서만 사용"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "사용"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "피드 끝"
@@ -1982,8 +2075,8 @@ msgstr "이 앱 비밀번호의 이름 입력"
msgid "Enter a password"
msgstr "비밀번호 입력"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "단어 또는 태그 입력"
@@ -2028,25 +2121,27 @@ msgstr "사용자 이름 및 비밀번호 입력"
msgid "Error occurred while saving file"
msgstr "파일을 저장하는 동안 오류가 발생했습니다"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "오류:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "모두"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "누구나 답글을 달 수 있음"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr "누구나 이 게시물에 답글을 달 수 있습니다."
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2062,6 +2157,14 @@ msgstr "과도한 멘션 또는 답글"
msgid "Excessive or unwanted messages"
msgstr "과도하거나 원치 않는 메시지"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr "내가 팔로우하는 사용자 제외하기"
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr "내가 팔로우하는 사용자 제외"
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "계정 삭제 프로세스를 종료합니다"
@@ -2079,7 +2182,6 @@ msgid "Exits image view"
msgstr "이미지 보기를 종료합니다"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "검색어 입력을 종료합니다"
@@ -2087,7 +2189,7 @@ msgstr "검색어 입력을 종료합니다"
msgid "Expand alt text"
msgstr "대체 텍스트 확장"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "사용자 목록 펼치기"
@@ -2098,7 +2200,15 @@ msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
-msgstr ""
+msgstr "실험적 기능: 이 설정을 활성화하면 내가 팔로우하는 사용자로부터만 답글 및 인용 알림을 받게 됩니다. 시간이 지남에 따라 더 많은 제어 기능을 계속 추가할 예정입니다."
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr "만료됨"
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr "{0}에 만료"
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
@@ -2108,12 +2218,12 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어."
msgid "Explicit sexual images."
msgstr "노골적인 성적 이미지."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "내 데이터 내보내기"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "내 데이터 내보내기"
@@ -2123,17 +2233,17 @@ msgid "External Media"
msgstr "외부 미디어"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "외부 미디어는 웹사이트가 나와 내 기기에 대한 정보를 수집하도록 할 수 있습니다. \"재생\" 버튼을 누르기 전까지는 어떠한 정보도 전송되거나 요청되지 않습니다."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "외부 미디어 설정"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "외부 미디어 설정"
@@ -2142,8 +2252,8 @@ msgstr "외부 미디어 설정"
msgid "Failed to create app password."
msgstr "앱 비밀번호를 만들지 못했습니다."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "스타터 팩을 만들지 못했습니다"
@@ -2155,16 +2265,16 @@ msgstr "리스트를 만들지 못했습니다. 인터넷 연결을 확인한
msgid "Failed to delete message"
msgstr "메시지를 삭제하지 못했습니다"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "스타터 팩을 삭제하지 못했습니다"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "피드 환경설정을 불러오지 못했습니다"
@@ -2177,12 +2287,12 @@ msgstr "GIF를 불러오지 못했습니다"
msgid "Failed to load past messages"
msgstr "지난 메시지를 불러오지 못했습니다"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "추천 피드를 불러오지 못했습니다"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "추천 팔로우를 불러오지 못했습니다"
@@ -2192,22 +2302,22 @@ msgstr "이미지를 저장하지 못함: {0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "알림 설정을 저장하지 못했습니다. 다시 시도해 주세요"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
msgstr "전송 실패"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "피드를 업데이트하지 못했습니다"
@@ -2216,41 +2326,41 @@ msgstr "피드를 업데이트하지 못했습니다"
msgid "Failed to update settings"
msgstr "설정을 업데이트하지 못했습니다"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "피드"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "{0} 님의 피드"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Feed toggle"
-msgstr "피드 켜거나 끄기"
+msgstr "피드 켜기/끄기"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "피드백"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "피드"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "피드는 사용자가 약간의 코딩 전문 지식만으로 구축할 수 있는 맞춤 알고리즘입니다. <0/>에서 자세한 내용을 확인하세요."
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "피드 업데이트됨"
@@ -2266,7 +2376,7 @@ msgstr "파일을 성공적으로 저장했습니다!"
msgid "Filter from feeds"
msgstr "피드에서 필터링"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "마무리 중"
@@ -2284,7 +2394,7 @@ msgstr "탐색 페이지에서 팔로우할 피드와 계정을 더 찾아보세
msgid "Find posts and users on Bluesky"
msgstr "Bluesky에서 게시물 및 사용자 찾기"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "팔로우 중 피드에 표시되는 콘텐츠를 미세 조정합니다."
@@ -2292,7 +2402,7 @@ msgstr "팔로우 중 피드에 표시되는 콘텐츠를 미세 조정합니다
msgid "Fine-tune the discussion threads."
msgstr "대화 스레드를 미세 조정합니다."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "완료"
@@ -2304,7 +2414,7 @@ msgstr "투어 완료 및 애플리케이션 시작"
msgid "Fitness"
msgstr "건강"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "유연성"
@@ -2318,12 +2428,11 @@ msgid "Flip vertically"
msgstr "세로로 뒤집기"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "팔로우"
@@ -2337,7 +2446,7 @@ msgstr "팔로우"
msgid "Follow {0}"
msgstr "{0} 님을 팔로우"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "{name} 님을 팔로우"
@@ -2350,8 +2459,8 @@ msgstr "7개 계정 팔로우하기"
msgid "Follow Account"
msgstr "계정 팔로우"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "모두 팔로우"
@@ -2359,14 +2468,10 @@ msgstr "모두 팔로우"
msgid "Follow Back"
msgstr "맞팔로우"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "더 많은 계정을 팔로우하고 관심 분야를 연결하여 네트워크를 구축하세요."
-#: src/view/com/profile/ProfileCard.tsx:190
-#~ msgid "Followed by {0}"
-#~ msgstr "{0} 님이 팔로우함"
-
#: src/components/KnownFollowers.tsx:231
msgid "Followed by <0>{0}0>"
msgstr "<0>{0}0> 님이 팔로우함"
@@ -2383,19 +2488,15 @@ msgstr "<0>{0}0> 님과 <1>{1}1> 님이 팔로우함"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0> 님, <1>{1}1> 님 외 {2, plural, other {#}}명이 팔로우함"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "팔로우한 사용자"
-#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "팔로우한 사용자만"
-
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "이(가) 나를 팔로우했습니다"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr "이(가) 나를 맞팔로우했습니다"
@@ -2404,7 +2505,7 @@ msgstr "이(가) 나를 맞팔로우했습니다"
msgid "Followers"
msgstr "팔로워"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "내가 아는 @{0} 님의 팔로워"
@@ -2414,34 +2515,34 @@ msgid "Followers you know"
msgstr "내가 아는 팔로워"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "팔로우 중"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "{0} 님을 팔로우했습니다"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "{name} 님을 팔로우했습니다"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "팔로우 중 피드 설정"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "팔로우 중 피드 설정"
@@ -2453,7 +2554,7 @@ msgstr "팔로우 중 피드는 내가 팔로우하는 사람들의 최신 게
msgid "Follows you"
msgstr "나를 팔로우함"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "나를 팔로우함"
@@ -2470,6 +2571,10 @@ msgstr "보안상의 이유로 이메일 주소로 인증 코드를 보내야
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다. 이 비밀번호를 분실한 경우 새 비밀번호를 생성해야 합니다."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr "무기한"
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2491,7 +2596,7 @@ msgstr "잦은 원치 않는 콘텐츠 게시"
msgid "From @{sanitizedAuthor}"
msgstr "@{sanitizedAuthor} 님의 태그"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/>에서"
@@ -2504,9 +2609,9 @@ msgstr "갤러리"
msgid "Generate a starter pack"
msgstr "스타터 팩 만들기"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
-msgstr ""
+msgstr "도움말"
#: src/components/dms/MessagesNUX.tsx:168
msgid "Get started"
@@ -2533,41 +2638,38 @@ msgstr "프로필에 얼굴 달기"
msgid "Glaring violations of law or terms of service"
msgstr "명백한 법률 또는 서비스 이용약관 위반 행위"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "뒤로"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "뒤로"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189
-#~ msgid "Go back to previous screen"
-#~ msgstr "이전 화면으로 돌아갑니다"
-
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "이전 단계로 돌아가기"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "이전 단계로 돌아갑니다"
@@ -2604,7 +2706,7 @@ msgstr "사용자의 프로필로 가기"
msgid "Graphic Media"
msgstr "그래픽 미디어"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr "절반은 완료!"
@@ -2612,7 +2714,7 @@ msgstr "절반은 완료!"
msgid "Handle"
msgstr "핸들"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "햅틱"
@@ -2620,7 +2722,7 @@ msgstr "햅틱"
msgid "Harassment, trolling, or intolerance"
msgstr "괴롭힘, 분쟁 유발 또는 차별"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "해시태그"
@@ -2628,12 +2730,12 @@ msgstr "해시태그"
msgid "Hashtag: #{tag}"
msgstr "해시태그: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "문제가 있나요?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "도움말"
@@ -2645,6 +2747,10 @@ msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가
msgid "Here is your app password."
msgstr "앱 비밀번호입니다."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr "숨겨진 리스트"
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2652,30 +2758,45 @@ msgstr "앱 비밀번호입니다."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "숨기기"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "숨기기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:390
-#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "게시물 숨기기"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr "나에게서 게시물 숨기기"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr "모두에게서 답글 숨기기"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr "나에게서 답글 숨기기"
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "콘텐츠 숨기기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "이 게시물을 숨기시겠습니까?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr "이 답글을 숨기시겠습니까?"
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "사용자 리스트 숨기기"
@@ -2707,12 +2828,12 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "검토 서비스를 불러올 수 없습니다."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "홈"
@@ -2745,7 +2866,7 @@ msgstr "인증 코드가 있습니다"
msgid "I have my own domain"
msgstr "내 도메인을 가지고 있습니다"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "확인"
@@ -2758,15 +2879,15 @@ msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환
msgid "If none are selected, suitable for all ages."
msgstr "아무것도 선택하지 않으면 모든 연령대에 적합하다는 뜻입니다."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "해당 국가의 법률에 따라 아직 성인이 아닌 경우, 부모 또는 법적 보호자가 대신 이 약관을 읽어야 합니다."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "이 게시물을 삭제하면 다시 복구할 수 없습니다."
@@ -2838,10 +2959,14 @@ msgstr "비밀번호를 입력합니다"
msgid "Input your preferred hosting provider"
msgstr "선호하는 호스팅 제공자를 입력합니다"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "사용자 핸들을 입력합니다"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr "상호작용 제한됨"
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "다이렉트 메시지 소개"
@@ -2851,7 +2976,7 @@ msgstr "다이렉트 메시지 소개"
msgid "Invalid 2FA confirmation code."
msgstr "잘못된 2단계 인증 코드입니다."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "유효하지 않거나 지원되지 않는 게시물 기록"
@@ -2867,7 +2992,7 @@ msgstr "친구 초대하기"
msgid "Invite code"
msgstr "초대 코드"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "초대 코드가 올바르지 않습니다. 코드를 올바르게 입력했는지 확인한 후 다시 시도하세요."
@@ -2895,14 +3020,14 @@ msgstr "개인적인 초대"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "아직은 나밖에 없습니다. 위에서 검색하여 스타터 팩에 더 많은 사람을 추가하세요."
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "채용"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "Bluesky 가입하기"
@@ -2931,11 +3056,11 @@ msgstr "라벨"
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "라벨은 사용자 및 콘텐츠에 대한 주석입니다. 네트워크를 숨기고, 경고하고, 분류하는 데 사용할 수 있습니다."
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "내 계정의 라벨"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "내 콘텐츠의 라벨"
@@ -2943,16 +3068,16 @@ msgstr "내 콘텐츠의 라벨"
msgid "Language selection"
msgstr "언어 선택"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "언어 설정"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "언어 설정"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "언어"
@@ -2961,21 +3086,26 @@ msgstr "언어"
msgid "Latest"
msgstr "최신"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "더 알아보기"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr "Bluesky에 대해 더 알아보기"
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보세요."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "이 경고에 대해 더 알아보기"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Bluesky에서 공개되는 항목에 대해 자세히 알아보세요."
@@ -3012,10 +3142,6 @@ msgstr "Bluesky 떠나기"
msgid "left to go."
msgstr "명 남았습니다."
-#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "레거시 스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다."
-
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
msgstr "직접 선택하기"
@@ -3025,12 +3151,13 @@ msgstr "직접 선택하기"
msgid "Let's get your password reset!"
msgstr "비밀번호를 재설정해 봅시다!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "출발!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "밝음"
@@ -3038,8 +3165,8 @@ msgstr "밝음"
msgid "Like 10 posts"
msgstr "10개 게시물에 좋아요 누르기"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요"
@@ -3049,22 +3176,23 @@ msgid "Like this feed"
msgstr "이 피드에 좋아요 표시"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "좋아요 표시한 사용자"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "좋아요 표시한 사용자"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "이(가) 내 맞춤 피드를 좋아합니다"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "이(가) 내 게시물을 좋아합니다"
@@ -3072,11 +3200,11 @@ msgstr "이(가) 내 게시물을 좋아합니다"
msgid "Likes"
msgstr "좋아요"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "이 게시물을 좋아요 표시합니다"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "리스트"
@@ -3084,20 +3212,28 @@ msgstr "리스트"
msgid "List Avatar"
msgstr "리스트 아바타"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "리스트 차단됨"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "{0} 님의 리스트"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "리스트 삭제됨"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr "리스트가 숨겨졌습니다"
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr "리스트 숨겨짐"
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "리스트 뮤트됨"
@@ -3105,20 +3241,20 @@ msgstr "리스트 뮤트됨"
msgid "List Name"
msgstr "리스트 이름"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "리스트 차단 해제됨"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "리스트 언뮤트됨"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "리스트"
@@ -3142,10 +3278,10 @@ msgstr "추천 팔로우 더 불러오기"
msgid "Load new notifications"
msgstr "새 알림 불러오기"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "새 게시물 불러오기"
@@ -3153,7 +3289,7 @@ msgstr "새 게시물 불러오기"
msgid "Loading..."
msgstr "불러오는 중…"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "로그"
@@ -3169,7 +3305,7 @@ msgstr "로그인 또는 가입"
msgid "Log out"
msgstr "로그아웃"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "로그아웃 표시"
@@ -3205,7 +3341,7 @@ msgstr "나를 위해 만들기"
msgid "Make sure this is where you intend to go!"
msgstr "이곳이 당신이 가고자 하는 곳인지 확인하세요!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "뮤트한 단어 및 태그 관리"
@@ -3214,20 +3350,20 @@ msgstr "뮤트한 단어 및 태그 관리"
msgid "Mark as read"
msgstr "읽음으로 표시"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "미디어"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "멘션한 사용자"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "멘션한 사용자"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "메뉴"
@@ -3258,7 +3394,7 @@ msgstr "메시지가 너무 깁니다"
msgid "Message settings"
msgstr "메시지 설정"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3269,29 +3405,31 @@ msgstr "메시지"
msgid "Misleading Account"
msgstr "오해의 소지가 있는 계정"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr "모드"
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "검토"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "검토 세부 정보"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "{0} 님의 검토 리스트"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "<0/> 님의 검토 리스트"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "내 검토 리스트"
@@ -3303,20 +3441,24 @@ msgstr "검토 리스트 생성됨"
msgid "Moderation list updated"
msgstr "검토 리스트 업데이트됨"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "검토 리스트"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "검토 리스트"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr "검토 설정"
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "검토 설정"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "검토 상태"
@@ -3324,12 +3466,12 @@ msgstr "검토 상태"
msgid "Moderation tools"
msgstr "검토 도구"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "검토자가 콘텐츠에 일반 경고를 설정했습니다."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "더 보기"
@@ -3337,7 +3479,7 @@ msgstr "더 보기"
msgid "More feeds"
msgstr "피드 더 보기"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "옵션 더 보기"
@@ -3353,11 +3495,13 @@ msgstr "영화"
msgid "Music"
msgstr "음악"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "뮤트"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "{truncatedTag} 뮤트"
@@ -3366,11 +3510,11 @@ msgstr "{truncatedTag} 뮤트"
msgid "Mute Account"
msgstr "계정 뮤트"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "계정 뮤트"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "모든 {displayTag} 게시물 뮤트"
@@ -3379,49 +3523,61 @@ msgstr "모든 {displayTag} 게시물 뮤트"
msgid "Mute conversation"
msgstr "대화 뮤트"
-#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "태그에서만 뮤트"
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr "뮤트 범위:"
-#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "글 및 태그에서 뮤트"
-
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "리스트 뮤트"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "이 계정들을 뮤트하시겠습니까?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr "24시간 동안 이 단어 뮤트하기"
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr "30일 동안 이 단어 뮤트하기"
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr "7일 동안 이 단어 뮤트하기"
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "게시물 글 및 태그에서 이 단어 뮤트하기"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "태그에서만 이 단어 뮤트하기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr "뮤트를 해제할 때까지 이 단어 뮤트하기"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "스레드 뮤트"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "단어 및 태그 뮤트"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "뮤트됨"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "뮤트한 계정"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "뮤트한 계정"
@@ -3430,7 +3586,7 @@ msgstr "뮤트한 계정"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물이 사라집니다. 뮤트 목록은 완전히 비공개로 유지됩니다."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "\"{0}\" 님이 뮤트함"
@@ -3438,7 +3594,7 @@ msgstr "\"{0}\" 님이 뮤트함"
msgid "Muted words & tags"
msgstr "뮤트한 단어 및 태그"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호작용할 수 있지만 해당 계정의 게시물을 보거나 해당 계정으로부터 알림을 받을 수 없습니다."
@@ -3447,7 +3603,7 @@ msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호
msgid "My Birthday"
msgstr "내 생년월일"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "내 피드"
@@ -3455,11 +3611,11 @@ msgstr "내 피드"
msgid "My Profile"
msgstr "내 프로필"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "내 저장한 피드"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "내 저장한 피드"
@@ -3484,7 +3640,7 @@ msgstr "이름 또는 설명이 커뮤니티 기준을 위반함"
msgid "Nature"
msgstr "자연"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr "{0}(으)로 이동"
@@ -3498,7 +3654,7 @@ msgstr "스타터 팩으로 이동합니다"
msgid "Navigates to the next screen"
msgstr "다음 화면으로 이동합니다"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "내 프로필로 이동합니다"
@@ -3506,7 +3662,7 @@ msgstr "내 프로필로 이동합니다"
msgid "Need to report a copyright violation?"
msgstr "저작권 위반을 신고해야 하나요?"
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "팔로워 또는 데이터에 대한 접근 권한을 잃지 않습니다."
@@ -3514,7 +3670,7 @@ msgstr "팔로워 또는 데이터에 대한 접근 권한을 잃지 않습니
msgid "Nevermind, create a handle for me"
msgstr "취소하고 내 핸들 만들기"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "새로 만들기"
@@ -3550,12 +3706,12 @@ msgctxt "action"
msgid "New post"
msgstr "새 게시물"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "새 게시물"
@@ -3589,10 +3745,10 @@ msgstr "뉴스"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3603,17 +3759,17 @@ msgstr "다음"
msgid "Next image"
msgstr "다음 이미지"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "아니요"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "설명 없음"
@@ -3630,12 +3786,12 @@ msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있
msgid "No feeds found. Try searching for something else."
msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요."
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "더 이상 {0} 님을 팔로우하지 않음"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "253자를 초과하지 않음"
@@ -3647,7 +3803,7 @@ msgstr "아직 메시지가 없습니다"
msgid "No more conversations to show"
msgstr "더 이상 표시할 대화가 없습니다"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "아직 알림이 없습니다."
@@ -3658,6 +3814,10 @@ msgstr "아직 알림이 없습니다."
msgid "No one"
msgstr "없음"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr "이 게시물은 작성자 외에는 누구도 인용할 수 없습니다."
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr "아직 게시물이 없습니다."
@@ -3671,11 +3831,11 @@ msgstr "결과 없음"
msgid "No results"
msgstr "결과 없음"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "결과를 찾을 수 없음"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "\"{query}\"에 대한 결과를 찾을 수 없습니다"
@@ -3696,14 +3856,10 @@ msgstr "\"{search}\"에 대한 검색 결과를 찾을 수 없습니다."
msgid "No thanks"
msgstr "사용하지 않음"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "없음"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "아무도 답글을 달 수 없음"
-
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
msgid "Nobody has liked this yet. Maybe you should be the first!"
@@ -3717,7 +3873,7 @@ msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세
msgid "Non-sexual Nudity"
msgstr "선정적이지 않은 노출"
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "찾을 수 없음"
@@ -3728,12 +3884,12 @@ msgid "Not right now"
msgstr "나중에 하기"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "공유 관련 참고 사항"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 Bluesky 앱과 웹사이트에서만 내 콘텐츠가 표시되는 것을 제한하며, 다른 앱에서는 이 설정을 준수하지 않을 수 있습니다. 다른 앱과 웹사이트에서는 로그아웃한 사용자에게 내 콘텐츠가 계속 표시될 수 있습니다."
@@ -3743,16 +3899,16 @@ msgstr "빈 페이지"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "알림 필터"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "알림 설정"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "알림 설정"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -3762,14 +3918,14 @@ msgstr "알림음"
msgid "Notification Sounds"
msgstr "알림음"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "알림"
@@ -3794,12 +3950,12 @@ msgid "Off"
msgstr "끄기"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "이런!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "이런! 뭔가 잘못되었습니다."
@@ -3817,13 +3973,13 @@ msgstr "오래된 순"
#: src/components/StarterPack/QrCode.tsx:69
msgid "on"
-msgstr ""
+msgstr "on"
#: src/lib/hooks/useTimeAgo.ts:81
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "온보딩 재설정"
@@ -3831,7 +3987,7 @@ msgstr "온보딩 재설정"
msgid "Onboarding tour step {0}: {1}"
msgstr "온보딩 투어 단계 {0}: {1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다."
@@ -3839,11 +3995,11 @@ msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다.
msgid "Only .jpg and .png files are supported"
msgstr ".jpg 및 .png 파일만 지원합니다"
-#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "{0}만 답글을 달 수 있음"
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "{0}만 답글을 달 수 있습니다."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "문자, 숫자, 하이픈만 포함"
@@ -3851,7 +4007,7 @@ msgstr "문자, 숫자, 하이픈만 포함"
msgid "Oops, something went wrong!"
msgstr "이런, 뭔가 잘못되었습니다!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -3860,11 +4016,11 @@ msgstr "이런, 뭔가 잘못되었습니다!"
msgid "Oops!"
msgstr "이런!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "공개성"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "{name} 님의 프로필 단축 메뉴 열기"
@@ -3877,8 +4033,8 @@ msgstr "아바타 생성기 열기"
msgid "Open conversation options"
msgstr "대화 옵션 열기"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "이모티콘 선택기 열기"
@@ -3886,7 +4042,7 @@ msgstr "이모티콘 선택기 열기"
msgid "Open feed options menu"
msgstr "피드 옵션 메뉴 열기"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "링크를 인앱 브라우저로 열기"
@@ -3902,20 +4058,20 @@ msgstr "뮤트한 단어 및 태그 설정 열기"
msgid "Open navigation"
msgstr "내비게이션 열기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "게시물 옵션 메뉴 열기"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "스타터 팩 메뉴 열기"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "스토리북 페이지 열기"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "시스템 로그 열기"
@@ -3923,11 +4079,11 @@ msgstr "시스템 로그 열기"
msgid "Opens {numItems} options"
msgstr "{numItems}번째 옵션을 엽니다"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "이 스레드에 답글을 달 수 있는 사람을 선택하는 대화 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "접근성 설정을 엽니다"
@@ -3935,19 +4091,23 @@ msgstr "접근성 설정을 엽니다"
msgid "Opens additional details for a debug entry"
msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr "모양 설정을 엽니다"
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "기기에서 카메라를 엽니다"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "대화 설정을 엽니다"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "답글 작성 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "구성 가능한 언어 설정을 엽니다"
@@ -3955,7 +4115,7 @@ msgstr "구성 가능한 언어 설정을 엽니다"
msgid "Opens device photo gallery"
msgstr "기기의 사진 갤러리를 엽니다"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "외부 임베드 설정을 엽니다"
@@ -3977,27 +4137,27 @@ msgstr "GIF 선택 대화 상자를 엽니다"
msgid "Opens list of invite codes"
msgstr "초대 코드 목록을 엽니다"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "계정 비활성화 확인을 위한 대화 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "계정 삭제 확인을 위한 대화 상자를 엽니다. 이메일 코드가 필요합니다"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Bluesky 비밀번호 변경을 위한 대화 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "새로운 Bluesky 핸들을 선택하기 위한 대화 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Bluesky 계정 데이터(저장소)를 다운로드하기 위한 대화 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "이메일 인증을 위한 대화 상자를 엽니다"
@@ -4005,7 +4165,7 @@ msgstr "이메일 인증을 위한 대화 상자를 엽니다"
msgid "Opens modal for using custom domain"
msgstr "사용자 지정 도메인을 사용하기 위한 대화 상자를 엽니다"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "검토 설정을 엽니다"
@@ -4013,15 +4173,15 @@ msgstr "검토 설정을 엽니다"
msgid "Opens password reset form"
msgstr "비밀번호 재설정 양식을 엽니다"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "모든 저장한 피드 화면을 엽니다"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "비밀번호 설정을 엽니다"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "팔로우 중 피드 설정을 엽니다"
@@ -4029,38 +4189,42 @@ msgstr "팔로우 중 피드 설정을 엽니다"
msgid "Opens the linked website"
msgstr "연결된 웹사이트를 엽니다"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "스토리북 페이지를 엽니다"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "시스템 로그 페이지를 엽니다"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "스레드 설정을 엽니다"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "이 프로필을 엽니다"
#: src/view/com/composer/videos/SelectVideoBtn.tsx:54
msgid "Opens video picker"
-msgstr ""
+msgstr "동영상 선택기를 엽니다"
#: src/view/com/util/forms/DropdownButton.tsx:293
msgid "Option {0} of {numItems}"
msgstr "{numItems}개 중 {0}번째 옵션"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "선택 사항으로 아래에 추가 정보를 입력하세요."
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr "옵션:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "또는 다음 옵션을 결합하세요."
@@ -4080,6 +4244,10 @@ msgstr "기타"
msgid "Other account"
msgstr "다른 계정"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr "다른 계정"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "기타…"
@@ -4088,7 +4256,7 @@ msgstr "기타…"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Bluesky 운영진이 신고를 검토한 결과, 귀하의 Bluesky 대화 접속을 비활성화하기로 결정했습니다."
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "페이지를 찾을 수 없음"
@@ -4117,19 +4285,24 @@ msgid "Password updated!"
msgstr "비밀번호 변경됨"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "일시 정지"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr "동영상 일시 정지"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "사람들"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "@{0} 님이 팔로우한 사람들"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "@{0} 님을 팔로우하는 사람들"
@@ -4143,7 +4316,7 @@ msgstr "사진 보관함에 접근할 수 있는 권한이 거부되었습니다
#: src/components/StarterPack/Wizard/WizardListCard.tsx:55
msgid "Person toggle"
-msgstr "사람 켜거나 끄기"
+msgstr "사람 켜기/끄기"
#: src/screens/Onboarding/index.tsx:28
#: src/screens/Onboarding/state.ts:94
@@ -4159,7 +4332,7 @@ msgid "Pictures meant for adults."
msgstr "성인용 사진."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "홈에 고정"
@@ -4171,11 +4344,12 @@ msgstr "홈에 고정"
msgid "Pinned Feeds"
msgstr "고정한 피드"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "내 피드에 고정됨"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "재생"
@@ -4187,6 +4361,11 @@ msgstr "{0} 재생"
msgid "Play or pause the GIF"
msgstr "GIP를 재생하거나 일시 정지합니다"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr "동영상 재생"
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4196,16 +4375,16 @@ msgstr "동영상 재생"
msgid "Plays the GIF"
msgstr "GIF를 재생합니다"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "핸들을 입력하세요."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "비밀번호를 입력하세요."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "인증 캡차를 완료해 주세요."
@@ -4221,11 +4400,11 @@ msgstr "앱 비밀번호의 이름을 입력하세요. 모든 공백 문자는
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "이 앱 비밀번호에 대해 고유한 이름을 입력하거나 무작위로 생성된 이름을 사용합니다."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "뮤트할 단어나 태그 또는 문구를 입력하세요"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "이메일을 입력하세요."
@@ -4238,7 +4417,7 @@ msgstr "초대 코드를 입력하세요."
msgid "Please enter your password as well:"
msgstr "비밀번호를 입력하세요."
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "{0} 님이 이 라벨을 잘못 적용했다고 생각하는 이유를 설명해 주세요"
@@ -4255,7 +4434,7 @@ msgstr "@{0}(으)로 로그인하세요"
msgid "Please Verify Your Email"
msgstr "이메일 인증하기"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "링크 카드를 완전히 불러올 때까지 기다려주세요"
@@ -4268,45 +4447,50 @@ msgstr "정치"
msgid "Porn"
msgstr "음란물"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "게시하기"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "게시물"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "{0} 님의 게시물"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "@{0} 님의 게시물"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "게시물 삭제됨"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "게시물 숨김"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "뮤트한 단어로 숨겨진 게시물"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "내가 숨긴 게시물"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr "게시물 상호작용 설정"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "게시물 언어"
@@ -4315,23 +4499,23 @@ msgstr "게시물 언어"
msgid "Post Languages"
msgstr "게시물 언어"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "게시물을 찾을 수 없음"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "게시물"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "게시물"
-#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "게시물의 글 및 태그에 따라 게시물을 뮤트할 수 있습니다."
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr "게시물을 텍스트, 태그 또는 둘 다에 따라 뮤트할 수 있습니다. 많은 게시물에 자주 등장하는 단어는 게시물이 표시되지 않을 수 있으므로 피하는 것이 좋습니다."
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4343,7 +4527,7 @@ msgstr "오해의 소지가 있는 링크"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "설정 저장됨"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -4353,7 +4537,7 @@ msgstr "다시 연결을 시도하려면 누르기"
msgid "Press to change hosting provider"
msgstr "호스팅 제공자를 변경하려면 누릅니다"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4368,7 +4552,7 @@ msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요
msgid "Previous image"
msgstr "이전 이미지"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "주 언어"
@@ -4378,18 +4562,18 @@ msgstr "내 팔로우 먼저 표시"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "우선순위 알림"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "개인정보"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "개인정보 처리방침"
@@ -4401,16 +4585,16 @@ msgstr "다른 사용자와 비공개로 대화하세요."
msgid "Processing..."
msgstr "처리 중…"
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "프로필"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "프로필"
@@ -4418,11 +4602,11 @@ msgstr "프로필"
msgid "Profile updated"
msgstr "프로필 업데이트됨"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "이메일을 인증하여 계정을 보호하세요."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "공공성"
@@ -4430,15 +4614,15 @@ msgstr "공공성"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "일괄 뮤트하거나 차단할 수 있는 공개적이고 공유 가능한 사용자 목록입니다."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "피드를 탐색할 수 있는 공개적이고 공유 가능한 목록입니다."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "게시물 게시하기"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "답글 게시하기"
@@ -4458,13 +4642,46 @@ msgstr "QR 코드를 사진 보관함에 저장했습니다."
msgid "Quick tip"
msgstr "빠른 팁"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "게시물 인용"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr "인용을 다시 연결했습니다"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr "인용을 성공적으로 해제했습니다"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr "게시물 인용 비활성화됨"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr "게시물 인용 활성화됨"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr "인용 설정"
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr "인용"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr "이 게시물의 인용"
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "무작위"
@@ -4473,15 +4690,32 @@ msgstr "무작위"
msgid "Ratios"
msgstr "비율"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr "인용 다시 연결"
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "계정 재활성화"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr "Bluesky 블로그 읽기"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr "Bluesky 개인정보 처리방침 읽기"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr "Bluesky 서비스 이용약관 읽기"
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "이유:"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "최근 검색"
@@ -4491,21 +4725,22 @@ msgstr "다시 연결"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "알림 새로 고침"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "대화 다시 불러오기"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "제거"
@@ -4513,11 +4748,11 @@ msgstr "제거"
msgid "Remove {displayName} from starter pack"
msgstr "스타터 팩에서 {displayName} 제거"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "계정 제거"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "아바타 제거"
@@ -4530,8 +4765,8 @@ msgid "Remove embed"
msgstr "임베드 제거"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "피드 제거"
@@ -4539,19 +4774,27 @@ msgstr "피드 제거"
msgid "Remove feed?"
msgstr "피드를 제거하시겠습니까?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "내 피드에서 제거"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "내 피드에서 제거하시겠습니까?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr "빠른 액세스에서 제거하시겠습니까?"
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr "저장한 피드에서 제거"
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "이미지 제거"
@@ -4560,24 +4803,24 @@ msgstr "이미지 제거"
msgid "Remove image preview"
msgstr "이미지 미리보기 제거"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "목록에서 뮤트한 단어 제거"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "프로필 제거"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "검색 기록에서 프로필을 제거합니다"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "인용 제거"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "재게시를 취소합니다"
@@ -4585,35 +4828,44 @@ msgstr "재게시를 취소합니다"
msgid "Remove this feed from your saved feeds"
msgstr "저장한 피드에서 이 피드를 제거합니다"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr "작성자에 의해 제거됨"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr "나에 의해 제거됨"
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "리스트에서 제거됨"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "내 피드에서 제거됨"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr "저장한 피드에서 제거됨"
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "내 피드에서 제거됨"
-#: src/view/com/composer/ExternalEmbed.tsx:88
-#~ msgid "Removes default thumbnail from {0}"
-#~ msgstr "{0}에서 기본 미리보기 이미지를 제거합니다"
-
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "인용된 게시물을 제거합니다"
#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29
msgid "Removes the image preview"
-msgstr ""
+msgstr "이미지 미리보기를 제거합니다"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Discover로 교체"
@@ -4621,39 +4873,66 @@ msgstr "Discover로 교체"
msgid "Replies"
msgstr "답글"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "답글 비활성화됨"
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "이 스레드에 대한 답글이 비활성화됨"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다."
-#: src/view/com/composer/Composer.tsx:507
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "답글"
-#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "답글 필터"
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr "스레드 작성자에 의해 답글 숨겨짐"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr "나에 의해 답글 숨겨짐"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr "답글 설정"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr "답글 설정은 스레드 작성자가 선택합니다"
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "<0><1/>0> 님에게 보내는 답글"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "차단된 게시물에 보내는 답글"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr "게시물에 보내는 답글"
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
-msgstr ""
+msgstr "나에게 보내는 답글"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr "답글 표시 여부 업데이트됨"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr "답글을 성공적으로 숨겼습니다"
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
@@ -4681,7 +4960,7 @@ msgstr "신고 대화 상자"
msgid "Report feed"
msgstr "피드 신고"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "리스트 신고"
@@ -4689,13 +4968,13 @@ msgstr "리스트 신고"
msgid "Report message"
msgstr "메시지 신고"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "게시물 신고"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "스타터 팩 신고"
@@ -4729,47 +5008,48 @@ msgstr "이 스타터 팩 신고하기"
msgid "Report this user"
msgstr "이 사용자 신고하기"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "재게시"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "재게시"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "재게시 또는 게시물 인용"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "재게시한 사용자"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "{0} 님이 재게시함"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "<0><1/>0> 님이 재게시함"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
-msgstr ""
+msgstr "내가 재게시함"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "이(가) 내 게시물을 재게시했습니다"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "이 게시물의 재게시"
@@ -4783,7 +5063,7 @@ msgstr "변경 요청"
msgid "Request Code"
msgstr "코드 요청"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "게시하기 전 대체 텍스트 필수"
@@ -4808,8 +5088,8 @@ msgstr "재설정 코드"
msgid "Reset Code"
msgstr "재설정 코드"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "온보딩 상태 초기화"
@@ -4817,16 +5097,16 @@ msgstr "온보딩 상태 초기화"
msgid "Reset password"
msgstr "비밀번호 재설정"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "설정 상태 초기화"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "온보딩 상태 초기화"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "설정 상태 초기화"
@@ -4840,23 +5120,26 @@ msgid "Retries the last action, which errored out"
msgstr "오류가 발생한 마지막 작업을 다시 시도합니다"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "다시 시도"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "이전 페이지로 돌아갑니다"
@@ -4870,7 +5153,8 @@ msgid "Returns to previous page"
msgstr "이전 페이지로 돌아갑니다"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -4920,7 +5204,7 @@ msgstr "QR 코드 저장"
msgid "Save to my feeds"
msgstr "내 피드에 저장"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "저장한 피드"
@@ -4929,7 +5213,7 @@ msgid "Saved to your camera roll"
msgstr "내 사진 보관함에 저장됨"
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "내 피드에 저장됨"
@@ -4947,8 +5231,8 @@ msgstr "이미지 자르기 설정을 저장합니다"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "인사해 보세요!"
@@ -4957,13 +5241,12 @@ msgstr "인사해 보세요!"
msgid "Science"
msgstr "과학"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "맨 위로 스크롤"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -4972,14 +5255,12 @@ msgstr "맨 위로 스크롤"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "검색"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "\"{query}\"에 대한 검색 결과"
@@ -4987,11 +5268,11 @@ msgstr "\"{query}\"에 대한 검색 결과"
msgid "Search for \"{searchText}\""
msgstr "\"{searchText}\"에 대한 검색 결과"
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "{displayTag} 태그를 사용한 @{authorHandle} 님의 모든 게시물 검색"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "{displayTag} 태그를 사용한 모든 게시물 검색"
@@ -4999,8 +5280,6 @@ msgstr "{displayTag} 태그를 사용한 모든 게시물 검색"
msgid "Search for feeds that you want to suggest to others."
msgstr "다른 사람에게 추천할 피드를 검색하세요."
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "사용자 검색하기"
@@ -5024,23 +5303,27 @@ msgstr "Tenor 검색"
msgid "Security Step Required"
msgstr "보안 단계 필요"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "{truncatedTag} 게시물 보기"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "이 사용자의 {truncatedTag} 게시물 보기"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "<0>{displayTag}0> 게시물 보기"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "이 사용자의 <0>{displayTag}0> 게시물 보기"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr "Bluesky에 지원하기"
+
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "이 가이드"
@@ -5076,7 +5359,11 @@ msgstr "GIF 선택"
msgid "Select GIF \"{0}\""
msgstr "GIF \"{0}\" 선택"
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr "이 단어를 음소거할 기간 선택하기"
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "언어 선택"
@@ -5092,7 +5379,7 @@ msgstr "{numItems}개 중 {i}번째 옵션을 선택합니다"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "{emojiName} 이모티콘을 아바타로 선택하기"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "신고할 검토 서비스를 선택하세요."
@@ -5102,9 +5389,13 @@ msgstr "데이터를 호스팅할 서비스를 선택하세요."
#: src/view/com/composer/videos/SelectVideoBtn.tsx:53
msgid "Select video"
-msgstr ""
+msgstr "동영상 선택"
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr "이 뮤트 단어를 적용할 콘텐츠 선택하기"
+
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "구독하는 피드에 포함할 언어를 선택합니다. 선택하지 않으면 모든 언어가 표시됩니다."
@@ -5116,11 +5407,11 @@ msgstr "앱에 표시되는 기본 텍스트 언어를 선택합니다."
msgid "Select your date of birth"
msgstr "생년월일을 선택하세요"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "아래 옵션에서 관심사를 선택하세요"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다."
@@ -5142,7 +5433,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "이메일 보내기"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "피드백 보내기"
@@ -5157,8 +5448,8 @@ msgstr "게시물을 다음으로 보내기"
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "신고 보내기"
@@ -5171,8 +5462,8 @@ msgstr "{0} 님에게 신고 보내기"
msgid "Send verification email"
msgstr "인증 이메일 보내기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "다이렉트 메시지로 보내기"
@@ -5184,7 +5475,7 @@ msgstr "계정 삭제를 위한 확인 코드가 포함된 이메일을 전송
msgid "Server address"
msgstr "서버 주소"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "생년월일 설정"
@@ -5192,15 +5483,15 @@ msgstr "생년월일 설정"
msgid "Set new password"
msgstr "새 비밀번호 설정"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "피드에서 모든 인용 게시물을 숨기려면 이 설정을 \"아니요\"로 설정합니다. 재게시는 계속 표시됩니다."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "피드에서 모든 답글을 숨기려면 이 설정을 \"아니요\"로 설정합니다."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "피드에서 모든 재게시를 숨기려면 이 설정을 \"아니요\"로 설정합니다."
@@ -5208,7 +5499,7 @@ msgstr "피드에서 모든 재게시를 숨기려면 이 설정을 \"아니요\
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "스레드 보기에 답글을 표시하려면 이 설정을 \"예\"로 설정합니다. 이는 실험적인 기능입니다."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "팔로우 중 피드에 저장한 피드 샘플을 표시하려면 이 설정을 \"예\"로 설정합니다. 이는 실험적인 기능입니다."
@@ -5220,26 +5511,6 @@ msgstr "계정 설정하기"
msgid "Sets Bluesky username"
msgstr "Bluesky 사용자 이름을 설정합니다"
-#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "색상 테마를 어두움으로 설정합니다"
-
-#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "색상 테마를 밝음으로 설정합니다"
-
-#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "색상 테마를 시스템 설정에 맞춥니다"
-
-#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "어두운 테마를 완전히 어둡게 설정합니다"
-
-#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "어두운 테마를 살짝 밝게 설정합니다"
-
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
msgstr "비밀번호 재설정을 위한 이메일을 설정합니다"
@@ -5256,11 +5527,11 @@ msgstr "이미지 비율을 세로로 길게 설정합니다"
msgid "Sets image aspect ratio to wide"
msgstr "이미지 비율을 가로로 길게 설정합니다"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "설정"
@@ -5273,14 +5544,14 @@ msgid "Sexually Suggestive"
msgstr "외설적"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "공유"
@@ -5298,8 +5569,8 @@ msgid "Share a fun fact!"
msgstr "재미있는 사실을 전하세요!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "무시하고 공유"
@@ -5310,7 +5581,7 @@ msgstr "피드 공유"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "링크 공유"
@@ -5328,7 +5599,7 @@ msgstr "링크 공유 대화 상자"
msgid "Share QR code"
msgstr "QR 코드 공유"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "이 스타터 팩 공유하기"
@@ -5340,9 +5611,9 @@ msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니
msgid "Share your favorite feed!"
msgstr "좋아하는 피드를 공유해 보세요!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
-msgstr ""
+msgstr "공유 설정 테스터"
#: src/view/com/modals/LinkWarning.tsx:92
msgid "Shares the linked website"
@@ -5351,7 +5622,7 @@ msgstr "연결된 웹사이트를 공유합니다"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "표시"
@@ -5359,8 +5630,9 @@ msgstr "표시"
msgid "Show alt text"
msgstr "대체 텍스트 표시"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "무시하고 표시"
@@ -5381,19 +5653,23 @@ msgstr "{0} 님과 비슷한 팔로우 표시"
msgid "Show hidden replies"
msgstr "숨겨진 답글 표시"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "이런 항목 덜 보기"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr "무시하고 리스트 표시하기"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "더 보기"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "이런 항목 더 보기"
@@ -5401,15 +5677,15 @@ msgstr "이런 항목 더 보기"
msgid "Show muted replies"
msgstr "뮤트된 답글 표시"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "내 피드에서 게시물 표시"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "인용 게시물 표시"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "답글 표시"
@@ -5417,7 +5693,12 @@ msgstr "답글 표시"
msgid "Show replies by people you follow before all other replies."
msgstr "내가 팔로우하는 사람들의 답글을 다른 모든 답글보다 먼저 표시합니다."
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr "모두에게 답글 표시"
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "재게시 표시"
@@ -5475,11 +5756,15 @@ msgstr "대화에 참여하려면 로그인하거나 계정을 만드세요!"
msgid "Sign into Bluesky or create a new account"
msgstr "Bluesky에 로그인하거나 새 계정 만들기"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "로그아웃"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr "모든 계정 로그아웃"
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5501,7 +5786,7 @@ msgstr "가입 또는 로그인하여 대화에 참여하세요"
msgid "Sign-in Required"
msgstr "로그인 필요"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "로그인한 계정"
@@ -5510,21 +5795,25 @@ msgstr "로그인한 계정"
msgid "Signed in as @{0}"
msgstr "@{0}(으)로 로그인했습니다"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "(이)가 내 스타터 팩으로 가입했습니다"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "스타터 팩 없이 가입하기"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr "비슷한 계정"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "건너뛰기"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "이 단계 건너뛰기"
@@ -5533,12 +5822,11 @@ msgstr "이 단계 건너뛰기"
msgid "Software Dev"
msgstr "소프트웨어 개발"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr "좋아할 만한 다른 피드"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "일부 사람들이 답글을 달 수 있음"
@@ -5557,13 +5845,13 @@ msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요"
msgid "Something went wrong, please try again."
msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
-msgstr ""
+msgstr "문제가 발생했습니다!"
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "죄송합니다. 세션이 만료되었습니다. 다시 로그인해 주세요."
@@ -5575,9 +5863,9 @@ msgstr "답글 정렬"
msgid "Sort replies to the same post by:"
msgstr "동일한 게시물에 대한 답글을 정렬하는 기준입니다."
-#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "출처: <0>{0}0>"
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr "출처: <0>{sourceName}0>"
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -5614,17 +5902,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr "온보딩 투어 창을 시작합니다. 뒤로 이동하지 마세요. 대신 앞으로 이동하여 더 많은 옵션을 보거나 건너뛰려면 누르세요."
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "스타터 팩"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "{0} 님의 스타터 팩"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "스타터 팩이 유효하지 않음"
@@ -5636,31 +5924,31 @@ msgstr "스타터 팩"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "스타터 팩을 사용하면 좋아하는 피드와 사람들을 친구들과 쉽게 공유할 수 있습니다."
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "상태 페이지"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "{1}단계 중 {0}단계"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "스토리북"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "확인"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "구독"
@@ -5676,16 +5964,15 @@ msgstr "라벨러 구독"
msgid "Subscribe to this labeler"
msgstr "이 라벨러 구독하기"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "이 리스트 구독하기"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "추천 계정"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "나를 위한 추천"
@@ -5693,7 +5980,7 @@ msgstr "나를 위한 추천"
msgid "Suggestive"
msgstr "외설적"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -5708,30 +5995,31 @@ msgstr "계정 전환"
msgid "Switch between feeds to control your experience."
msgstr "피드 사이를 전환하여 내 환경을 제어할 수 있습니다."
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "{0}(으)로 전환"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
-msgstr "로그인한 계정을 전환합니다"
+msgstr ""
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "시스템"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "시스템 로그"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "태그"
-
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "태그 메뉴: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr "태그만"
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "세로"
@@ -5740,11 +6028,19 @@ msgstr "세로"
msgid "Tap to dismiss"
msgstr "눌러서 닫기"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr "탭하여 전체화면으로 보기"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr "탭하여 소리 켜기/끄기"
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "탭하여 전체 크기로 봅니다"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr "작업 완료 - 10개 좋아요!"
@@ -5769,11 +6065,11 @@ msgstr "좀 더 자세히 알려주세요"
msgid "Terms"
msgstr "이용약관"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "서비스 이용약관"
@@ -5784,17 +6080,17 @@ msgstr "서비스 이용약관"
msgid "Terms used violate community standards"
msgstr "커뮤니티 기준을 위반하는 용어 사용"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "글"
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr "텍스트 및 태그"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "텍스트 입력 필드"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "감사합니다. 신고를 전송했습니다."
@@ -5802,24 +6098,37 @@ msgstr "감사합니다. 신고를 전송했습니다."
msgid "That contains the following:"
msgstr "텍스트 파일 내용:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "이 핸들은 이미 사용 중입니다."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "스타터 팩을 찾을 수 없습니다."
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr "이상입니다, 여러분!"
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 됩니다."
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr "이 스레드의 작성자가 이 답글을 숨겼습니다."
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr "Bluesky 웹 애플리케이션"
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "커뮤니티 가이드라인을 <0/>(으)로 이동했습니다"
@@ -5828,12 +6137,16 @@ msgstr "커뮤니티 가이드라인을 <0/>(으)로 이동했습니다"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "저작권 정책을 <0/>(으)로 이동했습니다"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr "Discover 피드"
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr "이제 Discover 피드는 사용자가 무엇을 좋아하는지 알게 됩니다"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다."
@@ -5841,11 +6154,11 @@ msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운
msgid "The feed has been replaced with Discover."
msgstr "피드를 Discover로 교체했습니다."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "내 계정에 다음 라벨이 적용되었습니다."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "내 콘텐츠에 다음 라벨이 적용되었습니다."
@@ -5853,8 +6166,8 @@ msgstr "내 콘텐츠에 다음 라벨이 적용되었습니다."
msgid "The following steps will help customize your Bluesky experience."
msgstr "다음 단계는 Bluesky 환경을 맞춤 설정하는 데 도움이 됩니다."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "게시물이 삭제되었을 수 있습니다."
@@ -5862,7 +6175,11 @@ msgstr "게시물이 삭제되었을 수 있습니다."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr "선택한 동영상이 100MB를 초과합니다."
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다."
@@ -5899,24 +6216,24 @@ msgid "There was an issue connecting to Tenor."
msgstr "Tenor에 연결하는 동안 문제가 발생했습니다."
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "서버에 연결하는 동안 문제가 발생했습니다"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "서버에 연결하는 동안 문제가 발생했습니다"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "알림을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요."
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요."
@@ -5924,13 +6241,13 @@ msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 이곳을
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "신고를 전송하는 동안 문제가 발생했습니다. 인터넷 연결을 확인해 주세요."
@@ -5952,16 +6269,19 @@ msgstr "앱 비밀번호를 가져오는 동안 문제가 발생했습니다"
msgid "There was an issue! {0}"
msgstr "문제가 발생했습니다! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "애플리케이션에 예기치 않은 문제가 발생했습니다. 이런 일이 발생하면 저희에게 알려주세요!"
@@ -5970,11 +6290,11 @@ msgstr "애플리케이션에 예기치 않은 문제가 발생했습니다. 이
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Bluesky에 신규 사용자가 몰리고 있습니다! 최대한 빨리 계정을 활성화하겠습니다."
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "이 {screenDescription}에 다음 플래그가 지정되었습니다:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "이 계정의 프로필을 보려면 로그인해야 합니다."
@@ -5982,9 +6302,9 @@ msgstr "이 계정의 프로필을 보려면 로그인해야 합니다."
msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
msgstr "이 계정은 하나 이상의 검토 리스트에 의해 차단되었습니다. 차단을 해제하려면 해당 리스트로 직접 이동하여 이 사용자를 제거하세요."
-#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "이 이의신청은 <0>{0}0>에게 보내집니다."
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr "이 이의신청은 <0>{sourceName}0>에게 보내집니다."
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6006,8 +6326,8 @@ msgstr "이 콘텐츠는 검토자로부터 일반 경고를 받았습니다."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "이 콘텐츠는 {0}에서 호스팅됩니다. 외부 미디어를 사용하시겠습니까?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "관련 사용자 중 한 명이 다른 사용자를 차단했기 때문에 이 콘텐츠를 사용할 수 없습니다."
@@ -6033,7 +6353,7 @@ msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "이 피드는 비어 있습니다."
@@ -6049,15 +6369,15 @@ msgstr "이 정보는 다른 사용자와 공유되지 않습니다."
msgid "This is important in case you ever need to change your email or reset your password."
msgstr "이는 이메일을 변경하거나 비밀번호를 재설정해야 할 때 중요한 정보입니다."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "이 라벨은 {0}이(가) 적용했습니다."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "이 라벨은 작성자가 적용했습니다."
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "이 라벨은 내가 적용했습니다."
@@ -6067,9 +6387,13 @@ msgstr "이 라벨러는 라벨을 게시하지 않았으며 활성화되어 있
#: src/view/com/modals/LinkWarning.tsx:72
msgid "This link is taking you to the following website:"
-msgstr "이 링크를 클릭하면 다음 웹사이트로 이동합니다:"
+msgstr "이 링크를 클릭하면 다음 웹사이트로 이동합니다."
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr "<0>{0}0> 님이 만든 이 목록은 이름이나 설명에 Bluesky의 커뮤니티 가이드라인을 위반할 가능성이 있는 내용이 포함되어 있습니다."
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "이 리스트는 비어 있습니다."
@@ -6081,23 +6405,31 @@ msgstr "이 검토 서비스는 사용할 수 없습니다. 자세한 내용은
msgid "This name is already in use"
msgstr "이 이름은 이미 사용 중입니다"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "이 게시물은 삭제되었습니다."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "이 게시물은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "이 게시물을 피드에서 숨깁니다."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다."
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "이 프로필은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자신과 다른 사용자 모두의 후속 답글에 대한 알림이 뮤트됩니다."
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "이 서비스는 서비스 이용약관이나 개인정보 처리방침을 제공하지 않습니다."
@@ -6114,8 +6446,8 @@ msgstr "이 사용자는 팔로워가 없습니다."
msgid "This user has blocked you"
msgstr "이 사용자는 나를 차단했습니다"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "이 사용자는 나를 차단했습니다. 이 사용자의 콘텐츠를 볼 수 없습니다."
@@ -6123,11 +6455,11 @@ msgstr "이 사용자는 나를 차단했습니다. 이 사용자의 콘텐츠
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "이 사용자는 자신의 콘텐츠가 로그인한 사용자에게만 표시되도록 요청했습니다."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "이 사용자는 내가 차단한 <0>{0}0> 리스트에 포함되어 있습니다."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "이 사용자는 내가 뮤트한 <0>{0}0> 리스트에 포함되어 있습니다."
@@ -6139,28 +6471,32 @@ msgstr "이 사용자는 새로 가입했습니다. 언제 가입했는지 자
msgid "This user isn't following anyone."
msgstr "이 사용자는 아무도 팔로우하지 않았습니다."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "뮤트한 단어에서 {0}이(가) 삭제됩니다. 나중에 언제든지 다시 추가할 수 있습니다."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr "뮤트한 단어에서 \"{0}\"을(를) 삭제합니다. 나중에 언제든지 다시 추가할 수 있습니다."
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr "빠른 액세스 목록에서 @{0}을(를) 제거합니다."
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr "모든 사용자의 인용 게시물에서 해당 게시물이 삭제되고 자리 표시자로 대체됩니다."
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "스레드 설정"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "스레드 설정"
-#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "스레드 설정 업데이트됨"
-
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "스레드 모드"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "스레드 설정"
@@ -6176,15 +6512,11 @@ msgstr "대화를 신고하려면 대화 화면에서 해당 메시지 중 하
msgid "To whom would you like to send this report?"
msgstr "이 신고를 누구에게 보내시겠습니까?"
-#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "뮤트한 단어 옵션 사이를 전환합니다."
-
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "드롭다운 열기 및 닫기"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "성인 콘텐츠 활성화 또는 비활성화 전환"
@@ -6199,10 +6531,10 @@ msgstr "변형"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "번역"
@@ -6215,7 +6547,7 @@ msgstr "다시 시도"
msgid "TV"
msgstr "TV"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "2단계 인증"
@@ -6227,11 +6559,11 @@ msgstr "메시지를 입력하세요"
msgid "Type:"
msgstr "유형:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "리스트 차단 해제"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "리스트 언뮤트"
@@ -6239,12 +6571,12 @@ msgstr "리스트 언뮤트"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하세요."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "삭제할 수 없음"
@@ -6255,7 +6587,7 @@ msgstr "삭제할 수 없음"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "차단 해제"
@@ -6279,9 +6611,9 @@ msgstr "계정 차단 해제"
msgid "Unblock Account?"
msgstr "계정을 차단 해제하시겠습니까?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "재게시 취소"
@@ -6290,10 +6622,6 @@ msgctxt "action"
msgid "Unfollow"
msgstr "언팔로우"
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "언팔로우"
-
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
msgstr "{0} 님을 언팔로우"
@@ -6307,12 +6635,14 @@ msgstr "계정 언팔로우"
msgid "Unlike this feed"
msgstr "이 피드 좋아요 취소"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "언뮤트"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "{truncatedTag} 언뮤트"
@@ -6321,7 +6651,7 @@ msgstr "{truncatedTag} 언뮤트"
msgid "Unmute Account"
msgstr "계정 언뮤트"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "모든 {tag} 게시물 언뮤트"
@@ -6329,13 +6659,21 @@ msgstr "모든 {tag} 게시물 언뮤트"
msgid "Unmute conversation"
msgstr "알림 언뮤트"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "스레드 언뮤트"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr "동영상 음소거 해제"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr "음소거 해제됨"
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "고정 해제"
@@ -6343,11 +6681,11 @@ msgstr "고정 해제"
msgid "Unpin from home"
msgstr "홈에서 고정 해제"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "검토 리스트 고정 해제"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "내 피드에서 고정 해제됨"
@@ -6355,16 +6693,25 @@ msgstr "내 피드에서 고정 해제됨"
msgid "Unsubscribe"
msgstr "구독 취소"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr "리스트 구독 취소"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "이 라벨러 구독 취소하기"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr "리스트 구독 취소됨"
+
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Unwanted Sexual Content"
msgstr "원치 않는 성적 콘텐츠"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "리스트에서 {displayName} 업데이트"
@@ -6372,6 +6719,14 @@ msgstr "리스트에서 {displayName} 업데이트"
msgid "Update to {handle}"
msgstr "{handle}로 변경"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr "인용 업데이트 실패"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr "답글 표시 여부 업데이트 실패"
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "업데이트 중…"
@@ -6384,20 +6739,20 @@ msgstr "대신 사진 업로드하기"
msgid "Upload a text file to:"
msgstr "텍스트 파일 업로드 경로:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "카메라에서 업로드"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "파일에서 업로드"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6445,12 +6800,12 @@ msgstr "이 비밀번호와 핸들을 사용하여 다른 앱에 로그인하세
msgid "Used by:"
msgstr "사용 계정:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "사용자 차단됨"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr " \"{0}\"에서 차단된 사용자"
@@ -6458,30 +6813,28 @@ msgstr " \"{0}\"에서 차단된 사용자"
msgid "User blocked by list"
msgstr "리스트로 사용자 차단됨"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "리스트로 사용자 차단됨"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "나를 차단한 사용자"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "나를 차단한 사용자"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "{0} 님의 사용자 리스트"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "<0/> 님의 사용자 리스트"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "내 사용자 리스트"
@@ -6493,7 +6846,7 @@ msgstr "사용자 리스트 생성됨"
msgid "User list updated"
msgstr "사용자 리스트 업데이트됨"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "사용자 리스트"
@@ -6501,13 +6854,13 @@ msgstr "사용자 리스트"
msgid "Username or email address"
msgstr "사용자 이름 또는 이메일 주소"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "사용자"
-#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "<0/> 님이 팔로우한 사용자"
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr "<0>@{0}0> 님이 팔로우한 사용자"
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -6516,7 +6869,7 @@ msgstr "<0/> 님이 팔로우한 사용자"
msgid "Users I follow"
msgstr "내가 팔로우하는 사용자"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "\"{0}\"에 있는 사용자"
@@ -6532,15 +6885,15 @@ msgstr "값:"
msgid "Verify DNS Record"
msgstr "DNS 레코드 인증"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "이메일 인증"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "내 이메일 인증하기"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "내 이메일 인증하기"
@@ -6557,31 +6910,40 @@ msgstr "텍스트 파일 인증"
msgid "Verify Your Email"
msgstr "이메일 인증하기"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "버전 {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr "동영상"
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "비디오 게임"
-#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
-
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "{0} 님의 아바타를 봅니다"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "{0} 님의 프로필 보기"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr "{displayName} 님의 프로필 보기"
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "차단한 사용자의 프로필 보기"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr "자세한 정보를 위해 블로그 글 보기"
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "디버그 항목 보기"
@@ -6594,7 +6956,7 @@ msgstr "세부 정보 보기"
msgid "View details for reporting a copyright violation"
msgstr "저작권 위반 신고에 대한 세부 정보 보기"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "전체 스레드 보기"
@@ -6605,12 +6967,12 @@ msgstr "이 라벨에 대한 정보 보기"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "프로필 보기"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "아바타 보기"
@@ -6622,10 +6984,22 @@ msgstr "{0} 님이 제공하는 라벨링 서비스 보기"
msgid "View users who like this feed"
msgstr "이 피드를 좋아하는 사용자 보기"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr "내가 차단한 계정 보기"
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
-msgstr "내 피드를 보거나 새 피드를 탐색합니다"
+msgstr "내 피드를 보거나 새 피드 탐색하기"
+
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr "내 검토 리스트 보기"
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr "내가 뮤트한 계정 보기"
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
@@ -6658,7 +7032,7 @@ msgstr "이 대화를 불러올 수 없습니다"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "계정이 준비될 때까지 {estimatedTime}이(가) 걸릴 것으로 예상됩니다."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기억하세요."
@@ -6666,19 +7040,15 @@ msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "팔로우한 사용자의 게시물이 부족합니다. 대신 <0/>의 최신 게시물을 표시합니다."
-#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "게시물이 표시되지 않을 수 있으므로 많은 게시물에 자주 등장하는 단어는 피하는 것이 좋습니다."
-
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "생년월일 설정을 불러올 수 없습니다. 다시 시도해 주세요."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "현재 구성된 라벨러를 불러올 수 없습니다."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 시도해 주세요. 계속 실패하면 이 과정을 건너뛸 수 있습니다."
@@ -6686,7 +7056,7 @@ msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시
msgid "We will let you know when your account is ready."
msgstr "계정이 준비되면 알려드리겠습니다."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다."
@@ -6694,15 +7064,15 @@ msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다."
msgid "We're having network issues, try again"
msgstr "네트워크 문제가 발생했습니다. 다시 시도하세요"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "함께하게 되어 정말 기뻐요!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제가 계속되면 리스트 작성자인 @{handleOrDid}에게 문의하세요."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다. 다시 시도해 주세요."
@@ -6710,11 +7080,11 @@ msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다.
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다시 시도해 주세요."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다."
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "죄송합니다. 페이지를 찾을 수 없습니다."
@@ -6731,7 +7101,7 @@ msgstr "다시 돌아오셨군요!"
msgid "Welcome, friend!"
msgstr "잘 오셨습니다!"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "어떤 관심사가 있으신가요?"
@@ -6741,7 +7111,7 @@ msgstr "스타터 팩의 이름을 무엇으로 할까요?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "무슨 일이 일어나고 있나요?"
@@ -6753,23 +7123,19 @@ msgstr "이 게시물에 어떤 언어가 사용되나요?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "알고리즘 피드에 어떤 언어를 표시하시겠습니까?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr "누가 이 게시물과 상호작용할 수 있나요?"
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "누구의 메시지를 허용하시겠습니까?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "답글을 달 수 있는 사람"
-#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "답글을 달 수 있는 사람 대화 상자"
-
-#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "누가 답글을 달 수 있나요?"
-
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
msgid "Whoops!"
@@ -6812,12 +7178,12 @@ msgstr "가로"
msgid "Write a message"
msgstr "메시지를 입력하세요"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "게시물 작성"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "답글 작성하기"
@@ -6827,10 +7193,10 @@ msgid "Writers"
msgstr "작가"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -6841,9 +7207,17 @@ msgstr "예"
msgid "Yes, deactivate"
msgstr "비활성화"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
-msgstr "예, 이 스타터 팩을 삭제합니다"
+msgstr "이 스타터 팩 삭제하기"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr "해제"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr "숨기기"
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
@@ -6853,7 +7227,8 @@ msgstr "내 계정 재활성화"
msgid "Yesterday, {time}"
msgstr "어제 {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "나"
@@ -6911,11 +7286,11 @@ msgstr "아직 초대 코드가 없습니다! Bluesky를 좀 더 오래 사용
msgid "You don't have any pinned feeds."
msgstr "고정한 피드가 없습니다."
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "저장한 피드가 없습니다."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "작성자를 차단했거나 작성자가 나를 차단했습니다."
@@ -6923,9 +7298,9 @@ msgstr "작성자를 차단했거나 작성자가 나를 차단했습니다."
msgid "You have blocked this user"
msgstr "이 사용자를 차단했습니다"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "이 사용자를 차단했습니다. 해당 사용자의 콘텐츠를 볼 수 없습니다."
@@ -6936,20 +7311,20 @@ msgstr "이 사용자를 차단했습니다. 해당 사용자의 콘텐츠를
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "잘못된 코드를 입력했습니다. XXXXX-XXXXX와 같은 형식이어야 합니다."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "내가 이 게시물을 숨겼습니다"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "내가 이 게시물을 숨겼습니다."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "내가 이 계정을 뮤트했습니다."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "내가 이 사용자를 뮤트했습니다"
@@ -6957,12 +7332,12 @@ msgstr "내가 이 사용자를 뮤트했습니다"
msgid "You have no conversations yet. Start one!"
msgstr "아직 대화가 없습니다. 시작해 보세요!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "피드가 없습니다."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "리스트가 없습니다."
@@ -6986,27 +7361,32 @@ msgstr "끝에 도달했습니다"
msgid "You haven't created a starter pack yet!"
msgstr "아직 스타터 팩을 만들지 않았습니다."
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "아직 어떤 단어나 태그도 뮤트하지 않았습니다"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr "내가 이 답글을 숨겼습니다."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "비셀프 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 있습니다."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "이 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 있습니다."
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "피드는 최대 50개까지 추가할 수 있습니다"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr "프로필은 최대 {STARTER_PACK_MAX_SIZE}개까지 추가할 수 있습니다"
-#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "프로필은 최대 50개까지 추가할 수 있습니다"
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr "피드는 최대 3개까지 추가할 수 있습니다"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "가입하려면 만 13세 이상이어야 합니다."
@@ -7022,7 +7402,7 @@ msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을
msgid "You must grant access to your photo library to save the image."
msgstr "이미지를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다"
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "신고하려면 하나 이상의 라벨을 선택해야 합니다."
@@ -7030,11 +7410,11 @@ msgstr "신고하려면 하나 이상의 라벨을 선택해야 합니다."
msgid "You previously deactivated @{0}."
msgstr "이전에 @{0}을(를) 비활성화했습니다."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "이 스레드에 대한 알림을 더 이상 받지 않습니다"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "이제 이 스레드에 대한 알림을 받습니다"
@@ -7054,23 +7434,23 @@ msgstr "나: {defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "나: {short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "계정 생성을 완료하면 추천 사용자 및 피드를 팔로우하게 됩니다."
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다."
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "다음 사람들 외 {0}명을 팔로우하게 됩니다"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "다음 사람들을 바로 팔로우하게 됩니다"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "다음 피드를 구독하게 됩니다"
@@ -7085,12 +7465,12 @@ msgstr "대기 중입니다"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "앱 비밀번호로 로그인했습니다. 계정 비활성화를 계속하려면 원래 비밀번호로 로그인하세요."
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "준비가 끝났습니다!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "이 글에서 단어 또는 태그를 숨기도록 설정했습니다."
@@ -7098,7 +7478,7 @@ msgstr "이 글에서 단어 또는 태그를 숨기도록 설정했습니다."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "내 계정"
@@ -7114,6 +7494,10 @@ msgstr "모든 공개 데이터 레코드가 포함된 계정 저장소를 \"CAR
msgid "Your birth date"
msgstr "생년월일"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr "브라우저가 이 동영상 형식을 지원하지 않습니다. 다른 브라우저를 사용하세요."
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "대화가 사용 중지되었습니다"
@@ -7123,7 +7507,7 @@ msgid "Your choice will be saved, but can be changed later in settings."
msgstr "선택 사항은 저장되며 나중에 설정에서 변경할 수 있습니다."
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7137,7 +7521,7 @@ msgstr "이메일이 변경되었지만 인증되지 않았습니다. 다음 단
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "이메일이 아직 인증되지 않았습니다. 이는 중요한 보안 단계이므로 권장하는 사항입니다."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr "첫 좋아요!"
@@ -7145,7 +7529,7 @@ msgstr "첫 좋아요!"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔로우하여 무슨 일이 일어나고 있는지 확인하세요."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "내 전체 핸들:"
@@ -7153,7 +7537,7 @@ msgstr "내 전체 핸들:"
msgid "Your full handle will be <0>@{0}0>"
msgstr "내 전체 핸들: <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "뮤트한 단어"
@@ -7161,15 +7545,15 @@ msgstr "뮤트한 단어"
msgid "Your password has been changed successfully!"
msgstr "비밀번호를 성공적으로 변경했습니다."
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "게시물을 게시했습니다"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "게시물, 좋아요, 차단 목록은 공개됩니다. 뮤트 목록은 공개되지 않습니다."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "내 프로필"
@@ -7177,7 +7561,7 @@ msgstr "내 프로필"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "내 프로필, 글, 피드 및 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다."
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "내 답글을 게시했습니다"
@@ -7185,6 +7569,6 @@ msgstr "내 답글을 게시했습니다"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "신고가 Bluesky Moderation Service로 보내집니다."
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "내 사용자 핸들"
diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po
index 046d7f9b9c..9093609966 100644
--- a/src/locale/locales/pt-BR/messages.po
+++ b/src/locale/locales/pt-BR/messages.po
@@ -21,7 +21,8 @@ msgstr ""
msgid "(no email)"
msgstr "(sem email)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {{formattedCount} outro} other {{formattedCount} outros}}"
@@ -41,7 +42,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# repost} other {# reposts}}"
@@ -59,16 +60,16 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {seguindo} other {seguindo}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {Curtir (# curtida)} other {Curtir (# curtidas)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {curtida} other {curtidas}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, one {Curtido por # usuário} other {Curtido por # usuários}}"
@@ -76,23 +77,37 @@ msgstr "{0, plural, one {Curtido por # usuário} other {Curtido por # usuários}
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {post} other {posts}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {Responder (# resposta)} other {Responder (# respostas)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {repost} other {reposts}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {Descurtir (# curtida)} other {Descurtir (# curtidas)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -100,7 +115,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr "{0} seus feeds"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -136,7 +151,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -163,7 +178,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, one {Curtido por # usuário} other {Curtido por # usuários}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} não lidas"
@@ -176,12 +191,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> membros"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> membros"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -201,11 +216,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {seguidor} other {seguidores}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {seguindo} other {seguindo}}"
@@ -221,6 +236,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr "<0>{followers} 0><1>{pluralizedFollowers}1>"
@@ -254,15 +273,27 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Usuário Inválido"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "Confirmação do 2FA"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Acessar links de navegação e configurações"
@@ -272,16 +303,16 @@ msgid "Access profile and other navigation links"
msgstr "Acessar perfil e outros links de navegação"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Acessibilidade"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "Configurações de acessibilidade"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "Configurações de acessibilidade"
@@ -290,8 +321,8 @@ msgstr "Configurações de acessibilidade"
#~ msgstr "conta"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Conta"
@@ -307,20 +338,20 @@ msgstr "Você está seguindo esta conta"
msgid "Account muted"
msgstr "Conta silenciada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Conta Silenciada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Conta Silenciada por Lista"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Configurações da conta"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Conta removida do acesso rápido"
@@ -337,10 +368,10 @@ msgstr "Você não segue mais esta conta"
msgid "Account unmuted"
msgstr "Conta dessilenciada"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Adicionar"
@@ -356,14 +387,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Adicionar um aviso de conteúdo"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Adicionar um usuário a esta lista"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Adicionar conta"
@@ -394,11 +425,11 @@ msgstr "Adicionar Senha de Aplicativo"
#~ msgid "Add link card:"
#~ msgstr "Adicionar prévia de link:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Adicionar palavra silenciada para as configurações selecionadas"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Adicionar palavras/tags silenciadas"
@@ -422,7 +453,7 @@ msgstr "Adicionar o feed padrão com as pessoas que você segue"
msgid "Add the following DNS record to your domain:"
msgstr "Adicione o seguinte registro DNS ao seu domínio:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -431,7 +462,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "Adicionar às Listas"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Adicionar aos meus feeds"
@@ -440,24 +471,25 @@ msgstr "Adicionar aos meus feeds"
#~ msgstr "Adicionado"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Adicionado à lista"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Adicionado aos meus feeds"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Ajuste o número de curtidas para que uma resposta apareça no seu feed."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Ajuste o número de curtidas para que uma resposta apareça no seu feed."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Conteúdo Adulto"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -465,20 +497,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr "O conteúdo adulto está desabilitado."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Avançado"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Todos os feeds que você salvou, em um único lugar."
@@ -497,6 +529,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -514,7 +554,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Texto alternativo"
@@ -535,14 +575,27 @@ msgstr "Um email foi enviado para {0}. Ele inclui um código de confirmação qu
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Um email foi enviado para seu email anterior, {0}. Ele inclui um código de confirmação que você pode inserir abaixo."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
-msgstr "Tivemos um problema"
+#~ msgid "An error occured"
+#~ msgstr "Tivemos um problema"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
+msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -556,10 +609,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr "Ocorreu um erro ao tentar deletar esta mensagem. Por favor, tente novamente."
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Outro problema"
@@ -574,21 +632,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Ocorreu um problema, por favor tente novamente."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "ocorreu um erro desconhecido"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "e"
@@ -605,6 +667,10 @@ msgstr "GIF animado"
msgid "Anti-Social Behavior"
msgstr "Comportamento anti-social"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Idioma do aplicativo"
@@ -621,26 +687,26 @@ msgstr "O nome da Senha de Aplicativo só pode conter letras, números, traços
msgid "App Password names must be at least 4 characters long."
msgstr "O nome da Senha de Aplicativo precisa ter no mínimo 4 caracteres."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Configurações de Senha de Aplicativo"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Senhas de Aplicativos"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Contestar"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Contestar rótulo \"{0}\""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "Contestação enviada."
@@ -656,10 +722,19 @@ msgstr "Contestação enviada."
msgid "Appeal this decision"
msgstr ""
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Aparência"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -681,7 +756,7 @@ msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{name}\"?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -693,19 +768,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Tem certeza que deseja remover {0} dos seus feeds?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Tem certeza que deseja descartar este rascunho?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Tem certeza?"
@@ -722,13 +797,13 @@ msgstr "Arte"
msgid "Artistic or non-erotic nudity."
msgstr "Nudez artística ou não erótica."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "No mínimo 3 caracteres"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -741,8 +816,8 @@ msgstr "No mínimo 3 caracteres"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Voltar"
@@ -750,7 +825,7 @@ msgstr "Voltar"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Com base no seu interesse em {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Básicos"
@@ -758,7 +833,7 @@ msgstr "Básicos"
msgid "Birthday"
msgstr "Aniversário"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Aniversário:"
@@ -781,28 +856,27 @@ msgstr "Bloquear Conta"
msgid "Block Account?"
msgstr "Bloquear Conta?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Bloquear contas"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Lista de bloqueio"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Bloquear estas contas?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Bloqueado"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Contas bloqueadas"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Contas Bloqueadas"
@@ -815,7 +889,7 @@ msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir com vo
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir com você. Você não verá o conteúdo deles e eles serão impedidos de ver o seu."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Post bloqueado."
@@ -823,7 +897,7 @@ msgstr "Post bloqueado."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Bloquear não previne este rotulador de rotular a sua conta."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Bloqueios são públicos. Contas bloqueadas não podem te responder, mencionar ou interagir com você."
@@ -831,7 +905,7 @@ msgstr "Bloqueios são públicos. Contas bloqueadas não podem te responder, men
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Bloquear não previne rótulos de serem aplicados na sua conta, mas vai impedir esta conta de interagir com você."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -867,7 +941,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "O Bluesky não mostrará seu perfil e publicações para usuários desconectados. Outros aplicativos podem não honrar esta solicitação. Isso não torna a sua conta privada."
@@ -884,21 +958,23 @@ msgstr "Desfocar imagens e filtrar dos feeds"
msgid "Books"
msgstr "Livros"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -907,11 +983,11 @@ msgstr ""
msgid "Browse other feeds"
msgstr "Navegar por outros feeds"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Empresarial"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "por -"
@@ -927,15 +1003,15 @@ msgstr "Por {0}"
#~ msgid "by @{0}"
#~ msgstr "por @{0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "por <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Ao criar uma conta, você concorda com os {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "por você"
@@ -947,13 +1023,13 @@ msgstr "Câmera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Só pode conter letras, números, espaços, traços e sublinhados. Deve ter pelo menos 4 caracteres, mas não mais de 32 caracteres."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -969,9 +1045,8 @@ msgstr "Só pode conter letras, números, espaços, traços e sublinhados. Deve
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Cancelar"
@@ -999,7 +1074,7 @@ msgstr "Cancelar corte da imagem"
msgid "Cancel profile editing"
msgstr "Cancelar edição do perfil"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Cancelar citação"
@@ -1008,7 +1083,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Cancelar busca"
@@ -1020,17 +1094,17 @@ msgstr "Cancela a abertura do link"
msgid "Change"
msgstr "Trocar"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Alterar"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Alterar usuário"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Alterar Usuário"
@@ -1038,12 +1112,12 @@ msgstr "Alterar Usuário"
msgid "Change my email"
msgstr "Alterar meu email"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Alterar senha"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Alterar Senha"
@@ -1055,7 +1129,7 @@ msgstr "Trocar idioma do post para {0}"
msgid "Change Your Email"
msgstr "Altere o Seu Email"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1067,14 +1141,14 @@ msgstr "Chat silenciado"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "Configurações do Chat"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1111,15 +1185,15 @@ msgstr "Verifique em sua caixa de entrada um e-mail com o código de confirmaç
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Escolha \"Todos\" ou \"Ninguém\""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1127,7 +1201,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1135,7 +1209,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Escolher Serviço"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Escolha os algoritmos que geram seus feeds customizados."
@@ -1150,8 +1224,8 @@ msgstr "Selecionar esta cor como seu avatar"
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1162,18 +1236,18 @@ msgid "Choose your password"
msgstr "Escolha sua senha"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Limpar todos os dados de armazenamento legados"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Limpar todos os dados de armazenamento legados"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Limpar todos os dados de armazenamento legados (reinicie em seguida)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Limpar todos os dados de armazenamento legados (reinicie em seguida)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Limpar todos os dados de armazenamento"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)"
@@ -1183,10 +1257,10 @@ msgid "Clear search query"
msgstr "Limpar busca"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Limpa todos os dados antigos"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Limpa todos os dados antigos"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Limpa todos os dados antigos"
@@ -1206,7 +1280,7 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr "Clique aqui para resolver isso."
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Clique aqui para abrir o menu da tag {tag}"
@@ -1214,6 +1288,14 @@ msgstr "Clique aqui para abrir o menu da tag {tag}"
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr "Clique aqui para abrir o menu da tag #{tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1227,12 +1309,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1253,7 +1335,7 @@ msgid "Close bottom drawer"
msgstr "Fechar parte inferior"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "Fechar janela"
@@ -1277,8 +1359,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr "Fechar o painel de navegação"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Fechar esta janela"
@@ -1290,7 +1372,7 @@ msgstr "Fecha barra de navegação inferior"
msgid "Closes password update alert"
msgstr "Fecha alerta de troca de senha"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Fecha o editor de post e descarta o rascunho"
@@ -1298,11 +1380,11 @@ msgstr "Fecha o editor de post e descarta o rascunho"
msgid "Closes viewer for header image"
msgstr "Fechar o visualizador de banner"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Fecha lista de usuários da notificação"
@@ -1316,27 +1398,31 @@ msgstr "Comédia"
msgid "Comics"
msgstr "Quadrinhos"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Diretrizes da Comunidade"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Completar e começar a usar sua conta"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Complete o captcha"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Escreva posts de até {MAX_GRAPHEME_LENGTH} caracteres"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Escrever resposta"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Configure o filtro de conteúdo por categoria: {0}"
@@ -1372,11 +1458,11 @@ msgstr "Confirmar configurações de idioma de conteúdo"
msgid "Confirm delete account"
msgstr "Confirmar a exclusão da conta"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Confirme sua idade:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Confirme sua data de nascimento"
@@ -1394,7 +1480,8 @@ msgstr "Código de confirmação"
msgid "Connecting..."
msgstr "Conectando..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Contatar suporte"
@@ -1406,24 +1493,24 @@ msgstr "Contatar suporte"
msgid "Content Blocked"
msgstr "Conteúdo bloqueado"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Filtros de conteúdo"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Idiomas do Conteúdo"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Conteúdo Indisponível"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Aviso de Conteúdo"
@@ -1435,7 +1522,7 @@ msgstr "Avisos de conteúdo"
msgid "Context menu backdrop, click to close the menu."
msgstr "Fundo do menu, clique para fechá-lo."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Continuar"
@@ -1448,7 +1535,7 @@ msgstr "Continuar como {0} (já conectado)"
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1475,7 +1562,7 @@ msgstr "Culinária"
msgid "Copied"
msgstr "Copiado"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Versão do aplicativo copiada"
@@ -1483,8 +1570,8 @@ msgstr "Versão do aplicativo copiada"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Copiado"
@@ -1518,12 +1605,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Copiar link da lista"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Copiar link do post"
@@ -1532,8 +1619,8 @@ msgstr "Copiar link do post"
msgid "Copy message text"
msgstr "Copiar texto da mensagem"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Copiar texto do post"
@@ -1541,14 +1628,14 @@ msgstr "Copiar texto do post"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Política de Direitos Autorais"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1558,7 +1645,7 @@ msgstr "Não foi possível sair deste chat"
msgid "Could not load feed"
msgstr "Não foi possível carregar o feed"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Não foi possível carregar a lista"
@@ -1583,7 +1670,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Criar uma nova conta"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Criar uma nova conta do Bluesky"
@@ -1593,7 +1680,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1601,7 +1688,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Criar Conta"
@@ -1657,42 +1744,54 @@ msgstr "Customizado"
msgid "Custom domain"
msgstr "Domínio personalizado"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Feeds customizados feitos pela comunidade te proporcionam novas experiências e te ajudam a encontrar o conteúdo que você mais ama."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Configurar mídia de sites externos."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Escuro"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Modo escuro"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Modo Escuro"
+#~ msgid "Dark Theme"
+#~ msgstr "Modo Escuro"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Data de nascimento"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Testar Moderação"
@@ -1701,16 +1800,16 @@ msgid "Debug panel"
msgstr "Painel de depuração"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Excluir"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Excluir a conta"
@@ -1730,8 +1829,8 @@ msgstr "Excluir senha de aplicativo"
msgid "Delete app password?"
msgstr "Excluir senha de aplicativo?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1739,7 +1838,7 @@ msgstr ""
msgid "Delete for me"
msgstr "Excluir para mim"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Excluir Lista"
@@ -1755,41 +1854,41 @@ msgstr "Excluir mensagem para mim"
msgid "Delete my account"
msgstr "Excluir minha conta"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Excluir minha conta…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Excluir post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Excluir esta lista?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Excluir este post?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Excluído"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Post excluído."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1804,11 +1903,25 @@ msgstr "Descrição"
msgid "Descriptive alt text"
msgstr "Texto alternativo"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Você gostaria de dizer alguma coisa?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Menos escuro"
@@ -1816,7 +1929,7 @@ msgstr "Menos escuro"
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "Desabilitar autoplay em GIFs"
@@ -1824,7 +1937,7 @@ msgstr "Desabilitar autoplay em GIFs"
msgid "Disable Email 2FA"
msgstr "Desabilitar 2FA via e-mail"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "Desabilitar feedback tátil"
@@ -1832,6 +1945,10 @@ msgstr "Desabilitar feedback tátil"
#~ msgid "Disable haptics"
#~ msgstr "Desabilitar feedback tátil"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr "Desabilitar vibrações"
@@ -1841,20 +1958,20 @@ msgstr "Desabilitar feedback tátil"
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Desabilitado"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Descartar"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Descartar rascunho?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Desencorajar aplicativos a mostrar minha conta para usuários desautenticados"
@@ -1867,19 +1984,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr "Descubra novos feeds"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr ""
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Descubra Novos Feeds"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1895,11 +2020,15 @@ msgstr "Nome de Exibição"
msgid "DNS Panel"
msgstr "Painel DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Não inclui nudez."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Não começa ou termina com um hífen"
@@ -1913,7 +2042,6 @@ msgstr "Domínio verificado!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1932,8 +2060,8 @@ msgstr "Feito"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Feito"
@@ -1942,7 +2070,7 @@ msgstr "Feito"
msgid "Done{extraText}"
msgstr "Feito{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -1959,6 +2087,10 @@ msgstr "Solte para adicionar imagens"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "Devido a políticas da Apple, o conteúdo adulto só pode ser habilitado no site após terminar o cadastro."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "ex. alice"
@@ -1999,11 +2131,11 @@ msgstr "ex. Perfis que enchem o saco."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Cada convite só funciona uma vez. Você receberá mais convites periodicamente."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2012,12 +2144,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Editar avatar"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2026,7 +2158,12 @@ msgstr ""
msgid "Edit image"
msgstr "Editar imagem"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Editar detalhes da lista"
@@ -2034,10 +2171,10 @@ msgstr "Editar detalhes da lista"
msgid "Edit Moderation List"
msgstr "Editar lista de moderação"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Editar Meus Feeds"
@@ -2045,10 +2182,15 @@ msgstr "Editar Meus Feeds"
msgid "Edit my profile"
msgstr "Editar meu perfil"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2064,7 +2206,7 @@ msgstr "Editar Perfil"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Editar Feeds Salvos"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2072,7 +2214,7 @@ msgstr ""
msgid "Edit User List"
msgstr "Editar lista de usuários"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2084,7 +2226,7 @@ msgstr "Editar seu nome"
msgid "Edit your profile description"
msgstr "Editar sua descrição"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2094,8 +2236,8 @@ msgid "Education"
msgstr "Educação"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2123,7 +2265,7 @@ msgstr "E-mail Atualizado"
msgid "Email verified"
msgstr "E-mail verificado"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "E-mail:"
@@ -2132,8 +2274,8 @@ msgid "Embed HTML code"
msgstr "Código HTML para incorporação"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Incorporar post"
@@ -2145,7 +2287,7 @@ msgstr "Incorpore este post no seu site. Basta copiar o trecho abaixo e colar no
msgid "Enable {0} only"
msgstr "Habilitar somente {0}"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Habilitar conteúdo adulto"
@@ -2163,7 +2305,7 @@ msgstr "Habilitar conteúdo adulto"
msgid "Enable external media"
msgstr "Habilitar mídia externa"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Habilitar mídia para"
@@ -2172,9 +2314,13 @@ msgstr "Habilitar mídia para"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Ative esta configuração para ver respostas apenas entre as pessoas que você segue."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Ative esta configuração para ver respostas apenas entre as pessoas que você segue."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2182,11 +2328,11 @@ msgstr "Habilitar mídia somente para este site"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Habilitado"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Fim do feed"
@@ -2206,8 +2352,8 @@ msgstr "Insira um nome para esta Senha de Aplicativo"
msgid "Enter a password"
msgstr "Insira uma senha"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Digite uma palavra ou tag"
@@ -2252,25 +2398,27 @@ msgstr "Digite seu nome de usuário e senha"
msgid "Error occurred while saving file"
msgstr "Não foi possível salvar o arquivo"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Não foi possível processar o captcha."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Erro:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Todos"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2286,6 +2434,14 @@ msgstr "Menções ou respostas excessivas"
msgid "Excessive or unwanted messages"
msgstr "Mensagens excessivas ou indesejadas"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Sair do processo de deleção da conta"
@@ -2303,7 +2459,6 @@ msgid "Exits image view"
msgstr "Sair do visualizador de imagem"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Sair da busca"
@@ -2311,7 +2466,7 @@ msgstr "Sair da busca"
msgid "Expand alt text"
msgstr "Expandir texto alternativo"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2324,6 +2479,14 @@ msgstr "Mostrar ou esconder o post a que você está respondendo"
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr "Imagens explícitas ou potencialmente perturbadoras."
@@ -2332,12 +2495,12 @@ msgstr "Imagens explícitas ou potencialmente perturbadoras."
msgid "Explicit sexual images."
msgstr "Imagens sexualmente explícitas."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Exportar meus dados"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Exportar Meus Dados"
@@ -2347,17 +2510,17 @@ msgid "External Media"
msgstr "Mídia Externa"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Mídias externas podem permitir que sites coletem informações sobre você e seu dispositivo. Nenhuma informação é enviada ou solicitada até que você pressione o botão de \"play\"."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Preferências de Mídia Externa"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Preferências de mídia externa"
@@ -2366,8 +2529,8 @@ msgstr "Preferências de mídia externa"
msgid "Failed to create app password."
msgstr "Não foi possível criar senha de aplicativo."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2379,16 +2542,16 @@ msgstr "Não foi possível criar a lista. Por favor tente novamente."
msgid "Failed to delete message"
msgstr "Não foi possível excluir esta mensagem"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Não foi possível excluir o post, por favor tente novamente."
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2410,12 +2573,12 @@ msgstr ""
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Falha ao carregar feeds recomendados"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2435,16 +2598,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr "Não foi possível enviar sua mensagem."
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2453,12 +2616,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Feed"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -2471,19 +2634,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Comentários"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Feeds"
@@ -2491,7 +2654,7 @@ msgstr "Feeds"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "Os feeds são criados por usuários para curadoria de conteúdo. Escolha alguns feeds que você acha interessantes."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Os feeds são algoritmos personalizados que os usuários com um pouco de experiência em programação podem criar. <0/> para mais informações."
@@ -2499,7 +2662,7 @@ msgstr "Os feeds são algoritmos personalizados que os usuários com um pouco de
#~ msgid "Feeds can be topical as well!"
#~ msgstr "Feeds podem ser de assuntos específicos também!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2515,7 +2678,7 @@ msgstr "Arquivo salvo com sucesso!"
msgid "Filter from feeds"
msgstr "Filtrar dos feeds"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Finalizando"
@@ -2545,7 +2708,7 @@ msgstr "Encontre posts e usuários no Bluesky"
#~ msgid "Finding similar accounts..."
#~ msgstr "Procurando contas semelhantes..."
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Ajuste o conteúdo que você vê na sua tela inicial."
@@ -2553,7 +2716,7 @@ msgstr "Ajuste o conteúdo que você vê na sua tela inicial."
msgid "Fine-tune the discussion threads."
msgstr "Ajuste as threads."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2565,7 +2728,7 @@ msgstr ""
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Flexível"
@@ -2579,12 +2742,11 @@ msgid "Flip vertically"
msgstr "Virar verticalmente"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Seguir"
@@ -2598,7 +2760,7 @@ msgstr "Seguir"
msgid "Follow {0}"
msgstr "Seguir {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2611,8 +2773,8 @@ msgstr ""
msgid "Follow Account"
msgstr "Seguir Conta"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2624,7 +2786,7 @@ msgstr ""
msgid "Follow Back"
msgstr "Seguir De Volta"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2660,19 +2822,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Usuários seguidos"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Somente usuários seguidos"
+#~ msgid "Followed users only"
+#~ msgstr "Somente usuários seguidos"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "seguiu você"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2681,7 +2843,7 @@ msgstr ""
msgid "Followers"
msgstr "Seguidores"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2691,34 +2853,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Seguindo"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Seguindo {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Configurações do feed principal"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Configurações do feed principal"
@@ -2730,7 +2892,7 @@ msgstr ""
msgid "Follows you"
msgstr "Segue você"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Segue Você"
@@ -2747,6 +2909,10 @@ msgstr "Por motivos de segurança, precisamos enviar um código de confirmação
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Por motivos de segurança, você não poderá ver esta senha novamente. Se você perder esta senha, terá que gerar uma nova."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2768,7 +2934,7 @@ msgstr "Frequentemente Posta Conteúdo Indesejado"
msgid "From @{sanitizedAuthor}"
msgstr "De @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Por <0/>"
@@ -2781,7 +2947,7 @@ msgstr "Galeria"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2810,24 +2976,25 @@ msgstr "Dê uma cara nova pro seu perfil"
msgid "Glaring violations of law or terms of service"
msgstr "Violações flagrantes da lei ou dos termos de serviço"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Voltar"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Voltar"
@@ -2837,14 +3004,14 @@ msgstr "Voltar"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Voltar para o passo anterior"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2886,7 +3053,7 @@ msgstr "Ir para o perfil deste usuário"
msgid "Graphic Media"
msgstr "Conteúdo Gráfico"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2894,7 +3061,7 @@ msgstr ""
msgid "Handle"
msgstr "Usuário"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "Feedback tátil"
@@ -2902,7 +3069,7 @@ msgstr "Feedback tátil"
msgid "Harassment, trolling, or intolerance"
msgstr "Assédio, intolerância ou \"trollagem\""
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Hashtag"
@@ -2910,12 +3077,12 @@ msgstr "Hashtag"
msgid "Hashtag: #{tag}"
msgstr "Hashtag: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Precisa de ajuda?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Ajuda"
@@ -2939,6 +3106,10 @@ msgstr "As pessoas não vão achar que você é um bot se você criar um avatar
msgid "Here is your app password."
msgstr "Aqui está a sua senha de aplicativo."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2946,30 +3117,50 @@ msgstr "Aqui está a sua senha de aplicativo."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Ocultar"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Esconder"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Ocultar post"
+#~ msgid "Hide post"
+#~ msgstr "Ocultar post"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Esconder o conteúdo"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Ocultar este post?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Ocultar lista de usuários"
@@ -3001,12 +3192,12 @@ msgstr "Hmmmm, parece que estamos com problemas pra carregar isso. Veja mais det
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, não foi possível carregar este serviço de moderação."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Página Inicial"
@@ -3039,7 +3230,7 @@ msgstr "Eu tenho um código"
msgid "I have my own domain"
msgstr "Eu tenho meu próprio domínio"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "Entendi"
@@ -3052,15 +3243,15 @@ msgstr "Se o texto alternativo é longo, mostra o texto completo"
msgid "If none are selected, suitable for all ages."
msgstr "Se nenhum for selecionado, adequado para todas as idades."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Se você ainda não é um adulto de acordo com as leis do seu país, seu responsável ou guardião legal deve ler estes Termos por você."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Se você deletar esta lista, você não poderá recuperá-la."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se você remover este post, você não poderá recuperá-la."
@@ -3136,10 +3327,14 @@ msgstr "Insira sua senha"
msgid "Input your preferred hosting provider"
msgstr "Insira seu provedor de hospedagem"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Insira o usuário"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3149,7 +3344,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Código de confirmação inválido."
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Post inválido"
@@ -3165,7 +3360,7 @@ msgstr "Convide um Amigo"
msgid "Invite code"
msgstr "Convite"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Convite inválido. Verifique se você o inseriu corretamente e tente novamente."
@@ -3197,14 +3392,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Carreiras"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3241,11 +3436,11 @@ msgstr "Rótulos são identificações aplicadas sobre perfis e conteúdos. Eles
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr "rótulos foram aplicados neste {labelTarget}"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Rótulos sobre sua conta"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Rótulos sobre seu conteúdo"
@@ -3253,16 +3448,16 @@ msgstr "Rótulos sobre seu conteúdo"
msgid "Language selection"
msgstr "Seleção de idioma"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Configuração de Idioma"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Configurações de Idiomas"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Idiomas"
@@ -3271,21 +3466,26 @@ msgstr "Idiomas"
msgid "Latest"
msgstr "Mais recentes"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Saiba Mais"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "Saiba mais sobre a decisão de moderação aplicada neste conteúdo."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Saiba mais sobre este aviso"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Saiba mais sobre o que é público no Bluesky."
@@ -3323,8 +3523,8 @@ msgid "left to go."
msgstr "na sua frente."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Armazenamento limpo, você precisa reiniciar o app agora."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Armazenamento limpo, você precisa reiniciar o app agora."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3335,12 +3535,13 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Vamos redefinir sua senha!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Vamos lá!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Claro"
@@ -3352,8 +3553,8 @@ msgstr "Claro"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3363,14 +3564,15 @@ msgid "Like this feed"
msgstr "Curtir este feed"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Curtido por"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Curtido Por"
@@ -3388,11 +3590,11 @@ msgstr "Curtido Por"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Curtido por {likeCount} {0}"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "curtiram seu feed"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "curtiu seu post"
@@ -3400,11 +3602,11 @@ msgstr "curtiu seu post"
msgid "Likes"
msgstr "Curtidas"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Curtidas neste post"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Lista"
@@ -3412,20 +3614,28 @@ msgstr "Lista"
msgid "List Avatar"
msgstr "Avatar da lista"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Lista bloqueada"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Lista por {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Lista excluída"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Lista silenciada"
@@ -3433,20 +3643,20 @@ msgstr "Lista silenciada"
msgid "List Name"
msgstr "Nome da lista"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Lista desbloqueada"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Lista dessilenciada"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Listas"
@@ -3470,10 +3680,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Carregar novas notificações"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Carregar novos posts"
@@ -3481,7 +3691,7 @@ msgstr "Carregar novos posts"
msgid "Loading..."
msgstr "Carregando..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Registros"
@@ -3497,7 +3707,7 @@ msgstr ""
msgid "Log out"
msgstr "Sair"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Visibilidade do seu perfil"
@@ -3537,7 +3747,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Certifique-se de onde está indo!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Gerencie suas palavras/tags silenciadas"
@@ -3546,20 +3756,20 @@ msgstr "Gerencie suas palavras/tags silenciadas"
msgid "Mark as read"
msgstr "Marcar como lida"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Mídia"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "usuários mencionados"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Usuários mencionados"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menu"
@@ -3590,7 +3800,7 @@ msgstr "Mensagem longa demais"
msgid "Message settings"
msgstr "Configurações das mensagens"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3605,29 +3815,31 @@ msgstr "Mensagens"
msgid "Misleading Account"
msgstr "Conta Enganosa"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderação"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Detalhes da moderação"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Lista de moderação por {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Lista de moderação por <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Lista de moderação por você"
@@ -3639,20 +3851,24 @@ msgstr "Lista de moderação criada"
msgid "Moderation list updated"
msgstr "Lista de moderação criada"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Listas de moderação"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Listas de Moderação"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Moderação"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "Moderação"
@@ -3660,12 +3876,12 @@ msgstr "Moderação"
msgid "Moderation tools"
msgstr "Ferramentas de moderação"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "O moderador escolheu um aviso geral neste conteúdo."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Mais"
@@ -3673,7 +3889,7 @@ msgstr "Mais"
msgid "More feeds"
msgstr "Mais feeds"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Mais opções"
@@ -3689,11 +3905,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Silenciar"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Silenciar {truncatedTag}"
@@ -3702,11 +3920,11 @@ msgstr "Silenciar {truncatedTag}"
msgid "Mute Account"
msgstr "Silenciar Conta"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Silenciar contas"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Silenciar posts com {displayTag}"
@@ -3716,14 +3934,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Silenciar apenas tags"
+#~ msgid "Mute in tags only"
+#~ msgstr "Silenciar apenas tags"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Silenciar texto e tags"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Silenciar texto e tags"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Silenciar lista"
@@ -3732,37 +3954,53 @@ msgstr "Silenciar lista"
#~ msgid "Mute notifications"
#~ msgstr "Silenciar notificações"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Silenciar estas contas?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Silenciar esta palavra no conteúdo de um post e tags"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Silenciar esta palavra apenas nas tags de um post"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Silenciar thread"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Silenciar palavras/tags"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Silenciada"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Contas silenciadas"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Contas Silenciadas"
@@ -3771,7 +4009,7 @@ msgstr "Contas Silenciadas"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Contas silenciadas não aparecem no seu feed ou nas suas notificações. Suas contas silenciadas são completamente privadas."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Silenciado por \"{0}\""
@@ -3779,7 +4017,7 @@ msgstr "Silenciado por \"{0}\""
msgid "Muted words & tags"
msgstr "Palavras/tags silenciadas"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Silenciar é privado. Contas silenciadas podem interagir com você, mas você não verá postagens ou receber notificações delas."
@@ -3788,7 +4026,7 @@ msgstr "Silenciar é privado. Contas silenciadas podem interagir com você, mas
msgid "My Birthday"
msgstr "Meu Aniversário"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Meus Feeds"
@@ -3796,11 +4034,11 @@ msgstr "Meus Feeds"
msgid "My Profile"
msgstr "Meu Perfil"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Meus feeds salvos"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Meus Feeds Salvos"
@@ -3825,7 +4063,7 @@ msgstr "Nome ou Descrição Viola os Padrões da Comunidade"
msgid "Nature"
msgstr "Natureza"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3839,7 +4077,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Navega para próxima tela"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Navega para seu perfil"
@@ -3852,7 +4090,7 @@ msgstr "Precisa denunciar uma violação de copyright?"
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Nunca perca o acesso aos seus seguidores e dados."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Nunca perca o acesso aos seus seguidores ou dados."
@@ -3860,7 +4098,7 @@ msgstr "Nunca perca o acesso aos seus seguidores ou dados."
msgid "Nevermind, create a handle for me"
msgstr "Deixa pra lá, crie um usuário pra mim"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Novo"
@@ -3896,12 +4134,12 @@ msgctxt "action"
msgid "New post"
msgstr "Novo post"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Novo post"
@@ -3935,10 +4173,10 @@ msgstr "Notícias"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3954,17 +4192,17 @@ msgstr "Próximo"
msgid "Next image"
msgstr "Próxima imagem"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Não"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Sem descrição"
@@ -3981,12 +4219,12 @@ msgstr "Nenhum GIF em destaque encontrado."
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Você não está mais seguindo {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "No máximo 253 caracteres"
@@ -3998,7 +4236,7 @@ msgstr "Nenhuma mensagem ainda"
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Nenhuma notificação!"
@@ -4009,6 +4247,10 @@ msgstr "Nenhuma notificação!"
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4022,11 +4264,11 @@ msgstr "Nenhum resultado"
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Nenhum resultado encontrado"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Nenhum resultado encontrado para \"{query}\""
@@ -4051,13 +4293,13 @@ msgstr "Nenhum resultado encontrado para \"{search}\"."
msgid "No thanks"
msgstr "Não, obrigado"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Ninguém"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4076,7 +4318,7 @@ msgstr "Nudez não-erótica"
#~ msgid "Not Applicable."
#~ msgstr "Não Aplicável."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Não encontrado"
@@ -4087,12 +4329,12 @@ msgid "Not right now"
msgstr "Agora não"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Nota sobre compartilhamento"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta configuração limita somente a visibilidade do seu conteúdo no site e aplicativo do Bluesky, e outros aplicativos podem não respeitar esta configuração. Seu conteúdo ainda poderá ser exibido para usuários não autenticados por outros aplicativos e sites."
@@ -4104,7 +4346,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4121,14 +4363,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Notificações"
@@ -4157,12 +4399,12 @@ msgid "Off"
msgstr "Desligado"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Opa!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Opa! Algo deu errado."
@@ -4186,7 +4428,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Resetar tutoriais"
@@ -4194,7 +4436,7 @@ msgstr "Resetar tutoriais"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Uma ou mais imagens estão sem texto alternativo."
@@ -4203,14 +4445,14 @@ msgid "Only .jpg and .png files are supported"
msgstr "Apenas imagens .jpg ou .png são permitidas"
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Apenas {0} pode responder."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Apenas {0} pode responder."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Contém apenas letras, números e hífens"
@@ -4218,7 +4460,7 @@ msgstr "Contém apenas letras, números e hífens"
msgid "Oops, something went wrong!"
msgstr "Opa, algo deu errado!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4227,11 +4469,11 @@ msgstr "Opa, algo deu errado!"
msgid "Oops!"
msgstr "Opa!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Abrir"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4244,8 +4486,8 @@ msgstr "Abrir criador de avatar"
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Abrir seletor de emojis"
@@ -4253,7 +4495,7 @@ msgstr "Abrir seletor de emojis"
msgid "Open feed options menu"
msgstr "Abrir opções do feed"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Abrir links no navegador interno"
@@ -4269,20 +4511,20 @@ msgstr "Abrir opções de palavras/tags silenciadas"
msgid "Open navigation"
msgstr "Abrir navegação"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Abrir opções do post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Abre o storybook"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Abrir registros do sistema"
@@ -4290,11 +4532,11 @@ msgstr "Abrir registros do sistema"
msgid "Opens {numItems} options"
msgstr "Abre {numItems} opções"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "Abre as configurações de acessibilidade"
@@ -4306,19 +4548,23 @@ msgstr "Abre detalhes adicionais para um registro de depuração"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Abre a lista de usuários nesta notificação"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Abre a câmera do dispositivo"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Abre o editor de post"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Abre definições de idioma configuráveis"
@@ -4326,7 +4572,7 @@ msgstr "Abre definições de idioma configuráveis"
msgid "Opens device photo gallery"
msgstr "Abre a galeria de fotos do dispositivo"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Abre as configurações de anexos externos"
@@ -4348,27 +4594,27 @@ msgstr "Abre a janela de seleção de GIFs"
msgid "Opens list of invite codes"
msgstr "Abre a lista de códigos de convite"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Abre modal de confirmar a exclusão da conta. Requer código enviado por email"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Abre modal para troca da sua senha do Bluesky"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Abre modal para troca do seu usuário do Bluesky"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Abre modal para baixar os dados da sua conta do Bluesky"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Abre modal para verificação de email"
@@ -4376,7 +4622,7 @@ msgstr "Abre modal para verificação de email"
msgid "Opens modal for using custom domain"
msgstr "Abre modal para usar o domínio personalizado"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Abre configurações de moderação"
@@ -4389,15 +4635,15 @@ msgstr "Abre o formulário de redefinição de senha"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Abre a tela para editar feeds salvos"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Abre a tela com todos os feeds salvos"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Abre as configurações de senha do aplicativo"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Abre as preferências do feed inicial"
@@ -4409,21 +4655,21 @@ msgstr "Abre o link"
#~ msgid "Opens the message settings page"
#~ msgstr "Abre a tela de configurações do chat"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Abre a página do storybook"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Abre a página de log do sistema"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Abre as preferências de threads"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4436,11 +4682,15 @@ msgid "Option {0} of {numItems}"
msgstr "Opção {0} de {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "Se quiser adicionar mais informações, digite abaixo:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Ou combine estas opções:"
@@ -4460,6 +4710,10 @@ msgstr "Outro"
msgid "Other account"
msgstr "Outra conta"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Outro..."
@@ -4468,7 +4722,7 @@ msgstr "Outro..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Página não encontrada"
@@ -4497,19 +4751,24 @@ msgid "Password updated!"
msgstr "Senha atualizada!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "Pausar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Pessoas"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Pessoas seguidas por @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Pessoas seguindo @{0}"
@@ -4539,7 +4798,7 @@ msgid "Pictures meant for adults."
msgstr "Imagens destinadas a adultos."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Fixar na tela inicial"
@@ -4551,11 +4810,12 @@ msgstr "Fixar na Tela Inicial"
msgid "Pinned Feeds"
msgstr "Feeds Fixados"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "Tocar"
@@ -4572,6 +4832,11 @@ msgstr "Reproduzir {0}"
msgid "Play or pause the GIF"
msgstr "Tocar ou pausar o GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4581,16 +4846,16 @@ msgstr "Reproduzir Vídeo"
msgid "Plays the GIF"
msgstr "Reproduz o GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Por favor, escolha seu usuário."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Por favor, escolha sua senha."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Por favor, complete o captcha de verificação."
@@ -4606,11 +4871,11 @@ msgstr "Por favor, insira um nome para a sua Senha de Aplicativo."
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Por favor, insira um nome único para esta Senha de Aplicativo ou use nosso nome gerado automaticamente."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Por favor, insira uma palavra, tag ou frase para silenciar"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Por favor, digite o seu e-mail."
@@ -4623,7 +4888,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Por favor, digite sua senha também:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Por favor, explique por que você acha que este rótulo foi aplicado incorrentamente por {0}"
@@ -4640,7 +4905,7 @@ msgstr "Por favor entre como @{0}"
msgid "Please Verify Your Email"
msgstr "Por favor, verifique seu e-mail"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Aguarde até que a prévia de link termine de carregar"
@@ -4653,45 +4918,50 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Postar"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Post"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Post por {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Post por @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Post excluído"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Post oculto"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Post Escondido por Palavra Silenciada"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Post Escondido por Você"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Idioma do post"
@@ -4700,23 +4970,27 @@ msgstr "Idioma do post"
msgid "Post Languages"
msgstr "Idiomas do Post"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Post não encontrado"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "posts"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Posts"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Posts podem ser silenciados baseados no seu conteúdo, tags ou ambos."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Posts podem ser silenciados baseados no seu conteúdo, tags ou ambos."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4738,7 +5012,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr "Trocar de provedor de hospedagem"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4758,7 +5032,7 @@ msgstr ""
msgid "Previous image"
msgstr "Imagem anterior"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Idioma Principal"
@@ -4770,16 +5044,16 @@ msgstr "Priorizar seus Seguidores"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Privacidade"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Política de Privacidade"
@@ -4791,16 +5065,16 @@ msgstr ""
msgid "Processing..."
msgstr "Processando..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "perfil"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Perfil"
@@ -4808,11 +5082,11 @@ msgstr "Perfil"
msgid "Profile updated"
msgstr "Perfil atualizado"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Proteja a sua conta verificando o seu e-mail."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Público"
@@ -4820,15 +5094,15 @@ msgstr "Público"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Listas públicas e compartilháveis para silenciar ou bloquear usuários em massa."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Listas públicas e compartilháveis que geram feeds."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Publicar post"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Publicar resposta"
@@ -4848,10 +5122,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Citar post"
@@ -4865,6 +5139,39 @@ msgstr "Citar post"
#~ msgid "Quote Post"
#~ msgstr "Citar Post"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Aleatório"
@@ -4873,10 +5180,27 @@ msgstr "Aleatório"
msgid "Ratios"
msgstr "Índices"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -4885,7 +5209,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr "Motivo: {0}"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Buscas Recentes"
@@ -4909,15 +5233,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Remover"
@@ -4925,11 +5250,11 @@ msgstr "Remover"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Remover conta"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Remover avatar"
@@ -4942,8 +5267,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Remover feed"
@@ -4951,19 +5276,27 @@ msgstr "Remover feed"
msgid "Remove feed?"
msgstr "Remover feed?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Remover dos meus feeds"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Remover dos meus feeds?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Remover imagem"
@@ -4972,24 +5305,24 @@ msgstr "Remover imagem"
msgid "Remove image preview"
msgstr "Remover visualização da imagem"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Remover palavra silenciada da lista"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "Remover citação"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Desfazer repost"
@@ -4997,18 +5330,31 @@ msgstr "Desfazer repost"
msgid "Remove this feed from your saved feeds"
msgstr "Remover este feed dos feeds salvos"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Removido da lista"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Removido dos meus feeds"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Removido dos feeds salvos"
@@ -5016,7 +5362,7 @@ msgstr "Removido dos feeds salvos"
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Remover miniatura de {0}"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "Remove o post citado"
@@ -5024,8 +5370,8 @@ msgstr "Remove o post citado"
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "Trocar pelo Discover"
@@ -5033,7 +5379,7 @@ msgstr "Trocar pelo Discover"
msgid "Replies"
msgstr "Respostas"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5041,18 +5387,40 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Respostas para esta thread estão desativadas"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Respostas para esta thread estão desativadas"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Filtros de Resposta"
+#~ msgid "Reply Filters"
+#~ msgstr "Filtros de Resposta"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -5060,23 +5428,36 @@ msgstr "Filtros de Resposta"
#~ msgid "Reply to <0/>"
#~ msgstr "Responder <0/>"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "Responder <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5108,7 +5489,7 @@ msgstr "Janela de denúncia"
msgid "Report feed"
msgstr "Denunciar feed"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Denunciar Lista"
@@ -5116,13 +5497,13 @@ msgstr "Denunciar Lista"
msgid "Report message"
msgstr "Denunciar mensagem"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Denunciar post"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5156,30 +5537,31 @@ msgstr ""
msgid "Report this user"
msgstr "Denunciar este usuário"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Repostar"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Repostar"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Repostar ou citar um post"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Repostado Por"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "Repostado por {0}"
@@ -5187,20 +5569,20 @@ msgstr "Repostado por {0}"
#~ msgid "Reposted by <0/>"
#~ msgstr "Repostado por <0/>"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Repostado por <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "repostou seu post"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Reposts"
@@ -5214,7 +5596,7 @@ msgstr "Solicitar Alteração"
msgid "Request Code"
msgstr "Solicitar Código"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Exigir texto alternativo antes de postar"
@@ -5239,8 +5621,8 @@ msgstr "Código de redefinição"
msgid "Reset Code"
msgstr "Código de Redefinição"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Redefinir tutoriais"
@@ -5248,16 +5630,16 @@ msgstr "Redefinir tutoriais"
msgid "Reset password"
msgstr "Redefinir senha"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Redefinir configurações"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Redefine tutoriais"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Redefine as configurações"
@@ -5271,17 +5653,19 @@ msgid "Retries the last action, which errored out"
msgstr "Tenta a última ação, que deu erro"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Tente novamente"
@@ -5289,9 +5673,10 @@ msgstr "Tente novamente"
#~ msgid "Retry."
#~ msgstr "Tentar novamente."
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Voltar para página anterior"
@@ -5305,7 +5690,8 @@ msgid "Returns to previous page"
msgstr "Voltar para página anterior"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5355,7 +5741,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr "Salvar nos meus feeds"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Feeds Salvos"
@@ -5368,7 +5754,7 @@ msgstr "Imagem salva na galeria."
#~ msgstr "Imagem salva na galeria."
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Adicionado aos seus feeds"
@@ -5386,8 +5772,8 @@ msgstr "Salva o corte da imagem"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5396,13 +5782,12 @@ msgstr ""
msgid "Science"
msgstr "Ciência"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Ir para o topo"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5411,14 +5796,12 @@ msgstr "Ir para o topo"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Buscar"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Pesquisar por \"{query}\""
@@ -5426,11 +5809,11 @@ msgstr "Pesquisar por \"{query}\""
msgid "Search for \"{searchText}\""
msgstr "Pesquisar por \"{searchText}\""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Pesquisar por posts de @{authorHandle} com a tag {displayTag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Pesquisar por posts com a tag {displayTag}"
@@ -5442,8 +5825,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr "Pesquise por alguém para começar um novo chat."
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Buscar usuários"
@@ -5467,28 +5848,32 @@ msgstr "Pesquisar via Tenor"
msgid "Security Step Required"
msgstr "Passo de Segurança Necessário"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Ver posts com {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Ver posts com {truncatedTag} deste usuário"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Ver posts com <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Ver posts com <0>{displayTag}0> deste usuário"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr "Ver perfil"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Veja o guia"
@@ -5528,7 +5913,11 @@ msgstr "Selecionar GIF"
msgid "Select GIF \"{0}\""
msgstr "Selecionar GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Selecionar idiomas"
@@ -5548,7 +5937,7 @@ msgstr "Seleciona opção {i} de {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "Selecione o {emojiName} emoji como avatar"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Selecione o(s) serviço(s) de moderação para reportar"
@@ -5564,11 +5953,15 @@ msgstr "Selecione o serviço que hospeda seus dados."
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Selecione o que você quer (ou não) ver, e cuidaremos do resto."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Selecione quais idiomas você deseja ver nos seus feeds. Se nenhum for selecionado, todos os idiomas serão exibidos."
@@ -5580,11 +5973,11 @@ msgstr "Selecione o idioma do seu aplicativo"
msgid "Select your date of birth"
msgstr "Selecione sua data de nascimento"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Selecione seus interesses"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Selecione seu idioma preferido para as traduções no seu feed."
@@ -5614,7 +6007,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Enviar E-mail"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Enviar comentários"
@@ -5629,8 +6022,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Denunciar"
@@ -5643,8 +6036,8 @@ msgstr "Denunciar via {0}"
msgid "Send verification email"
msgstr "Enviar e-mail de verificação"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5656,7 +6049,7 @@ msgstr "Envia o e-mail com o código de confirmação para excluir a conta"
msgid "Server address"
msgstr "URL do servidor"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Definir data de nascimento"
@@ -5664,15 +6057,15 @@ msgstr "Definir data de nascimento"
msgid "Set new password"
msgstr "Definir uma nova senha"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Defina esta configuração como \"Não\" para ocultar todas as citações do seu feed. Reposts ainda serão visíveis."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Defina esta configuração como \"Não\" para ocultar todas as respostas do seu feed."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Defina esta configuração como \"Não\" para ocultar todos os reposts do seu feed."
@@ -5680,7 +6073,7 @@ msgstr "Defina esta configuração como \"Não\" para ocultar todos os reposts d
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Defina esta configuração como \"Sim\" para mostrar respostas em uma visualização de thread. Este é um recurso experimental."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Defina esta configuração como \"Sim\" para exibir amostras de seus feeds salvos no seu feed inicial. Este é um recurso experimental."
@@ -5693,24 +6086,24 @@ msgid "Sets Bluesky username"
msgstr "Configura o usuário no Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Define o tema para escuro"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Define o tema para escuro"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Define o tema para claro"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Define o tema para claro"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Define o tema para seguir o sistema"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Define o tema para seguir o sistema"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Define o tema escuro para o padrão"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Define o tema escuro para o padrão"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Define o tema escuro para o menos escuro"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Define o tema escuro para o menos escuro"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5728,11 +6121,11 @@ msgstr "Define a proporção da imagem para alta"
msgid "Sets image aspect ratio to wide"
msgstr "Define a proporção da imagem para comprida"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Configurações"
@@ -5745,14 +6138,14 @@ msgid "Sexually Suggestive"
msgstr "Sexualmente Sugestivo"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Compartilhar"
@@ -5770,8 +6163,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Compartilhar assim"
@@ -5782,7 +6175,7 @@ msgstr "Compartilhar feed"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5800,7 +6193,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5812,7 +6205,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5823,7 +6216,7 @@ msgstr "Compartilha o link"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Mostrar"
@@ -5835,8 +6228,9 @@ msgstr "Mostrar"
msgid "Show alt text"
msgstr "Mostrar texto alternativo"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Mostrar mesmo assim"
@@ -5857,19 +6251,23 @@ msgstr "Mostrar usuários parecidos com {0}"
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "Mostrar menos disso"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Mostrar Mais"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "Mostrar mais disso"
@@ -5877,11 +6275,11 @@ msgstr "Mostrar mais disso"
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Mostrar Posts dos Meus Feeds"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Mostrar Citações"
@@ -5897,7 +6295,7 @@ msgstr "Mostrar Citações"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Mostrar reposts no feed Seguindo"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Mostrar Respostas"
@@ -5917,7 +6315,12 @@ msgstr "Mostrar as respostas de pessoas que você segue antes de todas as outras
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "Mostrar respostas com ao menos {0} {value}"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Mostrar Reposts"
@@ -5983,11 +6386,15 @@ msgstr "Faça login ou crie sua conta para entrar na conversa!"
msgid "Sign into Bluesky or create a new account"
msgstr "Faça login no Bluesky ou crie uma nova conta"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Sair"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6009,7 +6416,7 @@ msgstr "Inscreva-se ou faça login para se juntar à conversa"
msgid "Sign-in Required"
msgstr "É Necessário Fazer Login"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Entrou como"
@@ -6018,21 +6425,25 @@ msgstr "Entrou como"
msgid "Signed in as @{0}"
msgstr "autenticado como @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Pular"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Pular"
@@ -6041,12 +6452,11 @@ msgstr "Pular"
msgid "Software Dev"
msgstr "Desenvolvimento de software"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -6069,13 +6479,13 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr "Algo deu errado. Por favor, tente novamente."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Opa! Sua sessão expirou. Por favor, entre novamente."
@@ -6092,7 +6502,11 @@ msgstr "Classificar respostas de um post por:"
#~ msgstr "Fonte:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6130,17 +6544,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6156,7 +6570,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Página de status"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "Página de status"
@@ -6164,27 +6578,27 @@ msgstr "Página de status"
#~ msgid "Step"
#~ msgstr "Passo"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "Passo {0} de {1}"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Armazenamento limpo, você precisa reiniciar o app agora."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Enviar"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Inscrever-se"
@@ -6205,11 +6619,11 @@ msgstr "Inscrever-se no rotulador"
msgid "Subscribe to this labeler"
msgstr "Inscrever-se neste rotulador"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Inscreva-se nesta lista"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6217,8 +6631,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Sugestões de Seguidores"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Sugeridos para você"
@@ -6226,7 +6639,7 @@ msgstr "Sugeridos para você"
msgid "Suggestive"
msgstr "Sugestivo"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6241,30 +6654,35 @@ msgstr "Alterar Conta"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Trocar para {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Troca a conta que você está autenticado"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Sistema"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Log do sistema"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "tag"
+#~ msgid "tag"
+#~ msgstr "tag"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Menu da tag: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Alto"
@@ -6273,11 +6691,19 @@ msgstr "Alto"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Toque para ver tudo"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6302,11 +6728,11 @@ msgstr ""
msgid "Terms"
msgstr "Termos"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Termos de Serviço"
@@ -6318,16 +6744,20 @@ msgid "Terms used violate community standards"
msgstr "Termos utilizados violam as diretrizes da comunidade"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "texto"
+#~ msgid "text"
+#~ msgstr "texto"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Campo de entrada de texto"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Obrigado. Sua denúncia foi enviada."
@@ -6335,19 +6765,23 @@ msgstr "Obrigado. Sua denúncia foi enviada."
msgid "That contains the following:"
msgstr "Contém o seguinte:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Este identificador de usuário já está sendo usado."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6357,6 +6791,15 @@ msgstr "A conta poderá interagir com você após o desbloqueio."
#~ msgid "the author"
#~ msgstr "o(a) autor(a)"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "As Diretrizes da Comunidade foram movidas para <0/>"
@@ -6365,12 +6808,16 @@ msgstr "As Diretrizes da Comunidade foram movidas para <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "A Política de Direitos Autorais foi movida para <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6378,11 +6825,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr "Este feed foi substituído pelo Discover."
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Os seguintes rótulos foram aplicados sobre sua conta."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Os seguintes rótulos foram aplicados sobre seu conteúdo."
@@ -6390,8 +6837,8 @@ msgstr "Os seguintes rótulos foram aplicados sobre seu conteúdo."
msgid "The following steps will help customize your Bluesky experience."
msgstr "Os seguintes passos vão ajudar a customizar sua experiência no Bluesky."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "O post pode ter sido excluído."
@@ -6399,7 +6846,11 @@ msgstr "O post pode ter sido excluído."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "A Política de Privacidade foi movida para <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6444,24 +6895,24 @@ msgstr "Tivemos um problema ao conectar com o Tenor."
#~ msgstr "Tivemos um problema ao conectar neste chat."
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Tivemos um problema ao contatar o servidor deste feed"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Tivemos um problema ao contatar o servidor deste feed"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
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/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Tivemos um problema ao carregar posts. Toque aqui para tentar de novo."
@@ -6469,13 +6920,13 @@ msgstr "Tivemos um problema ao carregar posts. Toque aqui para tentar de novo."
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Tivemos um problema ao carregar esta lista. Toque aqui para tentar de novo."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Tivemos um problema ao carregar suas listas. Toque aqui para tentar de novo."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Tivemos um problema ao enviar sua denúncia. Por favor, verifique sua conexão com a internet."
@@ -6501,16 +6952,19 @@ msgstr "Tivemos um problema ao carregar suas senhas de app."
msgid "There was an issue! {0}"
msgstr "Tivemos um problema! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Tivemos algum problema. Por favor verifique sua conexão com a internet e tente novamente."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Houve um problema inesperado no aplicativo. Por favor, deixe-nos saber se isso aconteceu com você!"
@@ -6523,11 +6977,11 @@ msgstr "Muitos usuários estão tentando acessar o Bluesky! Ativaremos sua conta
#~ msgid "These are popular accounts you might like:"
#~ msgstr "Estas são contas populares que talvez você goste:"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Este {screenDescription} foi reportado:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Esta conta solicitou que os usuários fizessem login para visualizar seu perfil."
@@ -6536,8 +6990,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Esta contestação será enviada para <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Esta contestação será enviada para <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6563,8 +7021,8 @@ msgstr "Este conteúdo recebeu um aviso dos moderadores."
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Este conteúdo é hospedado por {0}. Deseja ativar a mídia externa?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Este conteúdo não está disponível porque um dos usuários bloqueou o outro."
@@ -6596,7 +7054,7 @@ msgstr "Este feed está vazio! Talvez você precise seguir mais usuários ou con
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6616,11 +7074,11 @@ msgstr "Isso é importante caso você precise alterar seu e-mail ou redefinir su
#~ msgid "This label was applied by {0}."
#~ msgstr "Este rótulo foi aplicado por {0}."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "Este rótulo foi aplicado por <0>{0}0>."
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "Este rótulo foi aplicado pelo autor."
@@ -6628,7 +7086,7 @@ msgstr "Este rótulo foi aplicado pelo autor."
#~ msgid "This label was applied by you"
#~ msgstr "Este rótulo foi aplicado por você"
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -6640,7 +7098,11 @@ msgstr "Este rotulador não declarou quais rótulos utiliza e pode não estar fu
msgid "This link is taking you to the following website:"
msgstr "Este link está levando você ao seguinte site:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Esta lista está vazia!"
@@ -6652,23 +7114,35 @@ msgstr "Este serviço de moderação está indisponível. Veja mais detalhes aba
msgid "This name is already in use"
msgstr "Você já tem uma senha com esse nome"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Este post foi excluído."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Este post só pode ser visto por usuários autenticados e não aparecerá para pessoas que não estão autenticadas."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Este post será escondido de todos os feeds."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Este post será escondido de todos os feeds."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Este post só pode ser visto por usuários autenticados e não aparecerá para pessoas que não estão autenticadas."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Este serviço não proveu termos de serviço ou política de privacidade."
@@ -6685,8 +7159,8 @@ msgstr "Este usuário não é seguido por ninguém ainda."
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Este usuário te bloqueou. Você não pode ver este conteúdo."
@@ -6694,11 +7168,11 @@ msgstr "Este usuário te bloqueou. Você não pode ver este conteúdo."
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "Este usuário requisitou que seu conteúdo só seja visível para usuários autenticados."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Este usuário está incluído na lista <0>{0}0>, que você bloqueou."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Este usuário está incluído na lista <0>{0}0>, que você silenciou."
@@ -6714,28 +7188,40 @@ msgstr "Este usuário não segue ninguém ainda."
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Este aviso só está disponível para publicações com mídia anexada."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Isso removerá {0} das suas palavras silenciadas. Você pode adicioná-la novamente depois."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Isso removerá {0} das suas palavras silenciadas. Você pode adicioná-la novamente depois."
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Preferências das Threads"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Preferências das Threads"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Visualização de Threads"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Preferências das Threads"
@@ -6752,14 +7238,14 @@ msgid "To whom would you like to send this report?"
msgstr "Para quem você gostaria de enviar esta denúncia?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Alternar entre opções de uma palavra silenciada"
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Alternar entre opções de uma palavra silenciada"
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Alternar menu suspenso"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Ligar ou desligar conteúdo adulto"
@@ -6774,10 +7260,10 @@ msgstr "Transformações"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Traduzir"
@@ -6790,7 +7276,7 @@ msgstr "Tentar novamente"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "Autenticação de dois fatores (2FA)"
@@ -6802,11 +7288,11 @@ msgstr "Digite sua mensagem aqui"
msgid "Type:"
msgstr "Tipo:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Desbloquear lista"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Dessilenciar lista"
@@ -6814,12 +7300,12 @@ msgstr "Dessilenciar lista"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifique sua conexão à internet."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6830,7 +7316,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Desbloquear"
@@ -6854,9 +7340,9 @@ msgstr "Desbloquear Conta"
msgid "Unblock Account?"
msgstr "Desbloquear Conta?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Desfazer repost"
@@ -6866,8 +7352,8 @@ msgid "Unfollow"
msgstr "Deixar de seguir"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Deixar de seguir"
+#~ msgid "Unfollow"
+#~ msgstr "Deixar de seguir"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6886,12 +7372,14 @@ msgstr "Deixar de seguir"
msgid "Unlike this feed"
msgstr "Descurtir este feed"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Dessilenciar"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Dessilenciar {truncatedTag}"
@@ -6900,7 +7388,7 @@ msgstr "Dessilenciar {truncatedTag}"
msgid "Unmute Account"
msgstr "Dessilenciar conta"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Dessilenciar posts com {displayTag}"
@@ -6912,13 +7400,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr "Dessilenciar notificações"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Dessilenciar thread"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Desafixar"
@@ -6926,11 +7422,11 @@ msgstr "Desafixar"
msgid "Unpin from home"
msgstr "Desafixar da tela inicial"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Desafixar lista de moderação"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -6938,10 +7434,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr "Desinscrever-se"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Desinscrever-se deste rotulador"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr "Conteúdo sexual indesejado"
@@ -6951,7 +7456,7 @@ msgstr "Desinscrever-se deste rotulador"
msgid "Unwanted Sexual Content"
msgstr "Conteúdo Sexual Indesejado"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Atualizar {displayName} nas Listas"
@@ -6959,6 +7464,14 @@ msgstr "Atualizar {displayName} nas Listas"
msgid "Update to {handle}"
msgstr "Alterar para {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Atualizando..."
@@ -6971,20 +7484,20 @@ msgstr "Enviar uma foto"
msgid "Upload a text file to:"
msgstr "Carregar um arquivo de texto para:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Tirar uma foto"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Carregar um arquivo"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7032,12 +7545,12 @@ msgstr "Use esta senha para entrar no outro aplicativo juntamente com seu identi
msgid "Used by:"
msgstr "Usado por:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Usuário Bloqueado"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Usuário Bloqueado por \"{0}\""
@@ -7045,30 +7558,28 @@ msgstr "Usuário Bloqueado por \"{0}\""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Usuário Bloqueado Por Lista"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Usuário Bloqueia Você"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Este Usuário Te Bloqueou"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Lista de usuários por {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Lista de usuários por <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Sua lista de usuários"
@@ -7080,7 +7591,7 @@ msgstr "Lista de usuários criada"
msgid "User list updated"
msgstr "Lista de usuários atualizada"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Listas de Usuários"
@@ -7088,13 +7599,17 @@ msgstr "Listas de Usuários"
msgid "Username or email address"
msgstr "Nome de usuário ou endereço de e-mail"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Usuários"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "usuários seguidos por <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "usuários seguidos por <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7103,7 +7618,7 @@ msgstr "usuários seguidos por <0/>"
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Usuários em \"{0}\""
@@ -7123,15 +7638,15 @@ msgstr "Conteúdo:"
msgid "Verify DNS Record"
msgstr "Verificar registro DNS"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Verificar e-mail"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Verificar meu e-mail"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Verificar Meu Email"
@@ -7152,31 +7667,44 @@ msgstr "Verificar Seu E-mail"
#~ msgid "Version {0}"
#~ msgstr "Versão {0}"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "Versão {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Games"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Ver o avatar de {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Ver depuração"
@@ -7189,7 +7717,7 @@ msgstr "Ver detalhes"
msgid "View details for reporting a copyright violation"
msgstr "Ver detalhes para denunciar uma violação de copyright"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Ver thread completa"
@@ -7200,12 +7728,12 @@ msgstr "Ver informações sobre estes rótulos"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Ver perfil"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Ver o avatar"
@@ -7217,11 +7745,23 @@ msgstr "Ver este rotulador provido por @{0}"
msgid "View users who like this feed"
msgstr "Ver usuários que curtiram este feed"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7253,7 +7793,7 @@ msgstr "Não foi possível carregar esta conversa"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Estimamos que sua conta estará pronta em mais ou menos {estimatedTime}."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Esperamos que você se divirta. Lembre-se, o Bluesky é:"
@@ -7262,8 +7802,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Não temos mais posts de quem você segue. Aqui estão os mais novos de <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Não recomendamos utilizar palavras comuns que aparecem em muitos posts, já que isso pode resultar em filtrar todos eles."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Não recomendamos utilizar palavras comuns que aparecem em muitos posts, já que isso pode resultar em filtrar todos eles."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7273,11 +7813,11 @@ msgstr "Não recomendamos utilizar palavras comuns que aparecem em muitos posts,
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Não foi possível carregar sua data de nascimento. Por favor, tente novamente."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "Não foi possível carregar seus rotuladores."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar configurando a sua conta. Se continuar falhando, você pode pular este fluxo."
@@ -7285,7 +7825,7 @@ msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar con
msgid "We will let you know when your account is ready."
msgstr "Avisaremos quando sua conta estiver pronta."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Usaremos isto para customizar a sua experiência."
@@ -7293,15 +7833,15 @@ msgstr "Usaremos isto para customizar a sua experiência."
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Estamos muito felizes em recebê-lo!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, contate o criador da lista: @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "Não foi possível carregar sua lista de palavras silenciadas. Por favor, tente novamente."
@@ -7309,11 +7849,11 @@ msgstr "Não foi possível carregar sua lista de palavras silenciadas. Por favor
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Lamentamos, mas sua busca não pôde ser concluída. Por favor, tente novamente em alguns minutos."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava procurando."
@@ -7338,7 +7878,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Do que você gosta?"
@@ -7348,7 +7888,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "E aí?"
@@ -7360,22 +7900,26 @@ msgstr "Quais idiomas são usados neste post?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Quais idiomas você gostaria de ver nos seus feeds?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Quem pode responder"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7419,12 +7963,12 @@ msgstr "Largo"
msgid "Write a message"
msgstr "Escreva uma mensagem"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Escrever post"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Escreva sua resposta"
@@ -7434,10 +7978,10 @@ msgid "Writers"
msgstr "Escritores"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7448,10 +7992,18 @@ msgstr "Sim"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7460,7 +8012,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr "Ontem, {time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7526,11 +8079,11 @@ msgstr "Você não tem feeds fixados."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "Você não tem feeds salvos!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Você não tem feeds salvos."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Você bloqueou esta conta ou foi bloqueado por ela."
@@ -7538,9 +8091,9 @@ msgstr "Você bloqueou esta conta ou foi bloqueado por ela."
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Você bloqueou este usuário. Você não pode ver este conteúdo."
@@ -7551,20 +8104,20 @@ msgstr "Você bloqueou este usuário. Você não pode ver este conteúdo."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Você utilizou um código inválido. O código segue este padrão: XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Você escondeu este post"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Você escondeu este post."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Você silenciou esta conta."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Você silenciou este usuário."
@@ -7572,12 +8125,12 @@ msgstr "Você silenciou este usuário."
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Você não tem feeds."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Você não tem listas."
@@ -7605,27 +8158,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "Você não silenciou nenhuma palavra ou tag ainda"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "Você pode contestar estes rótulos se você acha que estão errados."
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Você pode contestar estes rótulos se você acha que estão errados."
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Você precisa ter no mínimo 13 anos de idade para se cadastrar."
@@ -7645,7 +8211,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "Você deve selecionar no mínimo um rotulador"
@@ -7653,11 +8219,11 @@ msgstr "Você deve selecionar no mínimo um rotulador"
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Você não vai mais receber notificações desta thread"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Você vai receber notificações desta thread"
@@ -7677,23 +8243,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7712,12 +8278,12 @@ msgstr "Você está na fila"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Tudo pronto!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Você escolheu esconder uma palavra ou tag deste post."
@@ -7725,7 +8291,7 @@ msgstr "Você escolheu esconder uma palavra ou tag deste post."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Sua conta"
@@ -7741,6 +8307,10 @@ msgstr "O repositório da sua conta, contendo todos os seus dados públicos, pod
msgid "Your birth date"
msgstr "Sua data de nascimento"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -7754,7 +8324,7 @@ msgstr "Sua escolha será salva, mas você pode trocá-la nas configurações de
#~ msgstr "Seu feed inicial é o \"Seguindo\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7768,7 +8338,7 @@ msgstr "Seu e-mail foi atualizado mas não foi verificado. Como próximo passo,
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Seu e-mail ainda não foi verificado. Esta é uma etapa importante de segurança que recomendamos."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7776,7 +8346,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Seu feed inicial está vazio! Siga mais usuários para acompanhar o que está acontecendo."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Seu identificador completo será"
@@ -7784,7 +8354,7 @@ msgstr "Seu identificador completo será"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Seu usuário completo será <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Suas palavras silenciadas"
@@ -7792,15 +8362,15 @@ msgstr "Suas palavras silenciadas"
msgid "Your password has been changed successfully!"
msgstr "Sua senha foi alterada com sucesso!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Seu post foi publicado"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Suas postagens, curtidas e bloqueios são públicos. Silenciamentos são privados."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Seu perfil"
@@ -7808,7 +8378,7 @@ msgstr "Seu perfil"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Sua resposta foi publicada"
@@ -7816,6 +8386,6 @@ msgstr "Sua resposta foi publicada"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "Sua denúncia será enviada para o serviço de moderação do Bluesky"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Seu identificador de usuário"
diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po
index 5baac65fbe..7147379194 100644
--- a/src/locale/locales/tr/messages.po
+++ b/src/locale/locales/tr/messages.po
@@ -21,7 +21,8 @@ msgstr ""
msgid "(no email)"
msgstr "(e-posta yok)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -45,7 +46,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr ""
@@ -63,16 +64,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -80,23 +81,37 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -104,7 +119,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -140,7 +155,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -179,7 +194,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} okunmamış"
@@ -192,12 +207,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> üyeleri"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> üyeleri"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -217,11 +232,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -237,6 +252,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr ""
@@ -270,10 +289,22 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Geçersiz Kullanıcı Adı"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/view/com/util/moderation/LabelInfo.tsx:45
#~ msgid "A content warning has been applied to this {0}."
#~ msgstr "Bu {0} için bir içerik uyarısı uygulandı."
@@ -286,7 +317,7 @@ msgstr ""
#~ msgid "A new version of the app is available. Please update to continue using the app."
#~ msgstr "Uygulamanın yeni bir sürümü mevcut. Devam etmek için güncelleyin."
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Gezinme bağlantılarına ve ayarlara erişin"
@@ -296,16 +327,16 @@ msgid "Access profile and other navigation links"
msgstr "Profil ve diğer gezinme bağlantılarına erişin"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Erişilebilirlik"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr ""
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr ""
@@ -314,8 +345,8 @@ msgstr ""
#~ msgstr ""
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Hesap"
@@ -331,20 +362,20 @@ msgstr ""
msgid "Account muted"
msgstr "Hesap susturuldu"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Hesap Susturuldu"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Liste Tarafından Hesap Susturuldu"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Hesap seçenekleri"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Hesap hızlı erişimden kaldırıldı"
@@ -361,10 +392,10 @@ msgstr ""
msgid "Account unmuted"
msgstr "Hesap susturulması kaldırıldı"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Ekle"
@@ -380,14 +411,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Bir içerik uyarısı ekleyin"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Bu listeye bir kullanıcı ekleyin"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Hesap ekle"
@@ -427,11 +458,11 @@ msgstr "Uygulama Şifresi Ekle"
#~ msgid "Add link card:"
#~ msgstr "Bağlantı kartı ekle:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr ""
@@ -455,7 +486,7 @@ msgstr ""
msgid "Add the following DNS record to your domain:"
msgstr "Alan adınıza aşağıdaki DNS kaydını ekleyin:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -464,7 +495,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "Listelere Ekle"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Beslemelerime ekle"
@@ -473,19 +504,20 @@ msgstr "Beslemelerime ekle"
#~ msgstr "Eklendi"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Listeye eklendi"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Beslemelerime eklendi"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Bir yanıtın beslemenizde gösterilmesi için sahip olması gereken beğeni sayısını ayarlayın."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Bir yanıtın beslemenizde gösterilmesi için sahip olması gereken beğeni sayısını ayarlayın."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Yetişkin İçerik"
@@ -494,7 +526,7 @@ msgstr "Yetişkin İçerik"
#~ msgid "Adult content can only be enabled via the Web at <0/>."
#~ msgstr "Yetişkin içeriği yalnızca Web üzerinden <0/> etkinleştirilebilir."
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -502,20 +534,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr ""
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Gelişmiş"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr ""
@@ -534,6 +566,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -551,7 +591,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Alternatif metin"
@@ -572,14 +612,27 @@ msgstr "{0} adresine bir e-posta gönderildi. Aşağıda girebileceğiniz bir on
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Önceki adresinize, {0} bir e-posta gönderildi. Aşağıda girebileceğiniz bir onay kodu içerir."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#~ msgid "An error occured"
+#~ msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -593,10 +646,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr ""
@@ -611,21 +669,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Bir sorun oluştu, lütfen tekrar deneyin."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr ""
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "ve"
@@ -642,6 +704,10 @@ msgstr ""
msgid "Anti-Social Behavior"
msgstr ""
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Uygulama Dili"
@@ -658,22 +724,22 @@ msgstr "Uygulama Şifre adları yalnızca harfler, sayılar, boşluklar, tireler
msgid "App Password names must be at least 4 characters long."
msgstr "Uygulama Şifre adları en az 4 karakter uzunluğunda olmalıdır."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Uygulama şifresi ayarları"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Uygulama Şifreleri"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr ""
@@ -685,7 +751,7 @@ msgstr ""
#~ msgid "Appeal Content Warning"
#~ msgstr "İçerik Uyarısını İtiraz Et"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr ""
@@ -705,10 +771,19 @@ msgstr "Bu karara itiraz et"
#~ msgid "Appeal this decision."
#~ msgstr "Bu karara itiraz et."
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Görünüm"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -730,7 +805,7 @@ msgstr "\"{name}\" uygulama şifresini silmek istediğinizden emin misiniz?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -742,19 +817,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr ""
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Bu taslağı silmek istediğinizden emin misiniz?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Emin misiniz?"
@@ -775,13 +850,13 @@ msgstr "Sanat"
msgid "Artistic or non-erotic nudity."
msgstr "Sanatsal veya erotik olmayan çıplaklık."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr ""
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -794,8 +869,8 @@ msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Geri"
@@ -808,7 +883,7 @@ msgstr "Geri"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "{interestsText} ilginize dayalı"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Temel"
@@ -816,7 +891,7 @@ msgstr "Temel"
msgid "Birthday"
msgstr "Doğum günü"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Doğum günü:"
@@ -839,15 +914,15 @@ msgstr "Hesabı Engelle"
msgid "Block Account?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Hesapları engelle"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Listeyi engelle"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Bu hesapları engelle?"
@@ -855,16 +930,15 @@ msgstr "Bu hesapları engelle?"
#~ msgid "Block this List"
#~ msgstr "Bu Listeyi Engelle"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Engellendi"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Engellenen hesaplar"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Engellenen Hesaplar"
@@ -877,7 +951,7 @@ msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez. Onların içeriğini görmeyeceksiniz ve onlar da sizinkini görmekten alıkonulacaklar."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Engellenen gönderi."
@@ -885,7 +959,7 @@ msgstr "Engellenen gönderi."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr ""
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Engelleme herkese açıktır. Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez."
@@ -893,7 +967,7 @@ msgstr "Engelleme herkese açıktır. Engellenen hesaplar, konularınıza yanıt
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Blog"
@@ -933,7 +1007,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky, profilinizi ve gönderilerinizi oturum açmamış kullanıcılara göstermeyecektir. Diğer uygulamalar bu isteği yerine getirmeyebilir. Bu, hesabınızı özel yapmaz."
@@ -954,21 +1028,23 @@ msgstr ""
msgid "Books"
msgstr "Kitaplar"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -981,7 +1057,7 @@ msgstr ""
#~ msgid "Build version {0} {1}"
#~ msgstr "Sürüm {0} {1}"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "İş"
@@ -989,7 +1065,7 @@ msgstr "İş"
#~ msgid "Button disabled. Input custom domain to proceed."
#~ msgstr "Button devre dışı. Devam etmek için özel alan adını girin."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "tarafından —"
@@ -1005,15 +1081,15 @@ msgstr ""
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "tarafından <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "siz tarafından"
@@ -1025,13 +1101,13 @@ msgstr "Kamera"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Yalnızca harfler, sayılar, boşluklar, tireler ve alt çizgiler içerebilir. En az 4 karakter uzunluğunda, ancak 32 karakterden fazla olmamalıdır."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -1047,9 +1123,8 @@ msgstr "Yalnızca harfler, sayılar, boşluklar, tireler ve alt çizgiler içere
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "İptal"
@@ -1077,7 +1152,7 @@ msgstr "Resim kırpma işlemini iptal et"
msgid "Cancel profile editing"
msgstr "Profil düzenlemeyi iptal et"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Alıntı gönderiyi iptal et"
@@ -1086,7 +1161,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Aramayı iptal et"
@@ -1102,17 +1176,17 @@ msgstr ""
msgid "Change"
msgstr ""
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Değiştir"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Kullanıcı adını değiştir"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Kullanıcı Adını Değiştir"
@@ -1120,12 +1194,12 @@ msgstr "Kullanıcı Adını Değiştir"
msgid "Change my email"
msgstr "E-postamı değiştir"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Şifre değiştir"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Şifre Değiştir"
@@ -1141,7 +1215,7 @@ msgstr "Gönderi dilini {0} olarak değiştir"
msgid "Change Your Email"
msgstr "E-postanızı Değiştirin"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1153,14 +1227,14 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr ""
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1197,7 +1271,7 @@ msgstr "Aşağıya gireceğiniz onay kodu içeren bir e-posta için gelen kutunu
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "\"Herkes\" veya \"Hiç kimse\" seçin"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
@@ -1205,11 +1279,11 @@ msgstr ""
#~ msgid "Choose a new Bluesky username or create"
#~ msgstr "Yeni bir Bluesky kullanıcı adı seçin veya oluşturun"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1217,7 +1291,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1225,7 +1299,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Hizmet Seç"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Özel beslemelerinizi destekleyen algoritmaları seçin."
@@ -1240,8 +1314,8 @@ msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1252,18 +1326,18 @@ msgid "Choose your password"
msgstr "Şifrenizi seçin"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "Tüm eski depolama verilerini temizle"
+#~ msgid "Clear all legacy storage data"
+#~ msgstr "Tüm eski depolama verilerini temizle"
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "Tüm eski depolama verilerini temizle (bundan sonra yeniden başlat)"
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr "Tüm eski depolama verilerini temizle (bundan sonra yeniden başlat)"
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "Tüm depolama verilerini temizle"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "Tüm depolama verilerini temizle (bundan sonra yeniden başlat)"
@@ -1273,10 +1347,10 @@ msgid "Clear search query"
msgstr "Arama sorgusunu temizle"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr ""
+#~ msgid "Clears all legacy storage data"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr ""
@@ -1296,7 +1370,7 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr ""
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr ""
@@ -1304,6 +1378,14 @@ msgstr ""
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1317,12 +1399,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1343,7 +1425,7 @@ msgid "Close bottom drawer"
msgstr "Alt çekmeceyi kapat"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr ""
@@ -1367,8 +1449,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr "Gezinme altbilgisini kapat"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr ""
@@ -1380,7 +1462,7 @@ msgstr "Alt gezinme çubuğunu kapatır"
msgid "Closes password update alert"
msgstr "Şifre güncelleme uyarısını kapatır"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Gönderi bestecisini kapatır ve gönderi taslağını siler"
@@ -1388,11 +1470,11 @@ msgstr "Gönderi bestecisini kapatır ve gönderi taslağını siler"
msgid "Closes viewer for header image"
msgstr "Başlık resmi görüntüleyicisini kapatır"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Belirli bir bildirim için kullanıcı listesini daraltır"
@@ -1406,27 +1488,31 @@ msgstr "Komedi"
msgid "Comics"
msgstr "Çizgi romanlar"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Topluluk Kuralları"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "En fazla {MAX_GRAPHEME_LENGTH} karakter uzunluğunda gönderiler oluşturun"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Yanıt oluştur"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Kategori için içerik filtreleme ayarlarını yapılandır: {0}"
@@ -1471,11 +1557,11 @@ msgstr "Hesabı silmeyi onayla"
#~ msgid "Confirm your age to enable adult content."
#~ msgstr "Yetişkin içeriği etkinleştirmek için yaşınızı onaylayın."
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr ""
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr ""
@@ -1497,7 +1583,8 @@ msgstr "Onay kodu"
msgid "Connecting..."
msgstr "Bağlanıyor..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Destek ile iletişime geçin"
@@ -1517,24 +1604,24 @@ msgstr ""
#~ msgid "Content Filtering"
#~ msgstr "İçerik Filtreleme"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr ""
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "İçerik Dilleri"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "İçerik Mevcut Değil"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "İçerik Uyarısı"
@@ -1546,7 +1633,7 @@ msgstr "İçerik uyarıları"
msgid "Context menu backdrop, click to close the menu."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Devam et"
@@ -1559,7 +1646,7 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1586,7 +1673,7 @@ msgstr "Yemek pişirme"
msgid "Copied"
msgstr "Kopyalandı"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Sürüm numarası panoya kopyalandı"
@@ -1594,8 +1681,8 @@ msgstr "Sürüm numarası panoya kopyalandı"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Panoya kopyalandı"
@@ -1629,12 +1716,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Liste bağlantısını kopyala"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Gönderi bağlantısını kopyala"
@@ -1647,8 +1734,8 @@ msgstr "Gönderi bağlantısını kopyala"
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Gönderi metnini kopyala"
@@ -1656,14 +1743,14 @@ msgstr "Gönderi metnini kopyala"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Telif Hakkı Politikası"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1673,7 +1760,7 @@ msgstr ""
msgid "Could not load feed"
msgstr "Besleme yüklenemedi"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Liste yüklenemedi"
@@ -1702,7 +1789,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Yeni bir hesap oluştur"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Yeni bir Bluesky hesabı oluştur"
@@ -1712,7 +1799,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1720,7 +1807,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Hesap Oluştur"
@@ -1784,42 +1871,54 @@ msgstr ""
msgid "Custom domain"
msgstr "Özel alan adı"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Topluluk tarafından oluşturulan özel beslemeler size yeni deneyimler sunar ve sevdiğiniz içeriği bulmanıza yardımcı olur."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Harici sitelerden medyayı özelleştirin."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Karanlık"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Karanlık mod"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Karanlık Tema"
+#~ msgid "Dark Theme"
+#~ msgstr "Karanlık Tema"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr ""
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr ""
@@ -1828,16 +1927,16 @@ msgid "Debug panel"
msgstr "Hata ayıklama paneli"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr ""
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Hesabı sil"
@@ -1857,8 +1956,8 @@ msgstr "Uygulama şifresini sil"
msgid "Delete app password?"
msgstr ""
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1866,7 +1965,7 @@ msgstr ""
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Listeyi Sil"
@@ -1882,41 +1981,41 @@ msgstr ""
msgid "Delete my account"
msgstr "Hesabımı sil"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Hesabımı Sil…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Gönderiyi sil"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Bu gönderiyi sil?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Silindi"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Silinen gönderi."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1931,15 +2030,29 @@ msgstr "Açıklama"
msgid "Descriptive alt text"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
#: src/view/screens/Settings.tsx:760
#~ msgid "Developer Tools"
#~ msgstr "Geliştirici Araçları"
-#: src/view/com/composer/Composer.tsx:295
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Bir şey söylemek istediniz mi?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Karart"
@@ -1947,7 +2060,7 @@ msgstr "Karart"
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr ""
@@ -1955,7 +2068,7 @@ msgstr ""
msgid "Disable Email 2FA"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr ""
@@ -1963,6 +2076,10 @@ msgstr ""
#~ msgid "Disable haptics"
#~ msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr ""
@@ -1972,11 +2089,11 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr ""
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Sil"
@@ -1984,12 +2101,12 @@ msgstr "Sil"
#~ msgid "Discard draft"
#~ msgstr "Taslağı sil"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr ""
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Uygulamaların hesabımı oturum açmamış kullanıcılara göstermesini engelle"
@@ -2002,19 +2119,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr "Yeni özel beslemeler keşfet"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "Yeni beslemeler keşfet"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr ""
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -2030,11 +2155,15 @@ msgstr "Görünen Ad"
msgid "DNS Panel"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr ""
@@ -2052,7 +2181,6 @@ msgstr "Alan adı doğrulandı!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -2071,8 +2199,8 @@ msgstr "Tamam"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Tamam"
@@ -2085,7 +2213,7 @@ msgstr "Tamam{extraText}"
#~ msgid "Double tap to sign in"
#~ msgstr "Oturum açmak için çift dokunun"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -2102,6 +2230,10 @@ msgstr "Resim eklemek için bırakın"
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "Apple politikaları gereği, yetişkin içeriği yalnızca kaydı tamamladıktan sonra web üzerinde etkinleştirilebilir."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr ""
@@ -2142,11 +2274,11 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar."
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Her kod bir kez çalışır. Düzenli aralıklarla daha fazla davet kodu alacaksınız."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2155,12 +2287,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Düzenle"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr ""
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2169,7 +2301,12 @@ msgstr ""
msgid "Edit image"
msgstr "Resmi düzenle"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Liste ayrıntılarını düzenle"
@@ -2177,10 +2314,10 @@ msgstr "Liste ayrıntılarını düzenle"
msgid "Edit Moderation List"
msgstr "Düzenleme Listesini Düzenle"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Beslemelerimi Düzenle"
@@ -2188,10 +2325,15 @@ msgstr "Beslemelerimi Düzenle"
msgid "Edit my profile"
msgstr "Profilimi düzenle"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2207,7 +2349,7 @@ msgstr "Profil Düzenle"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Kayıtlı Beslemeleri Düzenle"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2215,7 +2357,7 @@ msgstr ""
msgid "Edit User List"
msgstr "Kullanıcı Listesini Düzenle"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2227,7 +2369,7 @@ msgstr "Görünen adınızı düzenleyin"
msgid "Edit your profile description"
msgstr "Profil açıklamanızı düzenleyin"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2237,8 +2379,8 @@ msgid "Education"
msgstr "Eğitim"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2266,7 +2408,7 @@ msgstr "E-posta Güncellendi"
msgid "Email verified"
msgstr "E-posta doğrulandı"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "E-posta:"
@@ -2275,8 +2417,8 @@ msgid "Embed HTML code"
msgstr ""
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr ""
@@ -2288,7 +2430,7 @@ msgstr ""
msgid "Enable {0} only"
msgstr "Yalnızca {0} etkinleştir"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr ""
@@ -2310,7 +2452,7 @@ msgstr ""
#~ msgid "Enable External Media"
#~ msgstr "Harici Medyayı Etkinleştir"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Medya oynatıcılarını etkinleştir"
@@ -2319,9 +2461,13 @@ msgstr "Medya oynatıcılarını etkinleştir"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Bu ayarı yalnızca takip ettiğiniz kişiler arasındaki yanıtları görmek için etkinleştirin."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Bu ayarı yalnızca takip ettiğiniz kişiler arasındaki yanıtları görmek için etkinleştirin."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2329,11 +2475,11 @@ msgstr ""
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr ""
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Beslemenin sonu"
@@ -2353,8 +2499,8 @@ msgstr "Bu Uygulama Şifresi için bir ad girin"
msgid "Enter a password"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr ""
@@ -2407,25 +2553,27 @@ msgstr "Kullanıcı adınızı ve şifrenizi girin"
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Hata:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Herkes"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2441,6 +2589,14 @@ msgstr ""
msgid "Excessive or unwanted messages"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr ""
@@ -2458,7 +2614,6 @@ msgid "Exits image view"
msgstr "Resim görünümünden çıkar"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Arama sorgusu girişinden çıkar"
@@ -2470,7 +2625,7 @@ msgstr "Arama sorgusu girişinden çıkar"
msgid "Expand alt text"
msgstr "Alternatif metni genişlet"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2483,6 +2638,14 @@ msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın"
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr ""
@@ -2491,12 +2654,12 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr ""
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr ""
@@ -2506,17 +2669,17 @@ msgid "External Media"
msgstr "Harici Medya"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Harici medya, web sitelerinin siz ve cihazınız hakkında bilgi toplamasına izin verebilir. Bilgi, \"oynat\" düğmesine basana kadar gönderilmez veya istenmez."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Harici Medya Tercihleri"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Harici medya ayarları"
@@ -2525,8 +2688,8 @@ msgstr "Harici medya ayarları"
msgid "Failed to create app password."
msgstr "Uygulama şifresi oluşturulamadı."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2538,16 +2701,16 @@ msgstr "Liste oluşturulamadı. İnternet bağlantınızı kontrol edin ve tekra
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Gönderi silinemedi, lütfen tekrar deneyin"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2569,12 +2732,12 @@ msgstr ""
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Önerilen beslemeler yüklenemedi"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2594,16 +2757,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2612,12 +2775,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Besleme"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "{0} tarafından besleme"
@@ -2634,19 +2797,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Geribildirim"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Beslemeler"
@@ -2654,7 +2817,7 @@ msgstr "Beslemeler"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "Beslemeler, içerikleri düzenlemek için kullanıcılar tarafından oluşturulur. İlginizi çeken bazı beslemeler seçin."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Beslemeler, kullanıcıların biraz kodlama uzmanlığı ile oluşturduğu özel algoritmalardır. Daha fazla bilgi için <0/>."
@@ -2662,7 +2825,7 @@ msgstr "Beslemeler, kullanıcıların biraz kodlama uzmanlığı ile oluşturdu
#~ msgid "Feeds can be topical as well!"
#~ msgstr "Beslemeler aynı zamanda konusal olabilir!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2678,7 +2841,7 @@ msgstr ""
msgid "Filter from feeds"
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Tamamlanıyor"
@@ -2708,7 +2871,7 @@ msgstr ""
#~ msgid "Finding similar accounts..."
#~ msgstr "Benzer hesaplar bulunuyor..."
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr ""
@@ -2720,7 +2883,7 @@ msgstr ""
msgid "Fine-tune the discussion threads."
msgstr "Tartışma konularını ayarlayın."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2732,7 +2895,7 @@ msgstr ""
msgid "Fitness"
msgstr "Fitness"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Esnek"
@@ -2746,12 +2909,11 @@ msgid "Flip vertically"
msgstr "Dikey çevir"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Takip et"
@@ -2765,7 +2927,7 @@ msgstr "Takip et"
msgid "Follow {0}"
msgstr "{0} takip et"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2778,8 +2940,8 @@ msgstr ""
msgid "Follow Account"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2791,7 +2953,7 @@ msgstr ""
msgid "Follow Back"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2827,19 +2989,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Takip edilen kullanıcılar"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Yalnızca takip edilen kullanıcılar"
+#~ msgid "Followed users only"
+#~ msgstr "Yalnızca takip edilen kullanıcılar"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "sizi takip etti"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2848,7 +3010,7 @@ msgstr ""
msgid "Followers"
msgstr "Takipçiler"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2858,34 +3020,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Takip edilenler"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "{0} takip ediliyor"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr ""
@@ -2897,7 +3059,7 @@ msgstr ""
msgid "Follows you"
msgstr "Sizi takip ediyor"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Sizi Takip Ediyor"
@@ -2914,6 +3076,10 @@ msgstr "Güvenlik nedeniyle, e-posta adresinize bir onay kodu göndermemiz gerek
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "Güvenlik nedeniyle, bunu tekrar göremezsiniz. Bu şifreyi kaybederseniz, yeni bir tane oluşturmanız gerekecek."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/view/com/auth/login/LoginForm.tsx:238
#~ msgid "Forgot"
#~ msgstr "Unuttum"
@@ -2943,7 +3109,7 @@ msgstr ""
msgid "From @{sanitizedAuthor}"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "<0/> tarafından"
@@ -2956,7 +3122,7 @@ msgstr "Galeri"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2985,24 +3151,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Geri git"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Geri Git"
@@ -3012,14 +3179,14 @@ msgstr "Geri Git"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Önceki adıma geri dön"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -3061,7 +3228,7 @@ msgstr ""
msgid "Graphic Media"
msgstr ""
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -3069,7 +3236,7 @@ msgstr ""
msgid "Handle"
msgstr "Kullanıcı adı"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr ""
@@ -3077,7 +3244,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr ""
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr ""
@@ -3085,12 +3252,12 @@ msgstr ""
msgid "Hashtag: #{tag}"
msgstr ""
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Sorun mu yaşıyorsunuz?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Yardım"
@@ -3114,6 +3281,10 @@ msgstr ""
msgid "Here is your app password."
msgstr "İşte uygulama şifreniz."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -3121,30 +3292,50 @@ msgstr "İşte uygulama şifreniz."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Gizle"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Gizle"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Gönderiyi gizle"
+#~ msgid "Hide post"
+#~ msgstr "Gönderiyi gizle"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "İçeriği gizle"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Bu gönderiyi gizle?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Kullanıcı listesini gizle"
@@ -3180,12 +3371,12 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Ana Sayfa"
@@ -3224,7 +3415,7 @@ msgstr "Bir onay kodum var"
msgid "I have my own domain"
msgstr "Kendi alan adım var"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -3237,15 +3428,15 @@ msgstr "Alternatif metin uzunsa, alternatif metin genişletme durumunu değişti
msgid "If none are selected, suitable for all ages."
msgstr "Hiçbiri seçilmezse, tüm yaşlar için uygun."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr ""
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
@@ -3345,10 +3536,14 @@ msgstr "Şifrenizi girin"
msgid "Input your preferred hosting provider"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Kullanıcı adınızı girin"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3358,7 +3553,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Geçersiz veya desteklenmeyen gönderi kaydı"
@@ -3378,7 +3573,7 @@ msgstr "Arkadaşını Davet Et"
msgid "Invite code"
msgstr "Davet kodu"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Davet kodu kabul edilmedi. Doğru girdiğinizden emin olun ve tekrar deneyin."
@@ -3414,14 +3609,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "İşler"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3471,11 +3666,11 @@ msgstr ""
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr ""
@@ -3483,16 +3678,16 @@ msgstr ""
msgid "Language selection"
msgstr "Dil seçimi"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Dil ayarları"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Dil Ayarları"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Diller"
@@ -3509,21 +3704,26 @@ msgstr ""
#~ msgid "Learn more"
#~ msgstr "Daha fazla bilgi edinin"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Daha Fazla Bilgi Edinin"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr ""
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Bu uyarı hakkında daha fazla bilgi edinin"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Bluesky'da neyin herkese açık olduğu hakkında daha fazla bilgi edinin."
@@ -3561,8 +3761,8 @@ msgid "left to go."
msgstr "kaldı."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Eski depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Eski depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3573,7 +3773,7 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Şifrenizi sıfırlamaya başlayalım!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Hadi gidelim!"
@@ -3582,7 +3782,8 @@ msgstr "Hadi gidelim!"
#~ msgid "Library"
#~ msgstr "Kütüphane"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Açık"
@@ -3594,8 +3795,8 @@ msgstr "Açık"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3605,14 +3806,15 @@ msgid "Like this feed"
msgstr "Bu beslemeyi beğen"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Beğenenler"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Beğenenler"
@@ -3630,11 +3832,11 @@ msgstr "Beğenenler"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "{likeCount} {0} tarafından beğenildi"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "özel beslemenizi beğendi"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "gönderinizi beğendi"
@@ -3642,11 +3844,11 @@ msgstr "gönderinizi beğendi"
msgid "Likes"
msgstr "Beğeniler"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Bu gönderideki beğeniler"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Liste"
@@ -3654,20 +3856,28 @@ msgstr "Liste"
msgid "List Avatar"
msgstr "Liste Avatarı"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Liste engellendi"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "{0} tarafından liste"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Liste silindi"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Liste sessize alındı"
@@ -3675,20 +3885,20 @@ msgstr "Liste sessize alındı"
msgid "List Name"
msgstr "Liste Adı"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Liste engeli kaldırıldı"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Liste sessizden çıkarıldı"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Listeler"
@@ -3717,10 +3927,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Yeni bildirimleri yükle"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Yeni gönderileri yükle"
@@ -3732,7 +3942,7 @@ msgstr "Yükleniyor..."
#~ msgid "Local dev server"
#~ msgstr "Yerel geliştirme sunucusu"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Log"
@@ -3748,7 +3958,7 @@ msgstr ""
msgid "Log out"
msgstr "Çıkış yap"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Çıkış yapan görünürlüğü"
@@ -3788,7 +3998,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Bu gitmek istediğiniz yer olduğundan emin olun!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr ""
@@ -3797,20 +4007,20 @@ msgstr ""
msgid "Mark as read"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Medya"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "bahsedilen kullanıcılar"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Bahsedilen kullanıcılar"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Menü"
@@ -3841,7 +4051,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3856,29 +4066,31 @@ msgstr ""
msgid "Misleading Account"
msgstr ""
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Moderasyon"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr ""
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "{0} tarafından moderasyon listesi"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "<0/> tarafından moderasyon listesi"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Sizin tarafınızdan moderasyon listesi"
@@ -3890,20 +4102,24 @@ msgstr "Moderasyon listesi oluşturuldu"
msgid "Moderation list updated"
msgstr "Moderasyon listesi güncellendi"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Moderasyon listeleri"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Moderasyon Listeleri"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Moderasyon ayarları"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr ""
@@ -3911,12 +4127,12 @@ msgstr ""
msgid "Moderation tools"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Moderatör, içeriğe genel bir uyarı koymayı seçti."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr ""
@@ -3924,7 +4140,7 @@ msgstr ""
msgid "More feeds"
msgstr "Daha fazla besleme"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Daha fazla seçenek"
@@ -3944,11 +4160,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr ""
@@ -3957,11 +4175,11 @@ msgstr ""
msgid "Mute Account"
msgstr "Hesabı Sessize Al"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Hesapları sessize al"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr ""
@@ -3971,14 +4189,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr ""
+#~ msgid "Mute in tags only"
+#~ msgstr ""
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
+#~ msgid "Mute in text & tags"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Listeyi sessize al"
@@ -3987,7 +4209,7 @@ msgstr "Listeyi sessize al"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Bu hesapları sessize al?"
@@ -3995,33 +4217,49 @@ msgstr "Bu hesapları sessize al?"
#~ msgid "Mute this List"
#~ msgstr "Bu Listeyi Sessize Al"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Konuyu sessize al"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr ""
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Sessize alındı"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Sessize alınan hesaplar"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Sessize Alınan Hesaplar"
@@ -4030,7 +4268,7 @@ msgstr "Sessize Alınan Hesaplar"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Sessize alınan hesapların gönderileri beslemenizden ve bildirimlerinizden kaldırılır. Sessizlik tamamen özeldir."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr ""
@@ -4038,7 +4276,7 @@ msgstr ""
msgid "Muted words & tags"
msgstr ""
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Sessizlik özeldir. Sessize alınan hesaplar sizinle etkileşime geçebilir, ancak gönderilerini görmeyecek ve onlardan bildirim almayacaksınız."
@@ -4047,7 +4285,7 @@ msgstr "Sessizlik özeldir. Sessize alınan hesaplar sizinle etkileşime geçebi
msgid "My Birthday"
msgstr "Doğum Günüm"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Beslemelerim"
@@ -4055,11 +4293,11 @@ msgstr "Beslemelerim"
msgid "My Profile"
msgstr "Profilim"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr ""
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Kayıtlı Beslemelerim"
@@ -4084,7 +4322,7 @@ msgstr ""
msgid "Nature"
msgstr "Doğa"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -4098,7 +4336,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Sonraki ekrana yönlendirir"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Profilinize yönlendirir"
@@ -4116,7 +4354,7 @@ msgstr ""
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Takipçilerinize ve verilerinize asla erişimi kaybetmeyin."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Takipçilerinize veya verilerinize asla erişimi kaybetmeyin."
@@ -4124,7 +4362,7 @@ msgstr "Takipçilerinize veya verilerinize asla erişimi kaybetmeyin."
msgid "Nevermind, create a handle for me"
msgstr ""
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Yeni"
@@ -4160,12 +4398,12 @@ msgctxt "action"
msgid "New post"
msgstr "Yeni gönderi"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Yeni gönderi"
@@ -4199,10 +4437,10 @@ msgstr "Haberler"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -4218,17 +4456,17 @@ msgstr "İleri"
msgid "Next image"
msgstr "Sonraki resim"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Hayır"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Açıklama yok"
@@ -4245,12 +4483,12 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "{0} artık takip edilmiyor"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr ""
@@ -4262,7 +4500,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Henüz bildirim yok!"
@@ -4273,6 +4511,10 @@ msgstr "Henüz bildirim yok!"
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4286,11 +4528,11 @@ msgstr "Sonuç yok"
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr ""
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "\"{query}\" için sonuç bulunamadı"
@@ -4315,13 +4557,13 @@ msgstr ""
msgid "No thanks"
msgstr "Teşekkürler"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Hiç kimse"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4340,7 +4582,7 @@ msgstr ""
#~ msgid "Not Applicable."
#~ msgstr "Uygulanamaz."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Bulunamadı"
@@ -4351,12 +4593,12 @@ msgid "Not right now"
msgstr "Şu anda değil"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr ""
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Not: Bluesky açık ve kamusal bir ağdır. Bu ayar yalnızca içeriğinizin Bluesky uygulaması ve web sitesindeki görünürlüğünü sınırlar, diğer uygulamalar bu ayarı dikkate almayabilir. İçeriğiniz hala diğer uygulamalar ve web siteleri tarafından çıkış yapan kullanıcılara gösterilebilir."
@@ -4368,7 +4610,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4385,14 +4627,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Bildirimler"
@@ -4421,12 +4663,12 @@ msgid "Off"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "Oh hayır!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Oh hayır! Bir şeyler yanlış gitti."
@@ -4450,7 +4692,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Onboarding sıfırlama"
@@ -4458,7 +4700,7 @@ msgstr "Onboarding sıfırlama"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Bir veya daha fazla resimde alternatif metin eksik."
@@ -4467,14 +4709,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Yalnızca {0} yanıtlayabilir."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Yalnızca {0} yanıtlayabilir."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr ""
@@ -4482,7 +4724,7 @@ msgstr ""
msgid "Oops, something went wrong!"
msgstr ""
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4491,11 +4733,11 @@ msgstr ""
msgid "Oops!"
msgstr "Hata!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Aç"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4508,8 +4750,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Emoji seçiciyi aç"
@@ -4517,7 +4759,7 @@ msgstr "Emoji seçiciyi aç"
msgid "Open feed options menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Uygulama içi tarayıcıda bağlantıları aç"
@@ -4533,20 +4775,20 @@ msgstr ""
msgid "Open navigation"
msgstr "Navigasyonu aç"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Storybook sayfasını aç"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr ""
@@ -4554,11 +4796,11 @@ msgstr ""
msgid "Opens {numItems} options"
msgstr "{numItems} seçeneği açar"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr ""
@@ -4570,19 +4812,23 @@ msgstr "Hata ayıklama girişi için ek ayrıntıları açar"
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Bu bildirimdeki kullanıcıların genişletilmiş bir listesini açar"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Cihazdaki kamerayı açar"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Besteciyi açar"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Yapılandırılabilir dil ayarlarını açar"
@@ -4594,7 +4840,7 @@ msgstr "Cihaz fotoğraf galerisini açar"
#~ msgid "Opens editor for profile display name, avatar, background image, and description"
#~ msgstr "Profil görüntü adı, avatar, arka plan resmi ve açıklama için düzenleyiciyi açar"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Harici gömülü ayarları açar"
@@ -4628,11 +4874,11 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Davet kodu listesini açar"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr ""
@@ -4640,19 +4886,19 @@ msgstr ""
#~ msgid "Opens modal for account deletion confirmation. Requires email code."
#~ msgstr "Hesap silme onayı için modalı açar. E-posta kodu gerektirir."
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr ""
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr ""
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr ""
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr ""
@@ -4660,7 +4906,7 @@ msgstr ""
msgid "Opens modal for using custom domain"
msgstr "Özel alan adı kullanımı için modalı açar"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Moderasyon ayarlarını açar"
@@ -4673,11 +4919,11 @@ msgstr "Şifre sıfırlama formunu açar"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Kayıtlı Beslemeleri düzenlemek için ekranı açar"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Tüm kayıtlı beslemeleri içeren ekrana açar"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr ""
@@ -4685,7 +4931,7 @@ msgstr ""
#~ msgid "Opens the app password settings page"
#~ msgstr "Uygulama şifre ayarları sayfasını açar"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr ""
@@ -4701,21 +4947,21 @@ msgstr ""
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "Storybook sayfasını açar"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Sistem log sayfasını açar"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Konu tercihlerini açar"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4728,11 +4974,15 @@ msgid "Option {0} of {numItems}"
msgstr "{0} seçeneği, {numItems} seçenekten"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Veya bu seçenekleri birleştirin:"
@@ -4752,6 +5002,10 @@ msgstr ""
msgid "Other account"
msgstr "Diğer hesap"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/modals/ServerInput.tsx:88
#~ msgid "Other service"
#~ msgstr "Diğer servis"
@@ -4764,7 +5018,7 @@ msgstr "Diğer..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Sayfa bulunamadı"
@@ -4793,19 +5047,24 @@ msgid "Password updated!"
msgstr "Şifre güncellendi!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr ""
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "@{0} tarafından takip edilenler"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "@{0} tarafından takip edilenler"
@@ -4839,7 +5098,7 @@ msgid "Pictures meant for adults."
msgstr "Yetişkinler için resimler."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Ana ekrana sabitle"
@@ -4851,11 +5110,12 @@ msgstr ""
msgid "Pinned Feeds"
msgstr "Sabitleme Beslemeleri"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr ""
@@ -4872,6 +5132,11 @@ msgstr "{0} oynat"
msgid "Play or pause the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4881,16 +5146,16 @@ msgstr "Videoyu Oynat"
msgid "Plays the GIF"
msgstr "GIF'i oynatır"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Kullanıcı adınızı seçin."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Şifrenizi seçin."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr ""
@@ -4910,7 +5175,7 @@ msgstr "Uygulama şifreniz için bir ad girin. Tüm boşluklar izin verilmez."
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Bu Uygulama Şifresi için benzersiz bir ad girin veya rastgele oluşturulanı kullanın."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr ""
@@ -4922,7 +5187,7 @@ msgstr ""
#~ msgid "Please enter the verification code sent to {phoneNumberFormatted}."
#~ msgstr "{phoneNumberFormatted} numarasına gönderilen doğrulama kodunu girin."
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "E-postanızı girin."
@@ -4935,7 +5200,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Lütfen şifrenizi de girin:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
@@ -4957,7 +5222,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr "Lütfen E-postanızı Doğrulayın"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Bağlantı kartınızın yüklenmesini bekleyin"
@@ -4970,45 +5235,50 @@ msgstr "Politika"
msgid "Porn"
msgstr "Pornografi"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Gönder"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Gönderi"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "{0} tarafından gönderi"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "@{0} tarafından gönderi"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Gönderi silindi"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Gönderi gizlendi"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Gönderi dili"
@@ -5017,22 +5287,26 @@ msgstr "Gönderi dili"
msgid "Post Languages"
msgstr "Gönderi Dilleri"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Gönderi bulunamadı"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Gönderiler"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
@@ -5055,7 +5329,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr ""
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -5075,7 +5349,7 @@ msgstr ""
msgid "Previous image"
msgstr "Önceki resim"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Birincil Dil"
@@ -5087,16 +5361,16 @@ msgstr "Takipçilerinizi Önceliklendirin"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Gizlilik"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Gizlilik Politikası"
@@ -5108,16 +5382,16 @@ msgstr ""
msgid "Processing..."
msgstr "İşleniyor..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr ""
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Profil"
@@ -5125,11 +5399,11 @@ msgstr "Profil"
msgid "Profile updated"
msgstr "Profil güncellendi"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "E-postanızı doğrulayarak hesabınızı koruyun."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Herkese Açık"
@@ -5137,15 +5411,15 @@ msgstr "Herkese Açık"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Toplu olarak sessize almak veya engellemek için herkese açık, paylaşılabilir kullanıcı listeleri."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Beslemeleri yönlendirebilen herkese açık, paylaşılabilir listeler."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Gönderiyi yayınla"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Yanıtı yayınla"
@@ -5165,10 +5439,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Gönderiyi alıntıla"
@@ -5182,6 +5456,39 @@ msgstr "Gönderiyi alıntıla"
#~ msgid "Quote Post"
#~ msgstr "Gönderiyi Alıntıla"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "Rastgele (yani \"Gönderenin Ruleti\")"
@@ -5190,10 +5497,27 @@ msgstr "Rastgele (yani \"Gönderenin Ruleti\")"
msgid "Ratios"
msgstr "Oranlar"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -5202,7 +5526,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr ""
@@ -5226,15 +5550,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Kaldır"
@@ -5246,11 +5571,11 @@ msgstr "Kaldır"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Hesabı kaldır"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr ""
@@ -5263,8 +5588,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Beslemeyi kaldır"
@@ -5272,19 +5597,27 @@ msgstr "Beslemeyi kaldır"
msgid "Remove feed?"
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Beslemelerimden kaldır"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr ""
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Resmi kaldır"
@@ -5293,24 +5626,24 @@ msgstr "Resmi kaldır"
msgid "Remove image preview"
msgstr "Resim önizlemesini kaldır"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr ""
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Yeniden göndermeyi kaldır"
@@ -5326,18 +5659,31 @@ msgstr ""
#~ msgid "Remove this feed from your saved feeds?"
#~ msgstr "Bu beslemeyi kayıtlı beslemelerinizden kaldırsın mı?"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Listeden kaldırıldı"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Beslemelerimden kaldırıldı"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr ""
@@ -5345,7 +5691,7 @@ msgstr ""
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "{0} adresinden varsayılan küçük resmi kaldırır"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -5353,8 +5699,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -5362,7 +5708,7 @@ msgstr ""
msgid "Replies"
msgstr "Yanıtlar"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5370,18 +5716,40 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Bu konuya yanıtlar devre dışı bırakıldı"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Bu konuya yanıtlar devre dışı bırakıldı"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Yanıtla"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Yanıt Filtreleri"
+#~ msgid "Reply Filters"
+#~ msgstr "Yanıt Filtreleri"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -5389,23 +5757,36 @@ msgstr "Yanıt Filtreleri"
#~ msgid "Reply to <0/>"
#~ msgstr "<0/>'a yanıt"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5441,7 +5822,7 @@ msgstr ""
msgid "Report feed"
msgstr "Beslemeyi raporla"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Listeyi Raporla"
@@ -5449,13 +5830,13 @@ msgstr "Listeyi Raporla"
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Gönderiyi raporla"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5489,30 +5870,31 @@ msgstr ""
msgid "Report this user"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Yeniden gönder"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Yeniden gönder"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Gönderiyi yeniden gönder veya alıntıla"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Yeniden Gönderen"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "{0} tarafından yeniden gönderildi"
@@ -5520,20 +5902,20 @@ msgstr "{0} tarafından yeniden gönderildi"
#~ msgid "Reposted by <0/>"
#~ msgstr "<0/>'a yeniden gönderildi"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "gönderinizi yeniden gönderdi"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Bu gönderinin yeniden gönderilmesi"
@@ -5551,7 +5933,7 @@ msgstr "Değişiklik İste"
msgid "Request Code"
msgstr "Kod İste"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Göndermeden önce alternatif metin gerektir"
@@ -5580,8 +5962,8 @@ msgstr "Sıfırlama Kodu"
#~ msgid "Reset onboarding"
#~ msgstr "Onboarding sıfırla"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "Onboarding durumunu sıfırla"
@@ -5593,16 +5975,16 @@ msgstr "Şifreyi sıfırla"
#~ msgid "Reset preferences"
#~ msgstr "Tercihleri sıfırla"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "Tercih durumunu sıfırla"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "Onboarding durumunu sıfırlar"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "Tercih durumunu sıfırlar"
@@ -5616,17 +5998,19 @@ msgid "Retries the last action, which errored out"
msgstr "Son hataya neden olan son eylemi tekrarlar"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Tekrar dene"
@@ -5634,9 +6018,10 @@ msgstr "Tekrar dene"
#~ msgid "Retry."
#~ msgstr "Tekrar dene."
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Önceki sayfaya dön"
@@ -5654,7 +6039,8 @@ msgstr ""
#~ msgstr "KUM KUTUSU. Gönderiler ve hesaplar kalıcı değildir."
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5704,7 +6090,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr ""
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Kayıtlı Beslemeler"
@@ -5717,7 +6103,7 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr ""
@@ -5735,8 +6121,8 @@ msgstr ""
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5745,13 +6131,12 @@ msgstr ""
msgid "Science"
msgstr "Bilim"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Başa kaydır"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5760,14 +6145,12 @@ msgstr "Başa kaydır"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Ara"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "\"{query}\" için ara"
@@ -5775,11 +6158,11 @@ msgstr "\"{query}\" için ara"
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr ""
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr ""
@@ -5791,8 +6174,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Kullanıcıları ara"
@@ -5816,28 +6197,32 @@ msgstr ""
msgid "Security Step Required"
msgstr "Güvenlik Adımı Gerekli"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr ""
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr ""
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr ""
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr ""
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Bu kılavuzu gör"
@@ -5881,7 +6266,11 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr ""
@@ -5906,7 +6295,7 @@ msgstr "{i} seçeneği, {numItems} seçenekten"
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr ""
@@ -5922,11 +6311,15 @@ msgstr ""
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Görmek istediğinizi (veya görmek istemediğinizi) seçin, gerisini biz hallederiz."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Abone olduğunuz beslemelerin hangi dilleri içermesini istediğinizi seçin. Hiçbiri seçilmezse, tüm diller gösterilir."
@@ -5942,7 +6335,7 @@ msgstr ""
msgid "Select your date of birth"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin"
@@ -5950,7 +6343,7 @@ msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin"
#~ msgid "Select your phone's country"
#~ msgstr "Telefonunuzun ülkesini seçin"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Beslemenizdeki çeviriler için tercih ettiğiniz dili seçin."
@@ -5980,7 +6373,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "E-posta Gönder"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Geribildirim gönder"
@@ -5995,8 +6388,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr ""
@@ -6013,8 +6406,8 @@ msgstr ""
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -6036,7 +6429,7 @@ msgstr ""
#~ msgid "Set Age"
#~ msgstr "Yaş Ayarla"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr ""
@@ -6068,15 +6461,15 @@ msgstr "Yeni şifre ayarla"
#~ msgid "Set password"
#~ msgstr "Şifre ayarla"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm alıntı gönderileri gizleyebilirsiniz. Yeniden göndermeler hala görünür olacaktır."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm yanıtları gizleyebilirsiniz."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm yeniden göndermeleri gizleyebilirsiniz."
@@ -6088,7 +6481,7 @@ msgstr "Bu ayarı \"Evet\" olarak ayarlayarak yanıtları konu tabanlı görünt
#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature."
#~ msgstr "Bu ayarı \"Evet\" olarak ayarlayarak kayıtlı beslemelerinizin örneklerini takip ettiğiniz beslemede göstermek için ayarlayın. Bu deneysel bir özelliktir."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr ""
@@ -6101,24 +6494,24 @@ msgid "Sets Bluesky username"
msgstr "Bluesky kullanıcı adını ayarlar"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr ""
+#~ msgid "Sets color theme to dark"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr ""
+#~ msgid "Sets color theme to light"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr ""
+#~ msgid "Sets color theme to system setting"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr ""
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr ""
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -6145,11 +6538,11 @@ msgstr ""
#~ msgid "Sets server for the Bluesky client"
#~ msgstr "Bluesky istemcisi için sunucuyu ayarlar"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Ayarlar"
@@ -6162,14 +6555,14 @@ msgid "Sexually Suggestive"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Paylaş"
@@ -6187,8 +6580,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr ""
@@ -6199,7 +6592,7 @@ msgstr "Beslemeyi paylaş"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -6217,7 +6610,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -6229,7 +6622,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -6240,7 +6633,7 @@ msgstr ""
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Göster"
@@ -6252,8 +6645,9 @@ msgstr "Göster"
msgid "Show alt text"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Yine de göster"
@@ -6278,19 +6672,23 @@ msgstr "{0} adresine benzer takipçileri göster"
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Daha Fazla Göster"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -6298,11 +6696,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Beslemelerimden Gönderileri Göster"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Alıntı Gönderileri Göster"
@@ -6318,7 +6716,7 @@ msgstr "Alıntı Gönderileri Göster"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Yeniden göndermeleri takip etme beslemesinde göster"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Yanıtları Göster"
@@ -6338,7 +6736,12 @@ msgstr "Takip ettiğiniz kişilerin yanıtlarını diğer tüm yanıtlardan önc
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "En az {value} {0} olan yanıtları göster"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Yeniden Göndermeleri Göster"
@@ -6418,11 +6821,15 @@ msgstr ""
msgid "Sign into Bluesky or create a new account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Çıkış yap"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6444,7 +6851,7 @@ msgstr "Konuşmaya katılmak için kaydolun veya giriş yapın"
msgid "Sign-in Required"
msgstr "Giriş Yapılması Gerekiyor"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Olarak giriş yapıldı"
@@ -6453,7 +6860,7 @@ msgstr "Olarak giriş yapıldı"
msgid "Signed in as @{0}"
msgstr "@{0} olarak giriş yapıldı"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
@@ -6461,17 +6868,21 @@ msgstr ""
#~ msgid "Signs {0} out of Bluesky"
#~ msgstr "{0} adresini Bluesky'den çıkarır"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Atla"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Bu akışı atla"
@@ -6484,12 +6895,11 @@ msgstr "Bu akışı atla"
msgid "Software Dev"
msgstr "Yazılım Geliştirme"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -6516,7 +6926,7 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr ""
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
@@ -6525,8 +6935,8 @@ msgstr ""
#~ msgid "Something went wrong. Check your email and try again."
#~ msgstr "Bir şeyler yanlış gitti. E-postanızı kontrol edin ve tekrar deneyin."
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Üzgünüz! Oturumunuzun süresi doldu. Lütfen tekrar giriş yapın."
@@ -6543,7 +6953,11 @@ msgstr "Aynı gönderiye verilen yanıtları şuna göre sırala:"
#~ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6585,17 +6999,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6611,7 +7025,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Durum sayfası"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6619,7 +7033,7 @@ msgstr ""
#~ msgid "Step"
#~ msgstr ""
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr ""
@@ -6627,23 +7041,23 @@ msgstr ""
#~ msgid "Step {0} of {numSteps}"
#~ msgstr "{numSteps} adımdan {0}. adım"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Submit"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Abone ol"
@@ -6664,11 +7078,11 @@ msgstr ""
msgid "Subscribe to this labeler"
msgstr ""
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Bu listeye abone ol"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6676,8 +7090,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Önerilen Takipçiler"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Sana önerilenler"
@@ -6685,7 +7098,7 @@ msgstr "Sana önerilenler"
msgid "Suggestive"
msgstr "Tehlikeli"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6704,28 +7117,33 @@ msgstr "Hesap Değiştir"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "{0} adresine geç"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Giriş yaptığınız hesabı değiştirir"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Sistem"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Sistem günlüğü"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
+#~ msgid "tag"
+#~ msgstr ""
+
+#: src/components/TagMenu/index.tsx:89
+msgid "Tag menu: {displayTag}"
msgstr ""
-#: src/components/TagMenu/index.tsx:78
-msgid "Tag menu: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
msgstr ""
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
@@ -6736,11 +7154,19 @@ msgstr "Uzun"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Tamamen görüntülemek için dokunun"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6765,11 +7191,11 @@ msgstr ""
msgid "Terms"
msgstr "Şartlar"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Hizmet Şartları"
@@ -6781,16 +7207,20 @@ msgid "Terms used violate community standards"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
+#~ msgid "text"
+#~ msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Metin giriş alanı"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr ""
@@ -6798,19 +7228,23 @@ msgstr ""
msgid "That contains the following:"
msgstr ""
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6820,6 +7254,15 @@ msgstr "Hesap, engeli kaldırdıktan sonra sizinle etkileşime geçebilecek."
#~ msgid "the author"
#~ msgstr ""
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Topluluk Kuralları <0/> konumuna taşındı"
@@ -6828,12 +7271,16 @@ msgstr "Topluluk Kuralları <0/> konumuna taşındı"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Telif Hakkı Politikası <0/> konumuna taşındı"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6841,11 +7288,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr ""
@@ -6853,8 +7300,8 @@ msgstr ""
msgid "The following steps will help customize your Bluesky experience."
msgstr "Aşağıdaki adımlar, Bluesky deneyiminizi özelleştirmenize yardımcı olacaktır."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Gönderi silinmiş olabilir."
@@ -6862,7 +7309,11 @@ msgstr "Gönderi silinmiş olabilir."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Gizlilik Politikası <0/> konumuna taşındı"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6907,24 +7358,24 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "Sunucuya ulaşma konusunda bir sorun oluştu"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "Sunucunuza ulaşma konusunda bir sorun oluştu"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
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/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
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."
@@ -6932,13 +7383,13 @@ msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya doku
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Listeyi almakta bir sorun oluştu. Tekrar denemek için buraya dokunun."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Listelerinizi almakta bir sorun oluştu. Tekrar denemek için buraya dokunun."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr ""
@@ -6964,16 +7415,19 @@ msgstr "Uygulama şifrelerinizi almakta bir sorun oluştu"
msgid "There was an issue! {0}"
msgstr "Bir sorun oluştu! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Bir sorun oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "Uygulamada beklenmeyen bir sorun oluştu. Bu size de olduysa lütfen bize bildirin!"
@@ -6990,11 +7444,11 @@ msgstr "Bluesky'e bir dizi yeni kullanıcı geldi! Hesabınızı en kısa süred
#~ msgid "These are popular accounts you might like:"
#~ msgstr "Bunlar, beğenebileceğiniz popüler hesaplar:"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Bu {screenDescription} işaretlendi:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Bu hesap, kullanıcıların profilini görüntülemek için giriş yapmalarını istedi."
@@ -7003,7 +7457,11 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
@@ -7030,8 +7488,8 @@ msgstr ""
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Bu içerik {0} tarafından barındırılıyor. Harici medyayı etkinleştirmek ister misiniz?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Bu içerik, içerikte yer alan kullanıcılardan biri diğerini engellediği için mevcut değil."
@@ -7063,7 +7521,7 @@ msgstr "Bu besleme boş! Daha fazla kullanıcı takip etmeniz veya dil ayarları
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -7083,11 +7541,11 @@ msgstr "Bu, e-postanızı değiştirmeniz veya şifrenizi sıfırlamanız gerekt
#~ msgid "This label was applied by {0}."
#~ msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -7095,7 +7553,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -7107,7 +7565,11 @@ msgstr ""
msgid "This link is taking you to the following website:"
msgstr "Bu bağlantı sizi aşağıdaki web sitesine götürüyor:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Bu liste boş!"
@@ -7119,23 +7581,35 @@ msgstr ""
msgid "This name is already in use"
msgstr "Bu isim zaten kullanılıyor"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Bu gönderi silindi."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr ""
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
@@ -7152,8 +7626,8 @@ msgstr ""
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Bu kullanıcı sizi engelledi. İçeriklerini göremezsiniz."
@@ -7169,11 +7643,11 @@ msgstr ""
#~ msgid "This user is included in the <0/> list which you have muted."
#~ msgstr "Bu kullanıcı, sessize aldığınız <0/> listesinde bulunuyor."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr ""
@@ -7189,32 +7663,44 @@ msgstr ""
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Bu uyarı yalnızca medya ekli gönderiler için mevcuttur."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:192
#~ msgid "This will hide this post from your feeds."
#~ msgstr "Bu, bu gönderiyi beslemelerinizden gizleyecektir."
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr ""
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Konu Tercihleri"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Konu Tabanlı Mod"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Konu Tercihleri"
@@ -7231,14 +7717,14 @@ msgid "To whom would you like to send this report?"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr ""
+#~ msgid "Toggle between muted word options."
+#~ msgstr ""
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Açılır menüyü aç/kapat"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr ""
@@ -7253,10 +7739,10 @@ msgstr "Dönüşümler"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Çevir"
@@ -7269,7 +7755,7 @@ msgstr "Tekrar dene"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr ""
@@ -7281,11 +7767,11 @@ msgstr ""
msgid "Type:"
msgstr ""
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Listeyi engeli kaldır"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Listeyi sessizden çıkar"
@@ -7293,12 +7779,12 @@ msgstr "Listeyi sessizden çıkar"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol edin."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -7309,7 +7795,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Engeli kaldır"
@@ -7333,9 +7819,9 @@ msgstr "Hesabın engelini kaldır"
msgid "Unblock Account?"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Yeniden göndermeyi geri al"
@@ -7345,8 +7831,8 @@ msgid "Unfollow"
msgstr "Takibi bırak"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr ""
+#~ msgid "Unfollow"
+#~ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -7369,12 +7855,14 @@ msgstr ""
msgid "Unlike this feed"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Sessizden çıkar"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr ""
@@ -7383,7 +7871,7 @@ msgstr ""
msgid "Unmute Account"
msgstr "Hesabın sessizliğini kaldır"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr ""
@@ -7395,13 +7883,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Konunun sessizliğini kaldır"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Sabitlemeyi kaldır"
@@ -7409,11 +7905,11 @@ msgstr "Sabitlemeyi kaldır"
msgid "Unpin from home"
msgstr ""
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Moderasyon listesini sabitlemeyi kaldır"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -7425,10 +7921,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr ""
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -7438,7 +7943,7 @@ msgstr ""
msgid "Unwanted Sexual Content"
msgstr ""
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Listelerde {displayName} güncelle"
@@ -7450,6 +7955,14 @@ msgstr "Listelerde {displayName} güncelle"
msgid "Update to {handle}"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Güncelleniyor..."
@@ -7462,20 +7975,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr "Bir metin dosyası yükleyin:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7527,12 +8040,12 @@ msgstr "Bunu, kullanıcı adınızla birlikte diğer uygulamaya giriş yapmak i
msgid "Used by:"
msgstr "Kullanıcı:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Kullanıcı Engellendi"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr ""
@@ -7540,15 +8053,15 @@ msgstr ""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Liste Tarafından Engellenen Kullanıcı"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Kullanıcı Sizi Engelledi"
@@ -7556,18 +8069,16 @@ msgstr "Kullanıcı Sizi Engelledi"
#~ msgid "User handle"
#~ msgstr "Kullanıcı adı"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "{0} tarafından oluşturulan kullanıcı listesi"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "<0/> tarafından oluşturulan kullanıcı listesi"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Sizin tarafınızdan oluşturulan kullanıcı listesi"
@@ -7579,7 +8090,7 @@ msgstr "Kullanıcı listesi oluşturuldu"
msgid "User list updated"
msgstr "Kullanıcı listesi güncellendi"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Kullanıcı Listeleri"
@@ -7587,13 +8098,17 @@ msgstr "Kullanıcı Listeleri"
msgid "Username or email address"
msgstr "Kullanıcı adı veya e-posta adresi"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Kullanıcılar"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "<0/> tarafından takip edilen kullanıcılar"
+#~ msgid "users followed by <0/>"
+#~ msgstr "<0/> tarafından takip edilen kullanıcılar"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7602,7 +8117,7 @@ msgstr "<0/> tarafından takip edilen kullanıcılar"
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "\"{0}\" içindeki kullanıcılar"
@@ -7626,15 +8141,15 @@ msgstr ""
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "E-postayı doğrula"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "E-postamı doğrula"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "E-postamı Doğrula"
@@ -7655,31 +8170,44 @@ msgstr "E-postanızı Doğrulayın"
#~ msgid "Version {0}"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Video Oyunları"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "{0}'ın avatarını görüntüle"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Hata ayıklama girişini görüntüle"
@@ -7692,7 +8220,7 @@ msgstr ""
msgid "View details for reporting a copyright violation"
msgstr ""
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Tam konuyu görüntüle"
@@ -7703,12 +8231,12 @@ msgstr ""
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Profili görüntüle"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Avatarı görüntüle"
@@ -7720,11 +8248,23 @@ msgstr ""
msgid "View users who like this feed"
msgstr ""
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7760,7 +8300,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Hesabınızın hazır olmasına {estimatedTime} tahmin ediyoruz."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Harika vakit geçirmenizi umuyoruz. Unutmayın, Bluesky:"
@@ -7769,8 +8309,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "Takipçilerinizden gönderi kalmadı. İşte <0/>'den en son gönderiler."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr ""
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7780,11 +8320,11 @@ msgstr ""
msgid "We were unable to load your birth date preferences. Please try again."
msgstr ""
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Bağlantı kuramadık. Hesabınızı kurmaya devam etmek için tekrar deneyin. Başarısız olmaya devam ederse bu akışı atlayabilirsiniz."
@@ -7796,7 +8336,7 @@ msgstr "Hesabınız hazır olduğunda size bildireceğiz."
#~ msgid "We'll look into your appeal promptly."
#~ msgstr "İtirazınıza hızlı bir şekilde bakacağız."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak."
@@ -7804,15 +8344,15 @@ msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Sizi aramızda görmekten çok mutluyuz!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Üzgünüz, ancak bu listeyi çözemedik. Bu durum devam ederse, lütfen liste oluşturucu, @{handleOrDid} ile iletişime geçin."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr ""
@@ -7820,11 +8360,11 @@ msgstr ""
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Üzgünüz, ancak aramanız tamamlanamadı. Lütfen birkaç dakika içinde tekrar deneyin."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz."
@@ -7849,7 +8389,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "İlgi alanlarınız nelerdir?"
@@ -7863,7 +8403,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Nasılsınız?"
@@ -7875,22 +8415,26 @@ msgstr "Bu gönderide hangi diller kullanılıyor?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Algoritmik beslemelerinizde hangi dilleri görmek istersiniz?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Kimler yanıtlayabilir"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7934,12 +8478,12 @@ msgstr "Geniş"
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Gönderi yaz"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Yanıtınızı yazın"
@@ -7953,10 +8497,10 @@ msgstr "Yazarlar"
#~ msgstr "XXXXXX"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7967,10 +8511,18 @@ msgstr "Evet"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7979,7 +8531,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -8045,11 +8598,11 @@ msgstr "Sabitlemiş beslemeniz yok."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "Kaydedilmiş beslemeniz yok!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "Kaydedilmiş beslemeniz yok."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Yazarı engellediniz veya yazar tarafından engellendiniz."
@@ -8057,9 +8610,9 @@ msgstr "Yazarı engellediniz veya yazar tarafından engellendiniz."
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Bu kullanıcıyı engellediniz. İçeriklerini göremezsiniz."
@@ -8070,20 +8623,20 @@ msgstr "Bu kullanıcıyı engellediniz. İçeriklerini göremezsiniz."
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Geçersiz bir kod girdiniz. XXXXX-XXXXX gibi görünmelidir."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr ""
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr ""
@@ -8095,12 +8648,12 @@ msgstr ""
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "Beslemeniz yok."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "Listeniz yok."
@@ -8136,27 +8689,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr ""
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr ""
@@ -8180,7 +8746,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr ""
@@ -8188,11 +8754,11 @@ msgstr ""
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Artık bu konu için bildirim almayacaksınız"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Artık bu konu için bildirim alacaksınız"
@@ -8212,23 +8778,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -8247,12 +8813,12 @@ msgstr "Sıradasınız"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Hazırsınız!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr ""
@@ -8260,7 +8826,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Beslemenizin sonuna ulaştınız! Takip edebileceğiniz daha fazla hesap bulun."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Hesabınız"
@@ -8276,6 +8842,10 @@ msgstr ""
msgid "Your birth date"
msgstr "Doğum tarihiniz"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -8289,7 +8859,7 @@ msgstr "Seçiminiz kaydedilecek, ancak daha sonra ayarlarda değiştirilebilir."
#~ msgstr "Varsayılan beslemeniz \"Takip Edilenler\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -8307,7 +8877,7 @@ msgstr "E-postanız güncellendi ancak doğrulanmadı. Bir sonraki adım olarak,
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "E-postanız henüz doğrulanmadı. Bu, önerdiğimiz önemli bir güvenlik adımıdır."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -8315,7 +8885,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Takip ettiğiniz besleme boş! Neler olduğunu görmek için daha fazla kullanıcı takip edin."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Tam kullanıcı adınız"
@@ -8328,7 +8898,7 @@ msgstr "Tam kullanıcı adınız <0>@{0}0> olacak"
#~ msgid "Your invite codes are hidden when logged in using an App Password"
#~ msgstr "Uygulama Şifresi kullanarak giriş yaptığınızda davet kodlarınız gizlenir"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr ""
@@ -8336,15 +8906,15 @@ msgstr ""
msgid "Your password has been changed successfully!"
msgstr "Şifreniz başarıyla değiştirildi!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Gönderiniz yayınlandı"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Gönderileriniz, beğenileriniz ve engellemeleriniz herkese açıktır. Sessizlikleriniz özeldir."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Profiliniz"
@@ -8352,7 +8922,7 @@ msgstr "Profiliniz"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Yanıtınız yayınlandı"
@@ -8360,6 +8930,6 @@ msgstr "Yanıtınız yayınlandı"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Kullanıcı adınız"
diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po
index 74038d05da..c5522b6bc1 100644
--- a/src/locale/locales/uk/messages.po
+++ b/src/locale/locales/uk/messages.po
@@ -26,7 +26,8 @@ msgstr ""
msgid "(no email)"
msgstr "(немає ел. адреси)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr ""
@@ -46,7 +47,7 @@ msgstr ""
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr ""
@@ -64,16 +65,16 @@ msgstr ""
msgid "{0, plural, one {following} other {following}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr ""
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
@@ -81,23 +82,37 @@ msgstr ""
msgid "{0, plural, one {post} other {posts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr ""
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr ""
@@ -105,7 +120,7 @@ msgstr ""
#~ msgid "{0} your feeds"
#~ msgstr ""
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr ""
@@ -141,7 +156,7 @@ msgstr ""
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr ""
@@ -168,7 +183,7 @@ msgstr ""
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} непрочитаних"
@@ -181,12 +196,12 @@ msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr ""
#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr ""
+#~ msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> учасників"
+#~ msgid "<0/> members"
+#~ msgstr "<0/> учасників"
#: src/screens/StarterPack/Wizard/index.tsx:485
#~ msgid "<0>{0} 0>and<1> 1><2>{1} 2>are included in your starter pack"
@@ -206,11 +221,11 @@ msgstr ""
#~ msgid "<0>{0}, 0><1>{1}, 1>and {2} {3, plural, one {other} other {others}} are included in your starter pack"
#~ msgstr ""
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr ""
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr ""
@@ -226,6 +241,10 @@ msgstr ""
msgid "<0>{0}0> is included in your starter pack"
msgstr ""
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:437
#~ msgid "<0>{followers} 0><1>{pluralizedFollowers}1>"
#~ msgstr "<0>{followers} 0><1>{pluralizedFollowers}1>"
@@ -259,15 +278,27 @@ msgstr ""
msgid "⚠Invalid Handle"
msgstr "⚠Недопустимий псевдонім"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr ""
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr ""
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr ""
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "Відкрити навігацію й налаштування"
@@ -277,16 +308,16 @@ msgid "Access profile and other navigation links"
msgstr "Відкрити профіль та іншу навігацію"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "Доступність"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr ""
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr ""
@@ -295,8 +326,8 @@ msgstr ""
#~ msgstr "обліковий запис"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "Обліковий запис"
@@ -312,20 +343,20 @@ msgstr "Ви підписалися на обліковий запис"
msgid "Account muted"
msgstr "Обліковий запис ігнорується"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "Обліковий запис ігнорується"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "Обліковий запис ігнорується списком"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
msgstr "Параметри облікового запису"
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "Обліковий запис вилучено зі швидкого доступу"
@@ -342,10 +373,10 @@ msgstr "Ви відписалися від облікового запису"
msgid "Account unmuted"
msgstr "Обліковий запис більше не ігнорується"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "Додати"
@@ -361,14 +392,14 @@ msgstr ""
msgid "Add a content warning"
msgstr "Додати попередження про вміст"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "Додати користувача до списку"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "Додати обліковий запис"
@@ -399,11 +430,11 @@ msgstr "Додати пароль застосунку"
#~ msgid "Add link card:"
#~ msgstr "Додати попередній перегляд:"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "Додати слово до ігнорування з обраними налаштуваннями"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "Додати ігноровані слова та теги"
@@ -427,7 +458,7 @@ msgstr ""
msgid "Add the following DNS record to your domain:"
msgstr "Додайте наступний DNS-запис до вашого домену:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr ""
@@ -436,7 +467,7 @@ msgstr ""
msgid "Add to Lists"
msgstr "Додати до списку"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "Додати до моїх стрічок"
@@ -445,24 +476,25 @@ msgstr "Додати до моїх стрічок"
#~ msgstr "Додано"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "Додано до списку"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "Додано до моїх стрічок"
#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "Налаштуйте мінімальну кількість вподобань для того щоб відповідь відобразилася у вашій стрічці."
+#~ msgid "Adjust the number of likes a reply must have to be shown in your feed."
+#~ msgstr "Налаштуйте мінімальну кількість вподобань для того щоб відповідь відобразилася у вашій стрічці."
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "Вміст для дорослих"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr ""
@@ -470,20 +502,20 @@ msgstr ""
msgid "Adult content is disabled."
msgstr "Контент для дорослих вимкнено."
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "Розширені"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr ""
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "Усі збережені стрічки в одному місці."
@@ -502,6 +534,14 @@ msgstr ""
msgid "Allow new messages from"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr ""
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr ""
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -519,7 +559,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "Альтернативний текст"
@@ -540,14 +580,27 @@ msgstr "Було надіслано лист на адресу {0}. Він мі
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "Було надіслано лист на вашу попередню адресу, {0}. Він містить код підтвердження, який ви можете ввести нижче."
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr ""
+
#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#~ msgid "An error occured"
+#~ msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
#: src/components/StarterPack/ShareDialog.tsx:79
#~ msgid "An error occurred while saving the image."
#~ msgstr ""
@@ -561,10 +614,15 @@ msgstr ""
#~ msgid "An error occurred while trying to delete the message. Please try again."
#~ msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr ""
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "Проблема не включена до цих варіантів"
@@ -579,21 +637,25 @@ msgstr ""
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "Виникла проблема, будь ласка, спробуйте ще раз."
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr ""
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "та"
@@ -610,6 +672,10 @@ msgstr ""
msgid "Anti-Social Behavior"
msgstr "Антисоціальна поведінка"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr ""
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "Мова застосунку"
@@ -626,26 +692,26 @@ msgstr "Назва пароля може містити лише латинсь
msgid "App Password names must be at least 4 characters long."
msgstr "Назва пароля застосунку мусить бути хоча б 4 символи в довжину."
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "Налаштування пароля застосунків"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "Паролі для застосунків"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "Звернення"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "Оскаржити мітку \"{0}\""
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr ""
@@ -661,10 +727,19 @@ msgstr ""
msgid "Appeal this decision"
msgstr ""
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "Оформлення"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr ""
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr ""
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -686,7 +761,7 @@ msgstr "Ви дійсно хочете видалити пароль для за
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr ""
@@ -698,19 +773,19 @@ msgstr ""
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr ""
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "Ви впевнені, що бажаєте видалити {0} зі стрічки?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "Ви дійсно бажаєте видалити цю чернетку?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "Ви впевнені?"
@@ -727,13 +802,13 @@ msgstr "Мистецтво"
msgid "Artistic or non-erotic nudity."
msgstr "Художня або нееротична оголеність."
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "Не менше 3-х символів"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -746,8 +821,8 @@ msgstr "Не менше 3-х символів"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "Назад"
@@ -755,7 +830,7 @@ msgstr "Назад"
#~ msgid "Based on your interest in {interestsText}"
#~ msgstr "Ґрунтуючись на вашому інтересі до {interestsText}"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "Основні"
@@ -763,7 +838,7 @@ msgstr "Основні"
msgid "Birthday"
msgstr "Дата народження"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "Дата народження:"
@@ -786,28 +861,27 @@ msgstr "Заблокувати"
msgid "Block Account?"
msgstr "Заблокувати обліковий запис?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "Заблокувати облікові записи"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "Заблокувати список"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "Заблокувати ці облікові записи?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "Заблоковано"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "Заблоковані облікові записи"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "Заблоковані облікові записи"
@@ -820,7 +894,7 @@ msgstr "Заблоковані облікові записи не можуть
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином. Ви не будете бачити їхні пости і вони не будуть бачити ваші."
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "Заблокований пост."
@@ -828,7 +902,7 @@ msgstr "Заблокований пост."
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "Блокування не заважає цьому маркувальнику додавати мітку до вашого облікового запису."
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Блокування - це відкрита інформація. Заблоковані користувачі не можуть відповісти у ваших темах, згадувати вас або іншим чином взаємодіяти з вами."
@@ -836,7 +910,7 @@ msgstr "Блокування - це відкрита інформація. За
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "Блокування не завадить додавання міток до вашого облікового запису, але це зупинить можливість цього облікового запису від коментування ваших постів чи взаємодії з вами."
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "Блог"
@@ -872,7 +946,7 @@ msgstr ""
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr ""
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky не буде показувати ваш профіль і повідомлення відвідувачам без облікового запису. Інші застосунки можуть не слідувати цьому запиту. Це не робить ваш обліковий запис приватним."
@@ -889,21 +963,23 @@ msgstr "Розмити зображення і фільтрувати їх зі
msgid "Books"
msgstr "Книги"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr ""
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr ""
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr ""
@@ -912,11 +988,11 @@ msgstr ""
msgid "Browse other feeds"
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "Організація"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "від —"
@@ -932,15 +1008,15 @@ msgstr "Від {0}"
#~ msgid "by @{0}"
#~ msgstr ""
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "від <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "Створюючи обліковий запис, ви даєте згоду з {els}."
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "створено вами"
@@ -952,13 +1028,13 @@ msgstr "Камера"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "Може містити лише літери, цифри, пробіли, дефіси та знаки підкреслення, і мати довжину від 4 до 32 символів."
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -974,9 +1050,8 @@ msgstr "Може містити лише літери, цифри, пробіл
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "Скасувати"
@@ -1004,7 +1079,7 @@ msgstr "Скасувати обрізання зображення"
msgid "Cancel profile editing"
msgstr "Скасувати зміни профілю"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "Скасувати цитування посту"
@@ -1013,7 +1088,6 @@ msgid "Cancel reactivation and log out"
msgstr ""
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "Скасувати пошук"
@@ -1025,17 +1099,17 @@ msgstr "Скасовує відкриття посилання"
msgid "Change"
msgstr "Змінити"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "Змінити"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "Змінити псевдонім"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "Змінити псевдонім"
@@ -1043,12 +1117,12 @@ msgstr "Змінити псевдонім"
msgid "Change my email"
msgstr "Змінити адресу електронної пошти"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "Змінити пароль"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "Зміна пароля"
@@ -1060,7 +1134,7 @@ msgstr "Змінити мову поста на {0}"
msgid "Change Your Email"
msgstr "Змінити адресу електронної пошти"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -1072,14 +1146,14 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr ""
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr ""
@@ -1116,15 +1190,15 @@ msgstr "Перевірте свою поштову скриньку на ная
#~ msgid "Choose \"Everybody\" or \"Nobody\""
#~ msgstr "Виберіть \"Усі\" або \"Ніхто\""
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr ""
@@ -1132,7 +1206,7 @@ msgstr ""
msgid "Choose for me"
msgstr ""
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr ""
@@ -1140,7 +1214,7 @@ msgstr ""
msgid "Choose Service"
msgstr "Оберіть хостинг-провайдера"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "Оберіть алгоритми, що наповнюватимуть ваші стрічки."
@@ -1155,8 +1229,8 @@ msgstr ""
#: src/components/dialogs/ThreadgateEditor.tsx:91
#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr ""
+#~ msgid "Choose who can reply"
+#~ msgstr ""
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104
#~ msgid "Choose your main feeds"
@@ -1167,18 +1241,18 @@ msgid "Choose your password"
msgstr "Вкажіть пароль"
#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr ""
+#~ msgid "Clear all legacy storage data"
+#~ msgstr ""
#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr ""
+#~ msgid "Clear all legacy storage data (restart after this)"
+#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr ""
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr ""
@@ -1188,10 +1262,10 @@ msgid "Clear search query"
msgstr "Очистити пошуковий запит"
#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "Видаляє всі застарілі дані зі сховища"
+#~ msgid "Clears all legacy storage data"
+#~ msgstr "Видаляє всі застарілі дані зі сховища"
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "Видаляє всі дані зі сховища"
@@ -1211,7 +1285,7 @@ msgstr ""
#~ msgid "Click here to add one."
#~ msgstr ""
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "Натисніть тут, щоб відкрити меню тегів для {tag}"
@@ -1219,6 +1293,14 @@ msgstr "Натисніть тут, щоб відкрити меню тегів
#~ msgid "Click here to open tag menu for #{tag}"
#~ msgstr "Натисніть тут, щоб відкрити меню тегів для #{tag}"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr ""
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr ""
@@ -1232,12 +1314,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr ""
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1258,7 +1340,7 @@ msgid "Close bottom drawer"
msgstr "Закрити нижнє меню"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr ""
@@ -1282,8 +1364,8 @@ msgstr ""
msgid "Close navigation footer"
msgstr "Закрити панель навігації"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "Закрити діалогове вікно"
@@ -1295,7 +1377,7 @@ msgstr "Закриває нижню панель навігації"
msgid "Closes password update alert"
msgstr "Закриває сповіщення про оновлення пароля"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "Закриває редактор постів і видаляє чернетку"
@@ -1303,11 +1385,11 @@ msgstr "Закриває редактор постів і видаляє чер
msgid "Closes viewer for header image"
msgstr "Закриває перегляд зображення"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "Згортає список користувачів для даного сповіщення"
@@ -1321,27 +1403,31 @@ msgstr "Комедія"
msgid "Comics"
msgstr "Комікси"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "Правила спільноти"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "Завершіть ознайомлення та розпочніть користуватися вашим обліковим записом"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "Виконайте завдання"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "Створюйте пости до {MAX_GRAPHEME_LENGTH} символів у довжину"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "Відповісти"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81
#~ msgid "Configure content filtering setting for category: {0}"
#~ msgstr "Налаштувати фільтрування вмісту для категорій: {0}"
@@ -1377,11 +1463,11 @@ msgstr "Підтвердити налаштування мови вмісту"
msgid "Confirm delete account"
msgstr "Підтвердити видалення облікового запису"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "Підтвердіть ваш вік:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "Підтвердіть вашу дату народження"
@@ -1399,7 +1485,8 @@ msgstr "Код підтвердження"
msgid "Connecting..."
msgstr "З’єднання..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "Служба підтримки"
@@ -1411,24 +1498,24 @@ msgstr "Служба підтримки"
msgid "Content Blocked"
msgstr "Заблокований вміст"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "Фільтри контенту"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "Мови"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "Вміст недоступний"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "Попередження про вміст"
@@ -1440,7 +1527,7 @@ msgstr "Попередження про вміст"
msgid "Context menu backdrop, click to close the menu."
msgstr "Тло контекстного меню натисніть, щоб закрити меню."
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "Далі"
@@ -1453,7 +1540,7 @@ msgstr "Продовжити як {0} (поточний користувач)"
msgid "Continue thread..."
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1480,7 +1567,7 @@ msgstr "Кухарство"
msgid "Copied"
msgstr "Скопійовано"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "Версію збірки скопійовано до буфера обміну"
@@ -1488,8 +1575,8 @@ msgstr "Версію збірки скопійовано до буфера об
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "Скопійовано"
@@ -1523,12 +1610,12 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "Копіювати посилання на список"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "Копіювати посилання на пост"
@@ -1537,8 +1624,8 @@ msgstr "Копіювати посилання на пост"
msgid "Copy message text"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "Копіювати текст повідомлення"
@@ -1546,14 +1633,14 @@ msgstr "Копіювати текст повідомлення"
msgid "Copy QR code"
msgstr ""
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "Політика захисту авторського права"
#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr ""
+#~ msgid "Could not compress video"
+#~ msgstr ""
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
@@ -1563,7 +1650,7 @@ msgstr ""
msgid "Could not load feed"
msgstr "Не вдалося завантажити стрічку"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "Не вдалося завантажити список"
@@ -1588,7 +1675,7 @@ msgstr ""
msgid "Create a new account"
msgstr "Створити новий обліковий запис"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "Створити новий обліковий запис Bluesky"
@@ -1598,7 +1685,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr ""
@@ -1606,7 +1693,7 @@ msgstr ""
msgid "Create a starter pack for me"
msgstr ""
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "Створити обліковий запис"
@@ -1662,42 +1749,54 @@ msgstr "Користувацький"
msgid "Custom domain"
msgstr "Власний домен"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "Кастомні стрічки, створені спільнотою, подарують вам нові враження та допоможуть знайти контент, який ви любите."
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "Налаштування медіа зі сторонніх вебсайтів."
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "Темна"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "Темний режим"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
-msgstr "Темна тема"
+#~ msgid "Dark Theme"
+#~ msgstr "Темна тема"
#: src/screens/Signup/StepInfo/index.tsx:191
msgid "Date of birth"
msgstr "Дата народження"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr ""
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "Налагодження модерації"
@@ -1706,16 +1805,16 @@ msgid "Debug panel"
msgstr "Панель налагодження"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "Видалити"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "Видалити обліковий запис"
@@ -1735,8 +1834,8 @@ msgstr "Видалити пароль для застосунку"
msgid "Delete app password?"
msgstr "Видалити пароль для застосунку?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr ""
@@ -1744,7 +1843,7 @@ msgstr ""
msgid "Delete for me"
msgstr ""
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "Видалити список"
@@ -1760,41 +1859,41 @@ msgstr ""
msgid "Delete my account"
msgstr "Видалити мій обліковий запис"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "Видалити мій обліковий запис..."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "Видалити пост"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr ""
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "Видалити цей список?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "Видалити цей пост?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "Видалено"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "Видалений пост."
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr ""
@@ -1809,11 +1908,25 @@ msgstr "Опис"
msgid "Descriptive alt text"
msgstr ""
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "Порожній пост. Ви хотіли щось написати?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "Тьмяний"
@@ -1821,7 +1934,7 @@ msgstr "Тьмяний"
msgid "Direct messages are here!"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr ""
@@ -1829,7 +1942,7 @@ msgstr ""
msgid "Disable Email 2FA"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr ""
@@ -1837,6 +1950,10 @@ msgstr ""
#~ msgid "Disable haptics"
#~ msgstr "Вимкнути тактильні ефекти"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr ""
+
#: src/view/screens/Settings/index.tsx:697
#~ msgid "Disable vibrations"
#~ msgstr "Вимкнути вібрацію"
@@ -1846,20 +1963,20 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "Вимкнено"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "Видалити"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "Відхилити чернетку?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "Попросити застосунки не показувати мій обліковий запис без входу"
@@ -1872,19 +1989,27 @@ msgstr ""
msgid "Discover new custom feeds"
msgstr "Відкрийте для себе нові стрічки"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr ""
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "Відкрийте для себе нові стрічки"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr ""
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr ""
@@ -1900,11 +2025,15 @@ msgstr "Ім'я"
msgid "DNS Panel"
msgstr "Панель DNS"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "Не містить оголеності."
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "Не починається або закінчується дефісом"
@@ -1918,7 +2047,6 @@ msgstr "Домен перевірено!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1937,8 +2065,8 @@ msgstr "Готово"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "Готово"
@@ -1947,7 +2075,7 @@ msgstr "Готово"
msgid "Done{extraText}"
msgstr "Готово{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr ""
@@ -1964,6 +2092,10 @@ msgstr "Перетягніть і відпустіть, щоб додати зо
#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up."
#~ msgstr "Через політику компанії Apple, перегляд вмісту для дорослих можна ввімкнути лише в інтернеті після реєстрації."
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr ""
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "для прикладу, olenka"
@@ -2004,11 +2136,11 @@ msgstr "напр. Користувачі, що неодноразово відп
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "Кожен код запрошення працює лише один раз. Час від часу ви будете отримувати нові коди."
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr ""
@@ -2017,12 +2149,12 @@ msgctxt "action"
msgid "Edit"
msgstr "Редагувати"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "Змінити фото профілю"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr ""
@@ -2031,7 +2163,12 @@ msgstr ""
msgid "Edit image"
msgstr "Редагувати зображення"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "Редагувати опис списку"
@@ -2039,10 +2176,10 @@ msgstr "Редагувати опис списку"
msgid "Edit Moderation List"
msgstr "Редагування списку"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "Редагувати мої стрічки"
@@ -2050,10 +2187,15 @@ msgstr "Редагувати мої стрічки"
msgid "Edit my profile"
msgstr "Редагувати мій профіль"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr ""
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -2069,7 +2211,7 @@ msgstr "Редагувати профіль"
#~ msgid "Edit Saved Feeds"
#~ msgstr "Редагувати збережені стрічки"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr ""
@@ -2077,7 +2219,7 @@ msgstr ""
msgid "Edit User List"
msgstr "Редагувати список користувачів"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr ""
@@ -2089,7 +2231,7 @@ msgstr "Редагувати ваш псевдонім для показу"
msgid "Edit your profile description"
msgstr "Редагувати опис вашого профілю"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr ""
@@ -2099,8 +2241,8 @@ msgid "Education"
msgstr "Освіта"
#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr ""
+#~ msgid "Either choose \"Everybody\" or \"Nobody\""
+#~ msgstr ""
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
@@ -2128,7 +2270,7 @@ msgstr "Ел. адресу оновлено"
msgid "Email verified"
msgstr "Електронну адресу перевірено"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "Ел. адреса:"
@@ -2137,8 +2279,8 @@ msgid "Embed HTML code"
msgstr "Вбудований HTML код"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "Вбудований пост"
@@ -2150,7 +2292,7 @@ msgstr "Вставте цей пост у Ваш сайт. Просто скоп
msgid "Enable {0} only"
msgstr "Увімкнути лише {0}"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "Дозволити вміст для дорослих"
@@ -2168,7 +2310,7 @@ msgstr "Дозволити вміст для дорослих"
msgid "Enable external media"
msgstr "Увімкнути зовнішні медіа"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "Увімкнути медіапрогравачі для"
@@ -2177,9 +2319,13 @@ msgstr "Увімкнути медіапрогравачі для"
msgid "Enable priority notifications"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr ""
+
#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "Увімкніть цей параметр, щоб бачити відповіді тільки від людей, на яких ви підписані."
+#~ msgid "Enable this setting to only see replies between people you follow."
+#~ msgstr "Увімкніть цей параметр, щоб бачити відповіді тільки від людей, на яких ви підписані."
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -2187,11 +2333,11 @@ msgstr "Увімкнути лише джерело"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "Увімкнено"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "Кінець стрічки"
@@ -2211,8 +2357,8 @@ msgstr "Введіть ім'я для цього пароля застосунк
msgid "Enter a password"
msgstr "Введіть пароль"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "Введіть слово або тег"
@@ -2257,25 +2403,27 @@ msgstr "Введіть псевдонім та пароль"
msgid "Error occurred while saving file"
msgstr ""
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Помилка отримання відповіді Captcha."
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "Помилка:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "Усі"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr ""
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2291,6 +2439,14 @@ msgstr "Спам; надмірні згадки або відповіді"
msgid "Excessive or unwanted messages"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr ""
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "Виходить з процесу видалення облікового запису"
@@ -2308,7 +2464,6 @@ msgid "Exits image view"
msgstr "Вийти з режиму перегляду"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "Вихід із пошуку"
@@ -2316,7 +2471,7 @@ msgstr "Вихід із пошуку"
msgid "Expand alt text"
msgstr "Розгорнути опис"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr ""
@@ -2329,6 +2484,14 @@ msgstr "Розгорнути або згорнути весь пост, на я
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
msgstr "Відверто або потенційно проблемний вміст."
@@ -2337,12 +2500,12 @@ msgstr "Відверто або потенційно проблемний вмі
msgid "Explicit sexual images."
msgstr "Відверті сексуальні зображення."
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "Експорт моїх даних"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "Експорт моїх даних"
@@ -2352,17 +2515,17 @@ msgid "External Media"
msgstr "Зовнішні медіа"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "Зовнішні медіа можуть дозволяти вебсайтам збирати інформацію про вас та ваш пристрій. Інформація не надсилається та не запитується, допоки не натиснуто кнопку «Відтворити»."
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "Налаштування зовнішніх медіа"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "Налаштування зовнішніх медіа"
@@ -2371,8 +2534,8 @@ msgstr "Налаштування зовнішніх медіа"
msgid "Failed to create app password."
msgstr "Не вдалося створити пароль застосунку."
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr ""
@@ -2384,16 +2547,16 @@ msgstr "Не вдалося створити список. Перевірте і
msgid "Failed to delete message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "Не вдалося видалити пост, спробуйте ще раз"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr ""
@@ -2415,12 +2578,12 @@ msgstr ""
#~ msgid "Failed to load recommended feeds"
#~ msgstr "Не вдалося завантажити рекомендації стрічок"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr ""
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr ""
@@ -2440,16 +2603,16 @@ msgstr ""
#~ msgid "Failed to send message(s)."
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr ""
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr ""
@@ -2458,12 +2621,12 @@ msgstr ""
msgid "Failed to update settings"
msgstr ""
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "Стрічка"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "Стрічка від {0}"
@@ -2476,19 +2639,19 @@ msgid "Feed toggle"
msgstr ""
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "Зворотний зв'язок"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "Стрічки"
@@ -2496,7 +2659,7 @@ msgstr "Стрічки"
#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting."
#~ msgstr "Стрічки створюються користувачами для відбору постів. Оберіть стрічки, що вас цікавлять."
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "Стрічки – це алгоритми, створені користувачами з деяким досвідом програмування. <0/> для додаткової інформації."
@@ -2504,7 +2667,7 @@ msgstr "Стрічки – це алгоритми, створені корис
#~ msgid "Feeds can be topical as well!"
#~ msgstr "Стрічки також можуть бути тематичними!"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr ""
@@ -2520,7 +2683,7 @@ msgstr ""
msgid "Filter from feeds"
msgstr "Фільтрувати зі стрічок"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "Завершення"
@@ -2550,7 +2713,7 @@ msgstr ""
#~ msgid "Finding similar accounts..."
#~ msgstr "Пошук подібних облікових записів..."
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "Оберіть, що ви хочете бачити у своїй стрічці підписок."
@@ -2558,7 +2721,7 @@ msgstr "Оберіть, що ви хочете бачити у своїй стр
msgid "Fine-tune the discussion threads."
msgstr "Налаштуйте відображення обговорень."
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr ""
@@ -2570,7 +2733,7 @@ msgstr ""
msgid "Fitness"
msgstr "Фітнес"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "Гнучкий"
@@ -2584,12 +2747,11 @@ msgid "Flip vertically"
msgstr "Віддзеркалити вертикально"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "Підписатися"
@@ -2603,7 +2765,7 @@ msgstr "Підписатись"
msgid "Follow {0}"
msgstr "Підписатися на {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr ""
@@ -2616,8 +2778,8 @@ msgstr ""
msgid "Follow Account"
msgstr "Підписатися на обліковий запис"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr ""
@@ -2629,7 +2791,7 @@ msgstr ""
msgid "Follow Back"
msgstr "Підписатися навзаєм"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr ""
@@ -2665,19 +2827,19 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "Ваші підписки"
#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "Тільки ваші підписки"
+#~ msgid "Followed users only"
+#~ msgstr "Тільки ваші підписки"
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "підписка на вас"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr ""
@@ -2686,7 +2848,7 @@ msgstr ""
msgid "Followers"
msgstr "Підписники"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr ""
@@ -2696,34 +2858,34 @@ msgid "Followers you know"
msgstr ""
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "Підписані"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "Підписання на \"{0}\""
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "Налаштування стрічки підписок"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "Налаштування стрічки підписок"
@@ -2735,7 +2897,7 @@ msgstr ""
msgid "Follows you"
msgstr "Підписаний(-на) на вас"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "Підписаний(-на) на вас"
@@ -2752,6 +2914,10 @@ msgstr "З міркувань безпеки нам потрібно буде в
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "З міркувань безпеки цей пароль відображається лише один раз. Якщо ви втратите цей пароль, вам потрібно буде згенерувати новий."
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr ""
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2773,7 +2939,7 @@ msgstr "Часто публікує неприйнятний контент"
msgid "From @{sanitizedAuthor}"
msgstr "Від @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "Зі стрічки \"<0/>\""
@@ -2786,7 +2952,7 @@ msgstr "Галерея"
msgid "Generate a starter pack"
msgstr ""
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr ""
@@ -2815,24 +2981,25 @@ msgstr ""
msgid "Glaring violations of law or terms of service"
msgstr "Грубі порушення закону чи умов використання"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "Назад"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "Назад"
@@ -2842,14 +3009,14 @@ msgstr "Назад"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "Повернутися до попереднього кроку"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr ""
@@ -2891,7 +3058,7 @@ msgstr ""
msgid "Graphic Media"
msgstr "Графічний медіаконтент"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr ""
@@ -2899,7 +3066,7 @@ msgstr ""
msgid "Handle"
msgstr "Псевдонім"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr ""
@@ -2907,7 +3074,7 @@ msgstr ""
msgid "Harassment, trolling, or intolerance"
msgstr "Домагання, тролінг або нетерпимість"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "Хештег"
@@ -2915,12 +3082,12 @@ msgstr "Хештег"
msgid "Hashtag: #{tag}"
msgstr "Хештег: #{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "Виникли проблеми?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "Довідка"
@@ -2944,6 +3111,10 @@ msgstr ""
msgid "Here is your app password."
msgstr "Це ваш пароль для застосунків."
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2951,30 +3122,50 @@ msgstr "Це ваш пароль для застосунків."
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "Приховати"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "Сховати"
#: src/view/com/util/forms/PostDropdownBtn.tsx:390
#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "Сховати пост"
+#~ msgid "Hide post"
+#~ msgstr "Сховати пост"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr ""
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "Приховати вміст"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "Сховати цей пост?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "Сховати список користувачів"
@@ -3006,12 +3197,12 @@ msgstr "Здається, у нас виникли проблеми з зава
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Хм, ми не змогли завантажити цей сервіс модерації."
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "Головна"
@@ -3044,7 +3235,7 @@ msgstr "У мене є код підтвердження"
msgid "I have my own domain"
msgstr "Я маю власний домен"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr ""
@@ -3057,15 +3248,15 @@ msgstr "Розкриває альтернативний текст, якщо т
msgid "If none are selected, suitable for all ages."
msgstr "Якщо не вибрано жодного варіанту - підходить для всіх."
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "Якщо ви ще не досягли повноліття відповідно до законів вашої країни, ваш батьківський або юридичний опікун повинен прочитати ці Умови від вашого імені."
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "Якщо ви видалите цей список, ви не зможете його відновити."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "Якщо ви видалите цей пост, ви не зможете його відновити."
@@ -3141,10 +3332,14 @@ msgstr "Введіть ваш пароль"
msgid "Input your preferred hosting provider"
msgstr "Введіть бажаного хостинг-провайдера"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "Введіть ваш псевдонім"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr ""
@@ -3154,7 +3349,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "Невірний або непідтримуваний пост"
@@ -3170,7 +3365,7 @@ msgstr "Запросити друга"
msgid "Invite code"
msgstr "Код запрошення"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "Код запрошення не прийнято. Переконайтеся в його правильності та повторіть спробу."
@@ -3202,14 +3397,14 @@ msgstr ""
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr ""
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "Вакансії"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr ""
@@ -3246,11 +3441,11 @@ msgstr "Мітки є анотаціями для користувачів і к
#~ msgid "labels have been placed on this {labelTarget}"
#~ msgstr "мітка була розміщена на {labelTarget}"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "Мітки на вашому обліковому записі"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "Мітки на вашому контенті"
@@ -3258,16 +3453,16 @@ msgstr "Мітки на вашому контенті"
msgid "Language selection"
msgstr "Вибір мови"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "Налаштування мови"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "Налаштування мов"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "Мови"
@@ -3276,21 +3471,26 @@ msgstr "Мови"
msgid "Latest"
msgstr "Нещодавні"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "Дізнатися більше"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr ""
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "Дізнайтеся більше про те, яка модерація застосована до цього вмісту."
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "Дізнатися більше про це попередження"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "Дізнатися більше про те, що є публічним в Bluesky."
@@ -3328,8 +3528,8 @@ msgid "left to go."
msgstr "ще залишилося."
#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "Старе сховище очищено, тепер вам потрібно перезапустити застосунок."
+#~ msgid "Legacy storage cleared, you need to restart the app now."
+#~ msgstr "Старе сховище очищено, тепер вам потрібно перезапустити застосунок."
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
@@ -3340,12 +3540,13 @@ msgstr ""
msgid "Let's get your password reset!"
msgstr "Давайте відновимо ваш пароль!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "Злітаємо!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "Світла"
@@ -3357,8 +3558,8 @@ msgstr "Світла"
msgid "Like 10 posts"
msgstr ""
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr ""
@@ -3368,14 +3569,15 @@ msgid "Like this feed"
msgstr "Вподобати цю стрічку"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "Сподобалося"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "Сподобався користувачу"
@@ -3393,11 +3595,11 @@ msgstr "Сподобався користувачу"
#~ msgid "Liked by {likeCount} {0}"
#~ msgstr "Вподобано {likeCount} {0}"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "вподобав(-ла) вашу стрічку"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "сподобався ваш пост"
@@ -3405,11 +3607,11 @@ msgstr "сподобався ваш пост"
msgid "Likes"
msgstr "Вподобання"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "Вподобайки цього поста"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "Список"
@@ -3417,20 +3619,28 @@ msgstr "Список"
msgid "List Avatar"
msgstr "Аватар списку"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "Список заблоковано"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "Список від {0}"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "Список видалено"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "Список ігнорується"
@@ -3438,20 +3648,20 @@ msgstr "Список ігнорується"
msgid "List Name"
msgstr "Назва списку"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "Список розблоковано"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "Список більше не ігнорується"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "Списки"
@@ -3475,10 +3685,10 @@ msgstr ""
msgid "Load new notifications"
msgstr "Завантажити нові сповіщення"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "Завантажити нові пости"
@@ -3486,7 +3696,7 @@ msgstr "Завантажити нові пости"
msgid "Loading..."
msgstr "Завантаження..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "Звіт"
@@ -3502,7 +3712,7 @@ msgstr ""
msgid "Log out"
msgstr "Вийти"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "Видимість для користувачів без облікового запису"
@@ -3542,7 +3752,7 @@ msgstr ""
msgid "Make sure this is where you intend to go!"
msgstr "Переконайтеся, що це дійсно той сайт, що ви збираєтеся відвідати!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "Налаштовуйте ваші ігноровані слова та теги"
@@ -3551,20 +3761,20 @@ msgstr "Налаштовуйте ваші ігноровані слова та
msgid "Mark as read"
msgstr ""
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "Медіа"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "згадані користувачі"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "Згадані користувачі"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "Меню"
@@ -3595,7 +3805,7 @@ msgstr ""
msgid "Message settings"
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3610,29 +3820,31 @@ msgstr ""
msgid "Misleading Account"
msgstr "Оманливий обліковий запис"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr ""
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "Модерація"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "Деталі модерації"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "Список модерації від {0}"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "Список модерації від <0/>"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "Список модерації від вас"
@@ -3644,20 +3856,24 @@ msgstr "Список модерації створено"
msgid "Moderation list updated"
msgstr "Список модерації оновлено"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "Списки для модерації"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "Списки для модерації"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "Налаштування модерації"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "Статус модерації"
@@ -3665,12 +3881,12 @@ msgstr "Статус модерації"
msgid "Moderation tools"
msgstr "Інструменти модерації"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "Модератор вирішив встановити загальне попередження на вміст."
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "Більше"
@@ -3678,7 +3894,7 @@ msgstr "Більше"
msgid "More feeds"
msgstr "Більше стрічок"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "Додаткові опції"
@@ -3694,11 +3910,13 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "Ігнорувати"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "Ігнорувати {truncatedTag}"
@@ -3707,11 +3925,11 @@ msgstr "Ігнорувати {truncatedTag}"
msgid "Mute Account"
msgstr "Ігнорувати обліковий запис"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "Ігнорувати облікові записи"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "Ігнорувати всі пости {displayTag}"
@@ -3721,14 +3939,18 @@ msgid "Mute conversation"
msgstr ""
#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "Ігнорувати лише в тегах"
+#~ msgid "Mute in tags only"
+#~ msgstr "Ігнорувати лише в тегах"
#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "Ігнорувати в тексті та тегах"
+#~ msgid "Mute in text & tags"
+#~ msgstr "Ігнорувати в тексті та тегах"
-#: src/view/screens/ProfileList.tsx:678
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "Ігнорувати список"
@@ -3737,37 +3959,53 @@ msgstr "Ігнорувати список"
#~ msgid "Mute notifications"
#~ msgstr ""
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "Ігнорувати ці облікові записи?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "Ігнорувати це слово у постах і тегах"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "Ігнорувати це слово лише у тегах"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "Ігнорувати обговорення"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "Ігнорувати слова та теги"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "Ігнорується"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "Ігноровані облікові записи"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "Ігноровані облікові записи"
@@ -3776,7 +4014,7 @@ msgstr "Ігноровані облікові записи"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "Ігноровані облікові записи автоматично вилучаються із вашої стрічки та сповіщень. Ігнорування є повністю приватним."
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "Проігноровано списком \"{0}\""
@@ -3784,7 +4022,7 @@ msgstr "Проігноровано списком \"{0}\""
msgid "Muted words & tags"
msgstr "Ігноровані слова та теги"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "Ігнорування є приватним. Ігноровані користувачі можуть взаємодіяти з вами, але ви не бачитимете їх пости і не отримуватимете від них сповіщень."
@@ -3793,7 +4031,7 @@ msgstr "Ігнорування є приватним. Ігноровані ко
msgid "My Birthday"
msgstr "Мій день народження"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "Мої стрічки"
@@ -3801,11 +4039,11 @@ msgstr "Мої стрічки"
msgid "My Profile"
msgstr "Мій профіль"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "Мої збережені стрічки"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "Мої збережені стрічки"
@@ -3830,7 +4068,7 @@ msgstr "Ім'я чи Опис порушують стандарти спільн
msgid "Nature"
msgstr "Природа"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr ""
@@ -3844,7 +4082,7 @@ msgstr ""
msgid "Navigates to the next screen"
msgstr "Переходить до наступного екрана"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "Переходить до вашого профілю"
@@ -3857,7 +4095,7 @@ msgstr "Хочете повідомити про порушення авторс
#~ msgid "Never lose access to your followers and data."
#~ msgstr "Ніколи не втрачайте доступ до ваших даних та підписників."
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "Ніколи не втрачайте доступ до ваших підписників та даних."
@@ -3865,7 +4103,7 @@ msgstr "Ніколи не втрачайте доступ до ваших під
msgid "Nevermind, create a handle for me"
msgstr "Неважливо, створіть для мене псевдонім"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "Новий"
@@ -3901,12 +4139,12 @@ msgctxt "action"
msgid "New post"
msgstr "Новий пост"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "Новий пост"
@@ -3940,10 +4178,10 @@ msgstr "Новини"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3959,17 +4197,17 @@ msgstr "Далі"
msgid "Next image"
msgstr "Наступне зображення"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "Ні"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "Опис відсутній"
@@ -3986,12 +4224,12 @@ msgstr ""
msgid "No feeds found. Try searching for something else."
msgstr ""
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "Ви більше не підписані на {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "Не може бути довшим за 253 символи"
@@ -4003,7 +4241,7 @@ msgstr ""
msgid "No more conversations to show"
msgstr ""
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "Ще ніяких сповіщень!"
@@ -4014,6 +4252,10 @@ msgstr "Ще ніяких сповіщень!"
msgid "No one"
msgstr ""
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr ""
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr ""
@@ -4027,11 +4269,11 @@ msgstr "Результати відсутні"
msgid "No results"
msgstr ""
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "Нічого не знайдено"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "Нічого не знайдено за запитом «{query}»"
@@ -4056,13 +4298,13 @@ msgstr ""
msgid "No thanks"
msgstr "Ні, дякую"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "Ніхто"
#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr ""
+#~ msgid "Nobody can reply"
+#~ msgstr ""
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -4081,7 +4323,7 @@ msgstr "Несексуальна оголеність"
#~ msgid "Not Applicable."
#~ msgstr "Не застосовно."
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "Не знайдено"
@@ -4092,12 +4334,12 @@ msgid "Not right now"
msgstr "Пізніше"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "Примітка щодо поширення"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "Примітка: Bluesky є відкритою і публічною мережею. Цей параметр обмежує видимість вашого вмісту лише у застосунках і на сайті Bluesky, але інші застосунки можуть цього не дотримуватися. Ваш вміст все ще може бути показаний відвідувачам без облікового запису іншими застосунками і вебсайтами."
@@ -4109,7 +4351,7 @@ msgstr ""
msgid "Notification filters"
msgstr ""
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
msgstr ""
@@ -4126,14 +4368,14 @@ msgstr ""
msgid "Notification Sounds"
msgstr ""
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "Сповіщення"
@@ -4162,12 +4404,12 @@ msgid "Off"
msgstr "Вимкнено"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "О, ні!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "Ой! Щось пішло не так."
@@ -4191,7 +4433,7 @@ msgstr ""
msgid "on {str}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "Скинути ознайомлення"
@@ -4199,7 +4441,7 @@ msgstr "Скинути ознайомлення"
msgid "Onboarding tour step {0}: {1}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "Для одного або кількох зображень відсутній опис."
@@ -4208,14 +4450,14 @@ msgid "Only .jpg and .png files are supported"
msgstr ""
#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr ""
+#~ msgid "Only {0} can reply"
+#~ msgstr ""
-#: src/view/com/threadgate/WhoCanReply.tsx:100
-#~ msgid "Only {0} can reply."
-#~ msgstr "Тільки {0} можуть відповідати."
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "Тільки {0} можуть відповідати."
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "Тільки літери, цифри та дефіс"
@@ -4223,7 +4465,7 @@ msgstr "Тільки літери, цифри та дефіс"
msgid "Oops, something went wrong!"
msgstr "Ой, щось пішло не так!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -4232,11 +4474,11 @@ msgstr "Ой, щось пішло не так!"
msgid "Oops!"
msgstr "Ой!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "Відкрити"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr ""
@@ -4249,8 +4491,8 @@ msgstr ""
msgid "Open conversation options"
msgstr ""
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "Емоджі"
@@ -4258,7 +4500,7 @@ msgstr "Емоджі"
msgid "Open feed options menu"
msgstr "Відкрити меню налаштувань стрічки"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "Вбудований браузер"
@@ -4274,20 +4516,20 @@ msgstr "Відкрити налаштування ігнорування слі
msgid "Open navigation"
msgstr "Відкрити навігацію"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "Відкрити меню налаштувань посту"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr ""
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "Відкрити storybook сторінку"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "Відкрити системний журнал"
@@ -4295,11 +4537,11 @@ msgstr "Відкрити системний журнал"
msgid "Opens {numItems} options"
msgstr "Відкриває меню з {numItems} опціями"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr ""
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr ""
@@ -4311,19 +4553,23 @@ msgstr "Відкриває додаткову інформацію про зап
#~ msgid "Opens an expanded list of users in this notification"
#~ msgstr "Відкрити розширений список користувачів у цьому сповіщенні"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr ""
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "Відкриває камеру на пристрої"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr ""
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "Відкрити редактор"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "Відкриває налаштування мов"
@@ -4331,7 +4577,7 @@ msgstr "Відкриває налаштування мов"
msgid "Opens device photo gallery"
msgstr "Відкриває фотогалерею пристрою"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "Відкриває налаштування зовнішніх вбудувань"
@@ -4353,27 +4599,27 @@ msgstr ""
msgid "Opens list of invite codes"
msgstr "Відкриває список кодів запрошення"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr ""
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "Відкриває модальне вікно для підтвердження видалення облікового запису. Потребує код з електронної пошти"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "Відкриває модальне вікно для зміни паролю в Bluesky"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "Відкриває модальне вікно для вибору псевдоніму в Bluesky"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "Відкриває модальне вікно для завантаження даних з вашого облікового запису Bluesky (репозиторій)"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "Відкриває модальне вікно для перевірки електронної пошти"
@@ -4381,7 +4627,7 @@ msgstr "Відкриває модальне вікно для перевірки
msgid "Opens modal for using custom domain"
msgstr "Відкриває діалог налаштування власного домену як псевдоніму"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "Відкриває налаштування модерації"
@@ -4394,15 +4640,15 @@ msgstr "Відкриває форму скидання пароля"
#~ msgid "Opens screen to edit Saved Feeds"
#~ msgstr "Відкриває сторінку з усіма збереженими стрічками"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "Відкриває сторінку з усіма збереженими каналами"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "Відкриває налаштування паролів для застосунків"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "Відкриває налаштування стрічки підписок"
@@ -4414,21 +4660,21 @@ msgstr "Відкриває посилання"
#~ msgid "Opens the message settings page"
#~ msgstr ""
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr ""
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "Відкриває системний журнал"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "Відкриває налаштування гілок"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr ""
@@ -4441,11 +4687,15 @@ msgid "Option {0} of {numItems}"
msgstr "Опція {0} з {numItems}"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "За бажанням надайте додаткову інформацію нижче:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "Або якісь із наступних варіантів:"
@@ -4465,6 +4715,10 @@ msgstr "Інше"
msgid "Other account"
msgstr "Інший обліковий запис"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "Інші..."
@@ -4473,7 +4727,7 @@ msgstr "Інші..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "Сторінку не знайдено"
@@ -4502,19 +4756,24 @@ msgid "Password updated!"
msgstr "Пароль змінено!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "Люди"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "Люди, на яких підписаний(-на) @{0}"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "Люди, які підписані на @{0}"
@@ -4544,7 +4803,7 @@ msgid "Pictures meant for adults."
msgstr "Зображення, призначені для дорослих."
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "Закріпити"
@@ -4556,11 +4815,12 @@ msgstr "Закріпити на головній"
msgid "Pinned Feeds"
msgstr "Закріплені стрічки"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr ""
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr ""
@@ -4577,6 +4837,11 @@ msgstr "Відтворити {0}"
msgid "Play or pause the GIF"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr ""
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4586,16 +4851,16 @@ msgstr "Відтворити відео"
msgid "Plays the GIF"
msgstr "Відтворює GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "Будь ласка, оберіть псевдонім."
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "Будь ласка, оберіть ваш пароль."
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "Будь ласка, завершіть перевірку Captcha."
@@ -4611,11 +4876,11 @@ msgstr "Будь ласка, введіть ім'я для пароля заст
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "Будь ласка, введіть унікальну назву для цього паролю або використовуйте нашу випадково згенеровану."
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "Будь ласка, введіть допустиме слово, тег або фразу для ігнорування"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "Будь ласка, введіть адресу ел. пошти."
@@ -4628,7 +4893,7 @@ msgstr ""
msgid "Please enter your password as well:"
msgstr "Будь ласка, також введіть ваш пароль:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Будь ласка, поясніть, чому ви вважаєте, що ця позначка була помилково додана до {0}"
@@ -4645,7 +4910,7 @@ msgstr ""
msgid "Please Verify Your Email"
msgstr "Підтвердьте свою адресу електронної пошти"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "Будь ласка, зачекайте доки завершиться створення попереднього перегляду для посилання"
@@ -4658,45 +4923,50 @@ msgstr "Політика"
msgid "Porn"
msgstr "Порнографія"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "Запостити"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "Пост"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "Пост від {0}"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "Пост від @{0}"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "Пост видалено"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "Пост приховано"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "Пост приховано через ігнороване слово"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "Ви приховали цей пост"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr ""
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "Мова посту"
@@ -4705,23 +4975,27 @@ msgstr "Мова посту"
msgid "Post Languages"
msgstr "Мови посту"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "Пост не знайдено"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "пости"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "Пости"
#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "Пости можуть бути ігноровані за їхнім текстом, тегами чи за обома."
+#~ msgid "Posts can be muted based on their text, their tags, or both."
+#~ msgstr "Пости можуть бути ігноровані за їхнім текстом, тегами чи за обома."
+
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4743,7 +5017,7 @@ msgstr ""
msgid "Press to change hosting provider"
msgstr "Змінити хостинг-провайдера"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4763,7 +5037,7 @@ msgstr ""
msgid "Previous image"
msgstr "Попереднє зображення"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "Основна мова"
@@ -4775,16 +5049,16 @@ msgstr "Пріоритезувати ваші підписки"
msgid "Priority notifications"
msgstr ""
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "Конфіденційність"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "Політика конфіденційності"
@@ -4796,16 +5070,16 @@ msgstr ""
msgid "Processing..."
msgstr "Обробка..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "профіль"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "Профіль"
@@ -4813,11 +5087,11 @@ msgstr "Профіль"
msgid "Profile updated"
msgstr "Профіль оновлено"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "Захистіть свій обліковий запис, підтвердивши свою електронну адресу."
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "Публічний"
@@ -4825,15 +5099,15 @@ msgstr "Публічний"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "Публічні, поширювані списки користувачів для ігнорування або блокування."
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "Публічні, поширювані списки для створення стрічок."
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "Опублікувати пост"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "Опублікувати відповідь"
@@ -4853,10 +5127,10 @@ msgstr ""
msgid "Quick tip"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "Цитувати пост"
@@ -4870,6 +5144,39 @@ msgstr "Цитувати пост"
#~ msgid "Quote Post"
#~ msgstr "Цитувати"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr ""
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr ""
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "У випадковому порядку"
@@ -4878,10 +5185,27 @@ msgstr "У випадковому порядку"
msgid "Ratios"
msgstr "Співвідношення сторін"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr ""
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr ""
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr ""
@@ -4890,7 +5214,7 @@ msgstr ""
#~ msgid "Reason: {0}"
#~ msgstr ""
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "Останні запити"
@@ -4914,15 +5238,16 @@ msgstr ""
msgid "Reload conversations"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "Видалити"
@@ -4930,11 +5255,11 @@ msgstr "Видалити"
msgid "Remove {displayName} from starter pack"
msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "Видалити обліковий запис"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "Видалити аватар"
@@ -4947,8 +5272,8 @@ msgid "Remove embed"
msgstr ""
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "Видалити стрічку"
@@ -4956,19 +5281,27 @@ msgstr "Видалити стрічку"
msgid "Remove feed?"
msgstr "Видалити стрічку?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "Вилучити з моїх стрічок"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "Видалити з моїх стрічок?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr ""
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "Вилучити зображення"
@@ -4977,24 +5310,24 @@ msgstr "Вилучити зображення"
msgid "Remove image preview"
msgstr "Вилучити попередній перегляд зображення"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "Вилучити ігноровані слова з вашого списку"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr ""
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr ""
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr ""
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "Видалити репост"
@@ -5002,18 +5335,31 @@ msgstr "Видалити репост"
msgid "Remove this feed from your saved feeds"
msgstr "Вилучити цю стрічку зі збережених стрічок"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr ""
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr ""
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "Вилучено зі списку"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "Вилучено з моїх стрічок"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr ""
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "Видалено з моїх стрічок"
@@ -5021,7 +5367,7 @@ msgstr "Видалено з моїх стрічок"
#~ msgid "Removes default thumbnail from {0}"
#~ msgstr "Видаляє мініатюру за замовчуванням з {0}"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr ""
@@ -5029,8 +5375,8 @@ msgstr ""
msgid "Removes the image preview"
msgstr ""
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr ""
@@ -5038,7 +5384,7 @@ msgstr ""
msgid "Replies"
msgstr "Відповіді"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr ""
@@ -5046,18 +5392,40 @@ msgstr ""
#~ msgid "Replies on this thread are disabled"
#~ msgstr ""
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "Відповіді до цього посту вимкнено"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:507
+#: src/components/WhoCanReply.tsx:243
+#~ msgid "Replies to this thread are disabled"
+#~ msgstr "Відповіді до цього посту вимкнено"
+
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "Відповісти"
#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "Які відповіді показувати"
+#~ msgid "Reply Filters"
+#~ msgstr "Які відповіді показувати"
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
#: src/view/com/post/Post.tsx:177
#: src/view/com/posts/FeedItem.tsx:285
@@ -5065,23 +5433,36 @@ msgstr "Які відповіді показувати"
#~ msgid "Reply to <0/>"
#~ msgstr "У відповідь <0/>"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr ""
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr ""
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr ""
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr ""
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -5113,7 +5494,7 @@ msgstr "Діалогове вікно для скарг"
msgid "Report feed"
msgstr "Поскаржитись на стрічку"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "Поскаржитись на список"
@@ -5121,13 +5502,13 @@ msgstr "Поскаржитись на список"
msgid "Report message"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "Поскаржитись на пост"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr ""
@@ -5161,30 +5542,31 @@ msgstr ""
msgid "Report this user"
msgstr "Поскаржитись на цього користувача"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "Репост"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "Репостити"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "Репостити або цитувати"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "Зробив(-ла) репост"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "{0} зробив(-ла) репост"
@@ -5192,20 +5574,20 @@ msgstr "{0} зробив(-ла) репост"
#~ msgid "Reposted by <0/>"
#~ msgstr ""
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "Зроблено репост від <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr ""
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "зробив(-ла) репост вашого допису"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "Репости цього поста"
@@ -5219,7 +5601,7 @@ msgstr "Змінити"
msgid "Request Code"
msgstr "Надіслати запит на код"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "Вимагати опис зображень перед публікацією"
@@ -5244,8 +5626,8 @@ msgstr "Код підтвердження"
msgid "Reset Code"
msgstr "Код скидання"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr ""
@@ -5253,16 +5635,16 @@ msgstr ""
msgid "Reset password"
msgstr "Скинути пароль"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr ""
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr ""
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr ""
@@ -5276,17 +5658,19 @@ msgid "Retries the last action, which errored out"
msgstr "Повторити останню дію, яка спричинила помилку"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "Повторити спробу"
@@ -5294,9 +5678,10 @@ msgstr "Повторити спробу"
#~ msgid "Retry."
#~ msgstr ""
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "Повернутися до попередньої сторінки"
@@ -5310,7 +5695,8 @@ msgid "Returns to previous page"
msgstr "Повертає до попередньої сторінки"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -5360,7 +5746,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr "Зберегти до моїх стрічок"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "Збережені стрічки"
@@ -5373,7 +5759,7 @@ msgstr ""
#~ msgstr "Збережено до галереї."
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "Збережено до ваших стрічок"
@@ -5391,8 +5777,8 @@ msgstr "Зберігає налаштування обрізання зобра
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr ""
@@ -5401,13 +5787,12 @@ msgstr ""
msgid "Science"
msgstr "Наука"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "Прогорнути вгору"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -5416,14 +5801,12 @@ msgstr "Прогорнути вгору"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "Пошук"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "Шукати \"{query}\""
@@ -5431,11 +5814,11 @@ msgstr "Шукати \"{query}\""
msgid "Search for \"{searchText}\""
msgstr ""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "Пошук усіх повідомлень @{authorHandle} з тегом {displayTag}"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "Пошук усіх повідомлень з тегом {displayTag}"
@@ -5447,8 +5830,6 @@ msgstr ""
#~ msgid "Search for someone to start a conversation with."
#~ msgstr ""
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "Пошук користувачів"
@@ -5472,28 +5853,32 @@ msgstr ""
msgid "Security Step Required"
msgstr "Потрібен код підтвердження"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "Переглянути дописи {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "Переглянути пости користувача з {truncatedTag}"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "Переглянути пости з <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "Переглянути пости цього користувача з <0>{displayTag}0>"
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr ""
+
#: src/view/com/notifications/FeedItem.tsx:411
#: src/view/com/util/UserAvatar.tsx:402
#~ msgid "See profile"
#~ msgstr "Переглянути профіль"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "Перегляньте цей посібник"
@@ -5533,7 +5918,11 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "Вибрати мови"
@@ -5553,7 +5942,7 @@ msgstr "Обрати варіант {i} із {numItems}"
msgid "Select the {emojiName} emoji as your avatar"
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "Оберіть сервіс модерації для скарги"
@@ -5569,11 +5958,15 @@ msgstr "Виберіть хостинг-провайдера для ваших
msgid "Select video"
msgstr ""
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
#: src/screens/Onboarding/StepModeration/index.tsx:63
#~ msgid "Select what you want to see (or not see), and we’ll handle the rest."
#~ msgstr "Виберіть, що ви хочете бачити (або не бачити), а решту ми зробимо за вас."
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "Оберіть мови постів, які ви хочете бачити у збережених каналах. Якщо не вибрано жодної – буде показано пости всіма мовами."
@@ -5585,11 +5978,11 @@ msgstr "Оберіть мову застосунку для відображен
msgid "Select your date of birth"
msgstr "Оберіть дату народження"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "Виберіть ваші інтереси із нижченаведених варіантів"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "Оберіть бажану мову для перекладів у вашій стрічці."
@@ -5619,7 +6012,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "Надіслати ел. лист"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "Надіслати відгук"
@@ -5634,8 +6027,8 @@ msgstr ""
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "Поскаржитись"
@@ -5648,8 +6041,8 @@ msgstr "Надіслати скаргу до {0}"
msgid "Send verification email"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr ""
@@ -5661,7 +6054,7 @@ msgstr "Надсилає електронний лист з кодом підт
msgid "Server address"
msgstr "Адреса сервера"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "Додати дату народження"
@@ -5669,15 +6062,15 @@ msgstr "Додати дату народження"
msgid "Set new password"
msgstr "Зміна пароля"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "Вимкніть цей параметр, щоб приховати всі цитовані пости у вашій стрічці. Не впливає на репости без цитування."
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "Вимкніть цей параметр, щоб приховати всі відповіді у вашій стрічці."
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "Вимкніть цей параметр, щоб приховати всі репости у вашій стрічці."
@@ -5685,7 +6078,7 @@ msgstr "Вимкніть цей параметр, щоб приховати вс
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "Увімкніть це налаштування, щоб показувати відповіді у вигляді гілок. Це експериментальна функція."
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "Увімкніть це налаштування, щоб іноді бачити пости зі збережених стрічок у вашій домашній стрічці. Це експериментальна функція."
@@ -5698,24 +6091,24 @@ msgid "Sets Bluesky username"
msgstr "Встановлює псевдонім Bluesky"
#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "Встановлює темну тему"
+#~ msgid "Sets color theme to dark"
+#~ msgstr "Встановлює темну тему"
#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "Встановлює світлу тему"
+#~ msgid "Sets color theme to light"
+#~ msgstr "Встановлює світлу тему"
#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "Встановлює тему відповідно до системних налаштувань"
+#~ msgid "Sets color theme to system setting"
+#~ msgstr "Встановлює тему відповідно до системних налаштувань"
#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "Встановлює чорний колір для темної теми"
+#~ msgid "Sets dark theme to the dark theme"
+#~ msgstr "Встановлює чорний колір для темної теми"
#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "Встановлює тьмяний колір для темної теми"
+#~ msgid "Sets dark theme to the dim theme"
+#~ msgstr "Встановлює тьмяний колір для темної теми"
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
@@ -5733,11 +6126,11 @@ msgstr "Встановлює співвідношення сторін зобр
msgid "Sets image aspect ratio to wide"
msgstr "Встановлює співвідношення сторін зображення до ширини"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "Налаштування"
@@ -5750,14 +6143,14 @@ msgid "Sexually Suggestive"
msgstr "З сексуальним підтекстом"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "Поширити"
@@ -5775,8 +6168,8 @@ msgid "Share a fun fact!"
msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "Все одно поширити"
@@ -5787,7 +6180,7 @@ msgstr "Поширити стрічку"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr ""
@@ -5805,7 +6198,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr ""
@@ -5817,7 +6210,7 @@ msgstr ""
msgid "Share your favorite feed!"
msgstr ""
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr ""
@@ -5828,7 +6221,7 @@ msgstr "Поширює посилання"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "Показувати"
@@ -5840,8 +6233,9 @@ msgstr "Показувати"
msgid "Show alt text"
msgstr ""
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "Всеодно показати"
@@ -5862,19 +6256,23 @@ msgstr "Показати підписки, схожі на {0}"
msgid "Show hidden replies"
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr ""
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr ""
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "Показати більше"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr ""
@@ -5882,11 +6280,11 @@ msgstr ""
msgid "Show muted replies"
msgstr ""
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "Показувати пости зі збережених стрічок"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "Показувати цитати"
@@ -5902,7 +6300,7 @@ msgstr "Показувати цитати"
#~ msgid "Show re-posts in Following feed"
#~ msgstr "Показувати репости у стрічці \"Following\""
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "Показувати відповіді"
@@ -5922,7 +6320,12 @@ msgstr "Показувати відповіді від людей, за яким
#~ msgid "Show replies with at least {value} {0}"
#~ msgstr "Показувати відповіді від {value} {0}"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "Показувати репости"
@@ -5988,11 +6391,15 @@ msgstr "Увійдіть або створіть обліковий запис,
msgid "Sign into Bluesky or create a new account"
msgstr "Увійдіть у Bluesky або створіть новий обліковий запис"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "Вийти"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr ""
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -6014,7 +6421,7 @@ msgstr "Зареєструйтеся або увійдіть, щоб приєд
msgid "Sign-in Required"
msgstr "Необхідно увійти для перегляду"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "Ви увійшли як"
@@ -6023,21 +6430,25 @@ msgstr "Ви увійшли як"
msgid "Signed in as @{0}"
msgstr "Ви увійшли як @{0}"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "Пропустити"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "Пропустити цей процес"
@@ -6046,12 +6457,11 @@ msgstr "Пропустити цей процес"
msgid "Software Dev"
msgstr "Розробка П/З"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr ""
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr ""
@@ -6074,13 +6484,13 @@ msgstr ""
msgid "Something went wrong, please try again."
msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз."
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
msgstr ""
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "Даруйте! Ваш сеанс вичерпався. Будь ласка, увійдіть знову."
@@ -6097,7 +6507,11 @@ msgstr "Оберіть, як сортувати відповіді до пост
#~ msgstr "Джерело:"
#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
+#~ msgid "Source: <0>{0}0>"
+#~ msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
msgstr ""
#: src/lib/moderation/useReportOptions.ts:67
@@ -6135,17 +6549,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr ""
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr ""
@@ -6161,7 +6575,7 @@ msgstr ""
#~ msgid "Status page"
#~ msgstr "Сторінка стану"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr ""
@@ -6169,27 +6583,27 @@ msgstr ""
#~ msgid "Step"
#~ msgstr "Крок"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr ""
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "Сховище очищено, тепер вам треба перезапустити застосунок."
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "Надіслати"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "Підписатися"
@@ -6210,11 +6624,11 @@ msgstr "Підписатися на маркувальника"
msgid "Subscribe to this labeler"
msgstr "Підписатися на цього маркувальника"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "Підписатися на цей список"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr ""
@@ -6222,8 +6636,7 @@ msgstr ""
#~ msgid "Suggested Follows"
#~ msgstr "Пропоновані підписки"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "Пропозиції для вас"
@@ -6231,7 +6644,7 @@ msgstr "Пропозиції для вас"
msgid "Suggestive"
msgstr "Непристойний"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -6246,30 +6659,35 @@ msgstr "Перемикнути обліковий запис"
msgid "Switch between feeds to control your experience."
msgstr ""
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "Переключитися на {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
msgstr "Переключає обліковий запис"
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "Системне"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "Системний журнал"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "тег"
+#~ msgid "tag"
+#~ msgstr "тег"
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "Меню тегів: {displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr ""
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "Високе"
@@ -6278,11 +6696,19 @@ msgstr "Високе"
msgid "Tap to dismiss"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr ""
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "Торкніться, щоб переглянути повністю"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr ""
@@ -6307,11 +6733,11 @@ msgstr ""
msgid "Terms"
msgstr "Умови"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "Умови Використання"
@@ -6323,16 +6749,20 @@ msgid "Terms used violate community standards"
msgstr "Використані терміни порушують стандарти спільноти"
#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "текст"
+#~ msgid "text"
+#~ msgstr "текст"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "Поле вводу тексту"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "Дякуємо. Вашу скаргу було надіслано."
@@ -6340,19 +6770,23 @@ msgstr "Дякуємо. Вашу скаргу було надіслано."
msgid "That contains the following:"
msgstr "Що містить наступне:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "Цей псевдонім вже зайнятий."
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr ""
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
@@ -6362,6 +6796,15 @@ msgstr "Обліковий запис зможе взаємодіяти з ва
#~ msgid "the author"
#~ msgstr "автором"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr ""
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "Правила Спільноти переміщено до <0/>"
@@ -6370,12 +6813,16 @@ msgstr "Правила Спільноти переміщено до <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "Політику захисту авторського права переміщено до <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr ""
@@ -6383,11 +6830,11 @@ msgstr ""
msgid "The feed has been replaced with Discover."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "Наступні мітки були додано до вашого облікового запису."
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "Наступні мітки були додано до вашого контенту."
@@ -6395,8 +6842,8 @@ msgstr "Наступні мітки були додано до вашого ко
msgid "The following steps will help customize your Bluesky experience."
msgstr "Наступні кроки допоможуть налаштувати Ваш досвід використання Bluesky."
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "Можливо цей пост було видалено."
@@ -6404,7 +6851,11 @@ msgstr "Можливо цей пост було видалено."
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Політика конфіденційності була переміщена до <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr ""
@@ -6449,24 +6900,24 @@ msgstr ""
#~ msgstr ""
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "При з'єднанні з сервером виникла проблема"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "При з'єднанні з вашим сервером виникла проблема"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу."
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу."
@@ -6474,13 +6925,13 @@ msgstr "Виникла проблема з завантаженням пості
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "Виникла проблема з завантаженням списку. Натисніть тут, щоб повторити спробу."
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "Виникла проблема з завантаженням ваших списків. Натисніть тут, щоб повторити спробу."
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "Виникла проблема з надсиланням вашої скарги. Будь ласка, перевірте підключення до Інтернету."
@@ -6506,16 +6957,19 @@ msgstr "Виникла проблема з завантаженням ваших
msgid "There was an issue! {0}"
msgstr "Виникла проблема! {0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "Виникла проблема. Перевірте підключення до Інтернету і повторіть спробу."
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "У застосунку сталася неочікувана проблема. Будь ласка, повідомте нас, якщо ви отримали це повідомлення!"
@@ -6528,11 +6982,11 @@ msgstr "Відбувався наплив нових користувачів у
#~ msgid "These are popular accounts you might like:"
#~ msgstr "Ці популярні користувачі можуть вам сподобатися:"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "Цей {screenDescription} був позначений:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "Цей користувач вказав, що не хоче, аби його профіль бачили відвідувачі без облікового запису."
@@ -6541,8 +6995,12 @@ msgid "This account is blocked by one or more of your moderation lists. To unblo
msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "Це звернення буде надіслано до <0>{0}0>."
+#~ msgid "This appeal will be sent to <0>{0}0>."
+#~ msgstr "Це звернення буде надіслано до <0>{0}0>."
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -6568,8 +7026,8 @@ msgstr "Цей контент отримав загальне попередже
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "Цей вміст розміщено {0}. Увімкнути зовнішні медіа?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "Цей контент недоступний, оскільки один із залучених користувачів заблокував іншого."
@@ -6601,7 +7059,7 @@ msgstr "Ця стрічка порожня! Можливо, вам треба п
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr ""
@@ -6621,11 +7079,11 @@ msgstr "Це важливо для випадку, якщо вам коли-не
#~ msgid "This label was applied by {0}."
#~ msgstr "Ця мітка була додана {0}."
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr ""
@@ -6633,7 +7091,7 @@ msgstr ""
#~ msgid "This label was applied by you"
#~ msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr ""
@@ -6645,7 +7103,11 @@ msgstr "Цей маркувальник ще не заявив, які мітк
msgid "This link is taking you to the following website:"
msgstr "Це посилання веде на сайт:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "Список порожній!"
@@ -6657,23 +7119,35 @@ msgstr "Даний сервіс модерації недоступний. Пе
msgid "This name is already in use"
msgstr "Це ім'я вже використовується"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "Цей пост було видалено."
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Цей пост видно лише користувачам, які увійшли до системи. Воно не буде видимим для людей, які не ввійшли до системи."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "Цей пост буде приховано зі стрічок."
+#~ msgid "This post will be hidden from feeds."
+#~ msgstr "Цей пост буде приховано зі стрічок."
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr ""
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "Цей профіль видно лише користувачам, які увійшли до системи. Воно не буде видимим для людей, які не ввійшли до системи."
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr ""
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "Цей сервіс не надав умови обслуговування або політики конфіденційності."
@@ -6690,8 +7164,8 @@ msgstr "Цей користувач ще не має жодного підпис
msgid "This user has blocked you"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "Цей користувач заблокував вас. Ви не можете бачити їх пости."
@@ -6699,11 +7173,11 @@ msgstr "Цей користувач заблокував вас. Ви не мо
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "Цей користувач налаштував, щоб його контент був видимий лише для користувачів, які увійшли в систему."
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "Цей користувач є в списку <0>{0}0>, який ви заблокували."
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "Цей користувач є в списку <0>{0}0>, який ви додали до ігнорування."
@@ -6719,28 +7193,40 @@ msgstr "Цей користувач не підписаний ні на кого
#~ msgid "This warning is only available for posts with media attached."
#~ msgstr "Це попередження доступне тільки для записів з прикріпленими медіа-файлами."
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "Це видалить {0} зі ваших ігнорованих слів. Ви завжди можете додати його назад."
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
-#: src/view/screens/Settings/index.tsx:596
+#: src/components/dialogs/MutedWords.tsx:283
+#~ msgid "This will delete {0} from your muted words. You can always add it back later."
+#~ msgstr "Це видалить {0} зі ваших ігнорованих слів. Ви завжди можете додати його назад."
+
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr ""
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "Налаштування гілок"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "Налаштування гілок"
#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr ""
+#~ msgid "Thread settings updated"
+#~ msgstr ""
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "Режим гілок"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "Налаштування обговорень"
@@ -6757,14 +7243,14 @@ msgid "To whom would you like to send this report?"
msgstr "Кому ви хотіли б відправити цю скаргу?"
#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "Перемикання між опціями ігнорування слів."
+#~ msgid "Toggle between muted word options."
+#~ msgstr "Перемикання між опціями ігнорування слів."
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "Розкрити/сховати"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "Увімкнути або вимкнути вміст для дорослих"
@@ -6779,10 +7265,10 @@ msgstr "Редагування"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "Перекласти"
@@ -6795,7 +7281,7 @@ msgstr "Спробувати ще раз"
msgid "TV"
msgstr ""
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr ""
@@ -6807,11 +7293,11 @@ msgstr ""
msgid "Type:"
msgstr "Тип:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "Розблокувати список"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "Перестати ігнорувати"
@@ -6819,12 +7305,12 @@ msgstr "Перестати ігнорувати"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "Не вдалося зв'язатися з вашим хостинг-провайдером. Перевірте ваше підключення до Інтернету."
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr ""
@@ -6835,7 +7321,7 @@ msgstr ""
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "Розблокувати"
@@ -6859,9 +7345,9 @@ msgstr "Розблокувати обліковий запис"
msgid "Unblock Account?"
msgstr "Розблокувати обліковий запис?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "Скасувати репост"
@@ -6871,8 +7357,8 @@ msgid "Unfollow"
msgstr "Відписатись"
#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "Не стежити"
+#~ msgid "Unfollow"
+#~ msgstr "Не стежити"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
@@ -6891,12 +7377,14 @@ msgstr "Відписатися від облікового запису"
msgid "Unlike this feed"
msgstr "Видалити вподобання цієї стрічки"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "Не ігнорувати"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "Не ігнорувати {truncatedTag}"
@@ -6905,7 +7393,7 @@ msgstr "Не ігнорувати {truncatedTag}"
msgid "Unmute Account"
msgstr "Перестати ігнорувати"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "Перестати ігнорувати всі пости {displayTag}"
@@ -6917,13 +7405,21 @@ msgstr ""
#~ msgid "Unmute notifications"
#~ msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "Перестати ігнорувати"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr ""
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr ""
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "Відкріпити"
@@ -6931,11 +7427,11 @@ msgstr "Відкріпити"
msgid "Unpin from home"
msgstr "Відкріпити від головної сторінки"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "Відкріпити список модерації"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr ""
@@ -6943,10 +7439,19 @@ msgstr ""
msgid "Unsubscribe"
msgstr "Відписатися"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr ""
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "Відписатися від цього маркувальника"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr ""
+
#: src/lib/moderation/useReportOptions.ts:85
#~ msgid "Unwanted sexual content"
#~ msgstr ""
@@ -6956,7 +7461,7 @@ msgstr "Відписатися від цього маркувальника"
msgid "Unwanted Sexual Content"
msgstr "Небажаний сексуальний вміст"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "Змінити належність {displayName} до списків"
@@ -6964,6 +7469,14 @@ msgstr "Змінити належність {displayName} до списків"
msgid "Update to {handle}"
msgstr "Оновити до {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr ""
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "Оновлення..."
@@ -6976,20 +7489,20 @@ msgstr ""
msgid "Upload a text file to:"
msgstr "Завантажити текстовий файл до:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "Завантажити з камери"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "Завантажити з файлів"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -7037,12 +7550,12 @@ msgstr "Скористайтесь ним для входу в інші заст
msgid "Used by:"
msgstr "Використано:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "Користувача заблоковано"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "Користувача заблоковано списком \"{0}\""
@@ -7050,30 +7563,28 @@ msgstr "Користувача заблоковано списком \"{0}\""
msgid "User blocked by list"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "Користувача заблоковано списком"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "Користувач заблокував вас"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "Користувач заблокував вас"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "Список користувачів від {0}"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "Список користувачів від <0/>"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "Список користувачів від вас"
@@ -7085,7 +7596,7 @@ msgstr "Список користувачів створено"
msgid "User list updated"
msgstr "Список користувачів оновлено"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "Списки користувачів"
@@ -7093,13 +7604,17 @@ msgstr "Списки користувачів"
msgid "Username or email address"
msgstr "Ім'я користувача або електронна адреса"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "Користувачі"
#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "користувачі, на яких підписані <0/>"
+#~ msgid "users followed by <0/>"
+#~ msgstr "користувачі, на яких підписані <0/>"
+
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr ""
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -7108,7 +7623,7 @@ msgstr "користувачі, на яких підписані <0/>"
msgid "Users I follow"
msgstr ""
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "Користувачі в «{0}»"
@@ -7128,15 +7643,15 @@ msgstr "Значення:"
msgid "Verify DNS Record"
msgstr ""
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "Підтвердити електронну адресу"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "Підтвердити мою електронну адресу"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "Підтвердити мою електронну адресу"
@@ -7157,31 +7672,44 @@ msgstr "Підтвердьте адресу вашої електронної п
#~ msgid "Version {0}"
#~ msgstr "Версія {0}"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr ""
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr ""
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "Відеоігри"
#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr ""
+#~ msgid "Videos cannot be larger than 100MB"
+#~ msgstr ""
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "Переглянути аватар {0}"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr ""
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr ""
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr ""
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr ""
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "Переглянути запис для налагодження"
@@ -7194,7 +7722,7 @@ msgstr "Переглянути деталі"
msgid "View details for reporting a copyright violation"
msgstr "Переглянути деталі як надіслати скаргу про порушення авторських прав"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "Переглянути обговорення"
@@ -7205,12 +7733,12 @@ msgstr "Переглянути інформацію про мітки"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "Переглянути профіль"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "Переглянути аватар"
@@ -7222,11 +7750,23 @@ msgstr "Переглянути послуги маркування, який н
msgid "View users who like this feed"
msgstr "Переглянути користувачів, які вподобали цю стрічку"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr ""
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr ""
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr ""
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -7258,7 +7798,7 @@ msgstr ""
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "Ми оцінюємо {estimatedTime} до готовності вашого облікового запису."
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "Ми сподіваємося, що ви проведете чудово свій час. Пам'ятайте, Bluesky — це:"
@@ -7267,8 +7807,8 @@ msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "У нас закінчилися дописи у ваших підписках. Ось останні пости зі стрічки <0/>."
#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "Ми рекомендуємо уникати загальних слів, що зʼявляються у багатьох постах, оскільки це може призвести до того, що жодного поста не буде показано."
+#~ msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+#~ msgstr "Ми рекомендуємо уникати загальних слів, що зʼявляються у багатьох постах, оскільки це може призвести до того, що жодного поста не буде показано."
#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125
#~ msgid "We recommend our \"Discover\" feed:"
@@ -7278,11 +7818,11 @@ msgstr "Ми рекомендуємо уникати загальних слів
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "Не вдалося завантажити ваші налаштування дати дня народження. Повторіть спробу."
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "Наразі ми не змогли завантажити список ваших маркувальників."
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "Ми не змогли під'єднатися. Будь ласка, спробуйте ще раз, щоб продовжити налаштування свого облікового запису. Якщо помилка повторюється, то ви можете пропустити цей процес."
@@ -7290,7 +7830,7 @@ msgstr "Ми не змогли під'єднатися. Будь ласка, с
msgid "We will let you know when your account is ready."
msgstr "Ми повідомимо вас, коли ваш обліковий запис буде готовий."
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "Ми скористаємося цим, щоб підлаштувати Ваш досвід."
@@ -7298,15 +7838,15 @@ msgstr "Ми скористаємося цим, щоб підлаштувати
msgid "We're having network issues, try again"
msgstr ""
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "Ми дуже раді, що ви приєдналися!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "Дуже прикро, але нам не вдалося знайти цей список. Якщо це продовжується, будь ласка, зв'яжіться з його автором: @{handleOrDid}."
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "На жаль, ми не змогли зараз завантажити ваші ігноровані слова. Будь ласка, спробуйте ще раз."
@@ -7314,11 +7854,11 @@ msgstr "На жаль, ми не змогли зараз завантажити
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "Даруйте, нам не вдалося виконати пошук за вашим запитом. Будь ласка, спробуйте ще раз через кілька хвилин."
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Нам дуже прикро! Ми не можемо знайти сторінку, яку ви шукали."
@@ -7343,7 +7883,7 @@ msgstr ""
msgid "Welcome, friend!"
msgstr ""
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "Чим ви цікавитесь?"
@@ -7353,7 +7893,7 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "Як справи?"
@@ -7365,22 +7905,26 @@ msgstr "Які мови використані в цьому пості?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "Якими мовами ви хочете бачити пости у алгоритмічних стрічках?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr ""
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr ""
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "Хто може відповідати"
#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr ""
+#~ msgid "Who can reply dialog"
+#~ msgstr ""
#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr ""
+#~ msgid "Who can reply?"
+#~ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
@@ -7424,12 +7968,12 @@ msgstr "Широке"
msgid "Write a message"
msgstr ""
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "Написати пост"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "Написати відповідь"
@@ -7439,10 +7983,10 @@ msgid "Writers"
msgstr "Письменники"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -7453,10 +7997,18 @@ msgstr "Так"
msgid "Yes, deactivate"
msgstr ""
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr ""
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr ""
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr ""
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr ""
@@ -7465,7 +8017,8 @@ msgstr ""
msgid "Yesterday, {time}"
msgstr ""
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr ""
@@ -7531,11 +8084,11 @@ msgstr "У вас немає закріплених стрічок."
#~ msgid "You don't have any saved feeds!"
#~ msgstr "У вас немає збережених стрічок!"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "У вас немає збережених стрічок."
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "Ви заблокували автора або автор заблокував вас."
@@ -7543,9 +8096,9 @@ msgstr "Ви заблокували автора або автор заблок
msgid "You have blocked this user"
msgstr ""
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "Ви заблокували цього користувача. Ви не можете бачити їх вміст."
@@ -7556,20 +8109,20 @@ msgstr "Ви заблокували цього користувача. Ви не
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "Ви ввели неправильний код. Він має виглядати так: XXXXX-XXXXX."
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "Ви приховали цей пост"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "Ви приховали цей пост."
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "Ви увімкнули ігнорування цього облікового запису."
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "Ви увімкнули ігнорування цього користувача"
@@ -7577,12 +8130,12 @@ msgstr "Ви увімкнули ігнорування цього користу
msgid "You have no conversations yet. Start one!"
msgstr ""
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "У вас немає стрічок."
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "У вас немає списків."
@@ -7610,27 +8163,40 @@ msgstr ""
msgid "You haven't created a starter pack yet!"
msgstr ""
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "У вас ще немає ігнорованих слів чи тегів"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr ""
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "Ви можете оскаржувати мітки, якщо вважаєте, що вони були розміщені помилково."
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
msgstr ""
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:95
+#~ msgid "You may only add up to 50 feeds"
+#~ msgstr ""
+
#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr ""
+#~ msgid "You may only add up to 50 profiles"
+#~ msgstr ""
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "Вам має виповнитись 13 років для того, щоб мати змогу зареєструватись."
@@ -7650,7 +8216,7 @@ msgstr ""
msgid "You must grant access to your photo library to save the image."
msgstr ""
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "Ви повинні обрати хоча б одного маркувальника для скарги"
@@ -7658,11 +8224,11 @@ msgstr "Ви повинні обрати хоча б одного маркува
msgid "You previously deactivated @{0}."
msgstr ""
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "Ви більше не будете отримувати сповіщення з цього обговорення"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "Ви будете отримувати сповіщення з цього обговорення"
@@ -7682,23 +8248,23 @@ msgstr ""
msgid "You: {short}"
msgstr ""
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr ""
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr ""
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr ""
@@ -7717,12 +8283,12 @@ msgstr "Ви в черзі"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr ""
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "Все готово!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "Ви обрали приховувати слово або тег в цьому пості."
@@ -7730,7 +8296,7 @@ msgstr "Ви обрали приховувати слово або тег в ц
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів."
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "Ваш акаунт"
@@ -7746,6 +8312,10 @@ msgstr "Дані з вашого облікового запису, які мі
msgid "Your birth date"
msgstr "Ваша дата народження"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr ""
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr ""
@@ -7759,7 +8329,7 @@ msgstr "Ваш вибір буде запам'ятовано, ви у будь-
#~ msgstr "Ваша стрічка за замовчуванням \"Following\""
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7773,7 +8343,7 @@ msgstr "Вашу адресу електронної пошти було змі
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "Ваша електронна пошта ще не підтверджена. Це важливий крок для безпеки вашого облікового запису, який ми рекомендуємо вам зробити."
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr ""
@@ -7781,7 +8351,7 @@ msgstr ""
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "Ваша домашня стрічка порожня! Підпишіться на більше користувачів щоб отримувати більше постів."
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "Ваш повний псевдонім буде"
@@ -7789,7 +8359,7 @@ msgstr "Ваш повний псевдонім буде"
msgid "Your full handle will be <0>@{0}0>"
msgstr "Вашим повним псевдонімом буде <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "Ваші ігноровані слова"
@@ -7797,15 +8367,15 @@ msgstr "Ваші ігноровані слова"
msgid "Your password has been changed successfully!"
msgstr "Ваш пароль успішно змінено!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "Пост опубліковано"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "Ваші повідомлення, вподобання і блоки є публічними. Ігнорування - приватні."
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "Ваш профіль"
@@ -7813,7 +8383,7 @@ msgstr "Ваш профіль"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr ""
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "Відповідь опубліковано"
@@ -7821,6 +8391,6 @@ msgstr "Відповідь опубліковано"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr ""
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "Ваш псевдонім"
diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po
index fbd01ccc94..38dca182e9 100644
--- a/src/locale/locales/zh-CN/messages.po
+++ b/src/locale/locales/zh-CN/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh_CN\n"
"Project-Id-Version: zh-CN for bluesky-social-app\n"
"Report-Msgid-Bugs-To: Frudrax Cheng \n"
-"PO-Revision-Date: 2024-07-15 09:11+0800\n"
+"PO-Revision-Date: 2024-08-22 17:24+0800\n"
"Last-Translator: Frudrax Cheng \n"
"Language-Team: Frudrax Cheng (auroursa), Simon Chan (RitsukiP), U2FsdGVkX1, Mikan Harada (mitian233), IceCodeNew\n"
"Plural-Forms: \n"
@@ -21,7 +21,8 @@ msgstr "(包含嵌入内容)"
msgid "(no email)"
msgstr "(没有邮件)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {其他 {formattedCount} 人} other {其他 {formattedCount} 人}}"
@@ -33,7 +34,7 @@ msgstr "{0, plural, one {# 个标签已标记到这个账户} other {# 个标签
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {# 个标签已标记到此内容} other {# 个标签已标记到此内容}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# 条转发} other {# 条转发}}"
@@ -47,16 +48,16 @@ msgstr "{0, plural, one {关注者} other {关注者}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {正在关注} other {正在关注}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {喜欢 (# 个喜欢)} other {喜欢 (# 个喜欢)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {喜欢} other {喜欢}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural, one {# 位用户喜欢} other {# 位用户喜欢}}"
@@ -64,27 +65,41 @@ msgstr "{0, plural, one {# 位用户喜欢} other {# 位用户喜欢}}"
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {帖文} other {帖文}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr "{0, plural, one {引用} other {引用}}"
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {回复 (# 个回复)} other {回复 (# 个回复)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {转发} other {转发}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {取消喜欢 (# 个喜欢)} other {取消喜欢 (# 个喜欢)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr "{0} <0>在<1>标签1>0>中"
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "{0} <0>在<1>文本及标签1>0>中"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "在本周加入了 {0} 人"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0} 人已使用过此入门包!"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "{0}的头像"
@@ -120,7 +135,7 @@ msgstr "{diff, plural, one {月} other {月}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, one {秒} other {秒}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "{displayName} 的入门包"
@@ -147,7 +162,7 @@ msgstr "无法给 {handle} 发送私信"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, one {# 位用户喜欢} other {# 位用户喜欢}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} 个未读"
@@ -159,14 +174,6 @@ msgstr "{profileName} 在 {0} 前加入了 Bluesky"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "{profileName} 在 {0} 前使用入门包加入了 Bluesky"
-#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {显示所有回复} one {显示至少含有 # 个喜欢数的回复} other {显示至少含有 # 个喜欢数的回复}}"
-
-#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> 个成员"
-
#: src/screens/StarterPack/Wizard/index.tsx:466
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -177,11 +184,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}1>及{2, plural, one {其他 # } other {其他 # }}个资讯源包含在你的入门包中"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {关注者} other {关注者}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {正在关注} other {正在关注}}"
@@ -193,6 +200,10 @@ msgstr "<0>{0}0> 以及<1>1><2>{1} 2>包含在你的入门包中"
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0> 包含在你的入门包中"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr "<0>{0}0> 个成员"
+
#: src/view/com/modals/SelfLabel.tsx:135
msgid "<0>Not Applicable.0> This warning is only available for posts with media attached."
msgstr "<0>不适用。0> 这个警告仅适用于附加媒体内容的帖文。"
@@ -205,15 +216,27 @@ msgstr "<0>你0>以及<1> 1><2>{0} 2>包含在你的入门包中"
msgid "⚠Invalid Handle"
msgstr "⚠无效的用户识别符"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr "24小时"
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "两步验证"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr "30天"
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr "7天"
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr "帮助工具提示"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "访问导航链接及设置"
@@ -223,22 +246,22 @@ msgid "Access profile and other navigation links"
msgstr "访问个人资料及其他导航链接"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "无障碍"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "无障碍设置"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "无障碍设置"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "账户"
@@ -254,20 +277,20 @@ msgstr "已关注账户"
msgid "Account muted"
msgstr "已隐藏账户"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "已隐藏账户"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "账户已被列表隐藏"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
-msgstr "账户选项"
+msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "已从快速访问中移除账户"
@@ -284,10 +307,10 @@ msgstr "已取消关注账户"
msgid "Account unmuted"
msgstr "已取消隐藏账户"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "添加"
@@ -303,14 +326,14 @@ msgstr "添加 {displayName} 至入门包"
msgid "Add a content warning"
msgstr "新增内容警告"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "将用户添加至列表"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "添加账户"
@@ -329,11 +352,11 @@ msgstr "新增替代文本"
msgid "Add App Password"
msgstr "新增应用专用密码"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "为配置的设置添加隐藏词汇"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "添加隐藏词和标签"
@@ -353,7 +376,7 @@ msgstr "添加默认的资讯源(仅显示你关注的人)"
msgid "Add the following DNS record to your domain:"
msgstr "将以下 DNS 记录新增到你的域名:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "添加此资讯源到你的自定义资讯源列表"
@@ -362,29 +385,26 @@ msgstr "添加此资讯源到你的自定义资讯源列表"
msgid "Add to Lists"
msgstr "添加至列表"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "添加至自定义资讯源"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "已添加至列表"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "已添加至自定义资讯源"
-#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "调整会在你的资讯源中显示的回复至少需要含有多少喜欢数。"
-
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "成人内容"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "成人内容显示仅可通过网页端(<0>bsky.app0>)启用。"
@@ -392,20 +412,20 @@ msgstr "成人内容显示仅可通过网页端(<0>bsky.app0>)启用。"
msgid "Adult content is disabled."
msgstr "成人内容显示已被禁用。"
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "详细设置"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr "算法训练完成!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "已关注所有账户!"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "你保存的所有资讯源都集中在一处。"
@@ -419,6 +439,14 @@ msgstr "允许读取你的私信"
msgid "Allow new messages from"
msgstr "允许以下来源发起新对话"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr "允许回复:"
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr "允许访问私信"
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -436,7 +464,7 @@ msgstr "ALT"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "替代文本"
@@ -457,23 +485,37 @@ msgstr "一封电子邮件已发送至 {0}。请查阅邮件内容并复制验
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "一封电子邮件已发送至先前填写的邮箱 {0}。请查阅邮件内容并复制验证码至下方。"
-#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr "发生错误"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr "发生错误"
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "创建入门包时发生错误,重试?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr "播放视频时出现问题,请稍后再试。"
+
#: src/components/StarterPack/QrCodeDialog.tsx:71
#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "保存二维码时发生错误!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "关注所有人时发生错误"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr "上传视频时出现问题。"
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "不在这些选项中的问题"
@@ -488,21 +530,25 @@ msgstr "开启私信时出现问题"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "出现问题,请重试。"
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "出现未知错误"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr "未知的标记者"
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "和"
@@ -519,6 +565,10 @@ msgstr "GIF 动画"
msgid "Anti-Social Behavior"
msgstr "反社会行为"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr "任何人都可以参与互动"
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "应用语言"
@@ -535,26 +585,26 @@ msgstr "应用专用密码只能包含字母、数字、空格、破折号及下
msgid "App Password names must be at least 4 characters long."
msgstr "应用专用密码必须至少为 4 个字符。"
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "应用专用密码设置"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "应用专用密码"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "申诉"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "申诉 \"{0}\" 标记"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "申诉已提交"
@@ -566,10 +616,19 @@ msgstr "申诉已提交"
msgid "Appeal this decision"
msgstr "对此结果提出申诉"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "外观"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr "外观设置"
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr "外观设置"
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -583,7 +642,7 @@ msgstr "你确定要删除这条应用专用密码 \"{name}\" 吗?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "你确定要删除这条私信吗?此操作仅会在你的对话中删除私信,而不会在其他人的对话中删除。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr "你确定要删除此入门包吗?"
@@ -591,19 +650,19 @@ msgstr "你确定要删除此入门包吗?"
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "你确定要离开这个对话吗?此操作仅会在你的私信列表中删除对话,而不会在其他人的私信列表中删除。"
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "你确定要从你的资讯源中删除 {0} 吗?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "你确定要从自定义资讯源列表中删除此资讯源吗?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "你确定要丢弃这段草稿吗?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "你确定吗?"
@@ -620,13 +679,13 @@ msgstr "艺术"
msgid "Artistic or non-erotic nudity."
msgstr "艺术作品或非色情的裸体。"
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "至少 3 个字符"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -639,12 +698,12 @@ msgstr "至少 3 个字符"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "返回"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "基础信息"
@@ -652,7 +711,7 @@ msgstr "基础信息"
msgid "Birthday"
msgstr "生日"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "生日:"
@@ -675,28 +734,27 @@ msgstr "屏蔽账户"
msgid "Block Account?"
msgstr "屏蔽账户?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "屏蔽账户"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "屏蔽列表"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "屏蔽这些账户?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "已屏蔽"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "已屏蔽账户"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "已屏蔽账户"
@@ -709,7 +767,7 @@ msgstr "被屏蔽的账户无法在你的帖文中回复、提及你或以其他
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "被屏蔽的账户无法在你的帖文中回复、提及你或以其他方式与你互动。你将不会看到他们所发的内容,同样他们也无法查看你的内容。"
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "已屏蔽帖文。"
@@ -717,7 +775,7 @@ msgstr "已屏蔽帖文。"
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "屏蔽这个用户不能阻止他继续标记你的账户。"
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "屏蔽是公开的。被屏蔽的账户无法在你的帖文中回复、提及你或以其他方式与你互动。"
@@ -725,7 +783,7 @@ msgstr "屏蔽是公开的。被屏蔽的账户无法在你的帖文中回复、
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "屏蔽不会阻止标记被放置到你的账户上,但会阻止这个账户在你发布的帖文中回复或与你互动。"
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "博客"
@@ -746,7 +804,7 @@ msgstr "Bluesky 因朋友而更好!"
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky 将从你的社交网络中选择一组推荐的账户。"
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky 不会向未登录的用户显示你的个人资料和帖文。但其他应用可能不会遵照这个请求,这无法确保你的账户隐私。"
@@ -763,21 +821,23 @@ msgstr "模糊化图片并从资讯源中过滤"
msgid "Books"
msgstr "书籍"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr "在探索页面浏览更多账户"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr "在探索页面浏览更多资讯源"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr "浏览更多建议"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr "在探索页面浏览更多建议"
@@ -786,11 +846,11 @@ msgstr "在探索页面浏览更多建议"
msgid "Browse other feeds"
msgstr "浏览其他资讯源"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "商务"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "来自 —"
@@ -798,15 +858,15 @@ msgstr "来自 —"
msgid "By {0}"
msgstr "来自 {0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "来自 <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "创建账户即默认表明你同意我们的 {els}。"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "来自你"
@@ -818,13 +878,13 @@ msgstr "相机"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "只能包含字母、数字、空格、破折号及下划线。 长度必须至少 4 个字符,但不超过 32 个字符。"
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -840,9 +900,8 @@ msgstr "只能包含字母、数字、空格、破折号及下划线。 长度
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "取消"
@@ -870,7 +929,7 @@ msgstr "取消裁剪图片"
msgid "Cancel profile editing"
msgstr "取消编辑个人资料"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "取消引用帖文"
@@ -879,7 +938,6 @@ msgid "Cancel reactivation and log out"
msgstr "取消重新激活账户并登出"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "取消搜索"
@@ -891,17 +949,17 @@ msgstr "取消打开链接的网站"
msgid "Change"
msgstr "更改"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "更改"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "更改用户识别符"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "更改用户识别符"
@@ -909,12 +967,12 @@ msgstr "更改用户识别符"
msgid "Change my email"
msgstr "更改我的邮箱地址"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "更改密码"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "更改密码"
@@ -926,7 +984,7 @@ msgstr "更改帖文的发布语言至 {0}"
msgid "Change Your Email"
msgstr "更改你的邮箱地址"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -938,14 +996,14 @@ msgstr "已隐藏对话"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "私信设置"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "私信设置"
@@ -966,15 +1024,15 @@ msgstr "在这里输入刚才发送到你电子邮箱里的验证码。"
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "查看发送至你电子邮箱的确认邮件,并在下方输入收到的验证码:"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr "选择至少 3 个或更多:"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr "还需选择至少 {0} 个"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "选择资讯源"
@@ -982,7 +1040,7 @@ msgstr "选择资讯源"
msgid "Choose for me"
msgstr "为我做选择"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "选择用户"
@@ -990,7 +1048,7 @@ msgstr "选择用户"
msgid "Choose Service"
msgstr "选择服务"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "选择支持你的自定义资讯源的算法。"
@@ -998,28 +1056,15 @@ msgstr "选择支持你的自定义资讯源的算法。"
msgid "Choose this color as your avatar"
msgstr "选择这个颜色作为你的头像"
-#: src/components/dialogs/ThreadgateEditor.tsx:91
-#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "选择谁可以回复"
-
#: src/screens/Signup/StepInfo/index.tsx:171
msgid "Choose your password"
msgstr "选择你的密码"
-#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "清除所有旧存储数据"
-
-#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "清除所有旧存储数据(并重启)"
-
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "清除所有数据"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "清除所有数据(并重启)"
@@ -1028,11 +1073,7 @@ msgstr "清除所有数据(并重启)"
msgid "Clear search query"
msgstr "清除搜索历史记录"
-#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "清除所有旧版存储数据"
-
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "清除所有数据"
@@ -1048,10 +1089,18 @@ msgstr "点击这里来了解有关停用账户的详细资讯"
msgid "Click here for more information."
msgstr "点击这里以获取更多详情。"
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "点击这里打开 {tag} 的标签菜单"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr "点击关闭该帖文的引用功能。"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr "点击打开该帖文的引用功能。"
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "点击以重试发送失败的私信"
@@ -1065,12 +1114,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "哒哒🐴哒哒🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1091,7 +1140,7 @@ msgid "Close bottom drawer"
msgstr "关闭底部抽屉"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "关闭对话框"
@@ -1115,8 +1164,8 @@ msgstr "关闭对话框"
msgid "Close navigation footer"
msgstr "关闭导航页脚"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "关闭该窗口"
@@ -1128,7 +1177,7 @@ msgstr "关闭底部导航栏"
msgid "Closes password update alert"
msgstr "关闭密码更新警告"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "关闭帖文编辑页并丢弃草稿"
@@ -1136,11 +1185,11 @@ msgstr "关闭帖文编辑页并丢弃草稿"
msgid "Closes viewer for header image"
msgstr "关闭标题图片查看器"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "折叠用户列表"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "折叠给定通知的用户列表"
@@ -1154,27 +1203,31 @@ msgstr "喜剧"
msgid "Comics"
msgstr "漫画"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "社群准则"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "完成引导并开始使用你的账户"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "完成验证"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "撰写帖文的长度最多为 {MAX_GRAPHEME_LENGTH} 个字符"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "撰写回复"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr "压缩中..."
+
#: src/components/moderation/LabelPreference.tsx:81
msgid "Configure content filtering setting for category: {name}"
msgstr "为类别 {name} 配置内容过滤设置"
@@ -1206,11 +1259,11 @@ msgstr "确认内容语言设置"
msgid "Confirm delete account"
msgstr "确认删除账户"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "确认你的年龄:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "确认你的出生日期"
@@ -1228,7 +1281,8 @@ msgstr "验证码"
msgid "Connecting..."
msgstr "连接中..."
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "联系支持"
@@ -1236,24 +1290,24 @@ msgstr "联系支持"
msgid "Content Blocked"
msgstr "内容已屏蔽"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "内容过滤器"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "内容语言"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "内容不可用"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "内容警告"
@@ -1265,7 +1319,7 @@ msgstr "内容警告"
msgid "Context menu backdrop, click to close the menu."
msgstr "上下文菜单背景,点击关闭菜单。"
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "继续"
@@ -1278,7 +1332,7 @@ msgstr "以 {0} 继续(已登录)"
msgid "Continue thread..."
msgstr "加载更多帖文串..."
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1297,7 +1351,7 @@ msgstr "烹饪"
msgid "Copied"
msgstr "已复制"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "已复制构建版本号至剪贴板"
@@ -1305,8 +1359,8 @@ msgstr "已复制构建版本号至剪贴板"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "已复制至剪贴板"
@@ -1340,12 +1394,12 @@ msgstr "复制链接"
msgid "Copy Link"
msgstr "复制链接"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "复制列表链接"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "复制帖文链接"
@@ -1354,8 +1408,8 @@ msgstr "复制帖文链接"
msgid "Copy message text"
msgstr "复制私信文字"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "复制帖文文字"
@@ -1363,15 +1417,11 @@ msgstr "复制帖文文字"
msgid "Copy QR code"
msgstr "复制二维码"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "版权许可"
-#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr "无法压缩视频"
-
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
msgstr "无法离开对话"
@@ -1380,7 +1430,7 @@ msgstr "无法离开对话"
msgid "Could not load feed"
msgstr "无法加载资讯源"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "无法加载列表"
@@ -1397,7 +1447,7 @@ msgstr "创建"
msgid "Create a new account"
msgstr "创建新的账户"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "创建新的 Bluesky 账户"
@@ -1407,7 +1457,7 @@ msgstr "为入门包创建二维码"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "创建入门包"
@@ -1415,7 +1465,7 @@ msgstr "创建入门包"
msgid "Create a starter pack for me"
msgstr "为我创建入门包"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "创建账户"
@@ -1463,26 +1513,34 @@ msgstr "自定义"
msgid "Custom domain"
msgstr "自定义域名"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "由社群构建的自定义资讯源能为你带来新的体验,并帮助你找到你喜欢的内容。"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "自定义外部站点的媒体。"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr "自定义谁可以参与这条帖文的互动。"
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "暗色"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "深色模式"
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr "深色模式"
#: src/screens/Signup/StepInfo/index.tsx:191
@@ -1490,15 +1548,15 @@ msgid "Date of birth"
msgstr "生日"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "停用账户"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "停用我的账户"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "调试内容审核"
@@ -1507,16 +1565,16 @@ msgid "Debug panel"
msgstr "调试面板"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "删除"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "删除账户"
@@ -1532,8 +1590,8 @@ msgstr "删除应用专用密码"
msgid "Delete app password?"
msgstr "删除应用专用密码?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "删除聊天记录"
@@ -1541,7 +1599,7 @@ msgstr "删除聊天记录"
msgid "Delete for me"
msgstr "为我删除"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "删除列表"
@@ -1557,41 +1615,41 @@ msgstr "为我删除私信"
msgid "Delete my account"
msgstr "删除我的账户"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "删除我的账户…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "删除帖文"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "删除入门包"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "删除入门包?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "删除这个列表?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "删除这条帖文?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "已删除"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "已删除的帖文。"
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "删除聊天记录"
@@ -1606,11 +1664,25 @@ msgstr "描述"
msgid "Descriptive alt text"
msgstr "描述替代文本"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr "分离引用帖文"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr "分离引用帖文?"
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr "对话框:调整谁可以参与这条帖文的互动"
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "有什么想说的吗?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "暗淡"
@@ -1618,7 +1690,7 @@ msgstr "暗淡"
msgid "Direct messages are here!"
msgstr "隆重介绍私信功能!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "关闭 GIF 自动播放"
@@ -1626,29 +1698,33 @@ msgstr "关闭 GIF 自动播放"
msgid "Disable Email 2FA"
msgstr "关闭电子邮件两步验证"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "关闭触感反馈"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr "禁用字幕"
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "关闭"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "丢弃"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "丢弃草稿?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "阻止应用向未登录用户显示我的账户"
@@ -1661,19 +1737,27 @@ msgstr "\"Discover\" 会根据你的浏览喜好向你推荐帖文。"
msgid "Discover new custom feeds"
msgstr "探索新的自定义资讯源"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "探索新的资讯源"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "探索新的资讯源"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr "关闭"
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr "关闭错误"
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr "关闭入门指南"
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "显示更大的替代文本标签"
@@ -1689,11 +1773,15 @@ msgstr "显示名称"
msgid "DNS Panel"
msgstr "DNS 面板"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr "不对你已关注的用户使用此隐藏词"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "不包含裸露内容。"
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "不以连字符开头或结尾"
@@ -1707,7 +1795,6 @@ msgstr "域名已认证!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1726,8 +1813,8 @@ msgstr "完成"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "完成"
@@ -1736,7 +1823,7 @@ msgstr "完成"
msgid "Done{extraText}"
msgstr "完成{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "下载 Bluesky"
@@ -1749,6 +1836,10 @@ msgstr "下载 CAR 文件"
msgid "Drop to add images"
msgstr "拖放即可新增图片"
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr "期间:"
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "例如:alice"
@@ -1789,11 +1880,11 @@ msgstr "例如:散布广告内容的用户。"
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "每个邀请码仅可使用一次。你将不定期获得新的邀请码。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "编辑"
@@ -1802,12 +1893,12 @@ msgctxt "action"
msgid "Edit"
msgstr "编辑"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "编辑头像"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "编辑资讯源"
@@ -1816,7 +1907,12 @@ msgstr "编辑资讯源"
msgid "Edit image"
msgstr "编辑图片"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr "调整互动选项"
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "编辑列表详情"
@@ -1824,10 +1920,10 @@ msgstr "编辑列表详情"
msgid "Edit Moderation List"
msgstr "编辑内容审核列表"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "编辑自定义资讯源"
@@ -1835,10 +1931,15 @@ msgstr "编辑自定义资讯源"
msgid "Edit my profile"
msgstr "编辑个人资料"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "编辑用户"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr "调整帖文互动选项"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1849,7 +1950,7 @@ msgstr "编辑个人资料"
msgid "Edit Profile"
msgstr "编辑个人资料"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "编辑入门包"
@@ -1857,7 +1958,7 @@ msgstr "编辑入门包"
msgid "Edit User List"
msgstr "编辑用户列表"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "编辑谁可以回复"
@@ -1869,7 +1970,7 @@ msgstr "编辑你的显示名称"
msgid "Edit your profile description"
msgstr "编辑你的账户描述"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "编辑你的入门包"
@@ -1878,10 +1979,6 @@ msgstr "编辑你的入门包"
msgid "Education"
msgstr "教育"
-#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "选择 \"所有人\"或是\"没有人\""
-
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
msgid "Email"
@@ -1908,7 +2005,7 @@ msgstr "电子邮箱已更新"
msgid "Email verified"
msgstr "电子邮箱已验证"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "电子邮箱:"
@@ -1917,8 +2014,8 @@ msgid "Embed HTML code"
msgstr "嵌入 HTML 代码"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "嵌入帖文"
@@ -1930,7 +2027,7 @@ msgstr "将这条帖文嵌入到你的网站。只需复制以下代码片段,
msgid "Enable {0} only"
msgstr "仅启用 {0}"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "启用成人内容"
@@ -1939,18 +2036,18 @@ msgstr "启用成人内容"
msgid "Enable external media"
msgstr "启用外部媒体"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "启用媒体播放器"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
-msgstr ""
+msgstr "启用优先通知"
-#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "启用这个设置项将仅显示你已关注用户的回复。"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr "启用字幕"
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -1958,11 +2055,11 @@ msgstr "仅启用这个来源"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "已启用"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "已到末尾"
@@ -1978,8 +2075,8 @@ msgstr "为这个应用专用密码命名"
msgid "Enter a password"
msgstr "输入密码"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "输入一个词或标签"
@@ -2024,25 +2121,27 @@ msgstr "输入你的用户名和密码"
msgid "Error occurred while saving file"
msgstr "保存文件时发生错误"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Captcha 响应错误。"
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "错误:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "所有人"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "所有人都可以回复"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr "所有人都可以回复这条帖文。"
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2058,6 +2157,14 @@ msgstr "过于频繁的提及或回复"
msgid "Excessive or unwanted messages"
msgstr "过于频繁的骚扰信息"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr "排除你已关注的用户"
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr "排除你已关注的用户"
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "退出账户删除流程"
@@ -2075,7 +2182,6 @@ msgid "Exits image view"
msgstr "退出图片查看器"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "退出搜索查询输入"
@@ -2083,7 +2189,7 @@ msgstr "退出搜索查询输入"
msgid "Expand alt text"
msgstr "展开替代文本"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "展开用户列表"
@@ -2094,7 +2200,15 @@ msgstr "展开或折叠你要回复的完整帖文"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
-msgstr ""
+msgstr "实验性:当你启用此设置项,你将仅收到你已关注用户的回复及引用通知。我们会持续在此添加更多设置项。"
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr "已到期"
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr "已到期 {0}"
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
@@ -2104,12 +2218,12 @@ msgstr "明确或潜在引起不适的媒体内容。"
msgid "Explicit sexual images."
msgstr "明确的性暗示图片。"
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "导出账户数据"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "导出账户数据"
@@ -2119,17 +2233,17 @@ msgid "External Media"
msgstr "外部媒体"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "外部媒体可能允许网站收集有关你和你设备的有关信息。在你按下\"查看\"按钮之前,将不会发送或请求任何外部信息。"
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "外部媒体首选项"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "外部媒体设置"
@@ -2138,8 +2252,8 @@ msgstr "外部媒体设置"
msgid "Failed to create app password."
msgstr "创建应用专用密码失败。"
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "无法创建入门包"
@@ -2151,16 +2265,16 @@ msgstr "无法创建列表。请检查你的互联网连接并重试。"
msgid "Failed to delete message"
msgstr "无法删除私信"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "无法删除帖文,请重试"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "无法删除入门包"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "无法加载资讯源首选项"
@@ -2173,12 +2287,12 @@ msgstr "无法加载 GIF"
msgid "Failed to load past messages"
msgstr "无法加载旧的私信"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "无法加载建议的资讯源"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "无法加载建议关注"
@@ -2188,22 +2302,22 @@ msgstr "无法保存这张图片:{0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "无法保存通知首选项,请再试一次"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
msgstr "无法发送私信"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "无法提交申诉,请再试一次。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "无法隐藏讨论串,请再试一次"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "无法更新资讯源"
@@ -2212,12 +2326,12 @@ msgstr "无法更新资讯源"
msgid "Failed to update settings"
msgstr "无法更新设置"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "资讯源"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "由 {0} 创建的资讯源"
@@ -2226,27 +2340,27 @@ msgid "Feed toggle"
msgstr "切换资讯源"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "反馈"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "资讯源"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "创建资讯源仅需你掌握一点编程基础。<0/>以获取详情。"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "资讯源已更新!"
@@ -2262,7 +2376,7 @@ msgstr "文件保存成功!"
msgid "Filter from feeds"
msgstr "从资讯源中过滤"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "最终确定"
@@ -2280,7 +2394,7 @@ msgstr "在探索页面中寻找更多资讯源与账户关注。"
msgid "Find posts and users on Bluesky"
msgstr "在 Bluesky 寻找帖文和用户"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "调整你在\"正在关注\"资讯源上所看到的内容。"
@@ -2288,7 +2402,7 @@ msgstr "调整你在\"正在关注\"资讯源上所看到的内容。"
msgid "Fine-tune the discussion threads."
msgstr "调整讨论主题。"
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "完成"
@@ -2300,7 +2414,7 @@ msgstr "完成入门指南并开始使用应用程序"
msgid "Fitness"
msgstr "健康"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "灵活"
@@ -2314,12 +2428,11 @@ msgid "Flip vertically"
msgstr "垂直翻转"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "关注"
@@ -2333,7 +2446,7 @@ msgstr "关注"
msgid "Follow {0}"
msgstr "关注 {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "关注 {name}"
@@ -2346,8 +2459,8 @@ msgstr "关注 7 个账户"
msgid "Follow Account"
msgstr "关注账户"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "关注所有人"
@@ -2355,7 +2468,7 @@ msgstr "关注所有人"
msgid "Follow Back"
msgstr "回关"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "关注更多账户以了解你的兴趣,并逐步建立你的社交网络。"
@@ -2375,19 +2488,15 @@ msgstr "由 <0>{0}0> 以及 <1>{1}1> 所关注"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "由 <0>{0}0>、<1>{1}1> 以及 {2, plural, one {其他#人} other {其他#人}} 所关注"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "已关注的用户"
-#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "仅限已关注的用户"
-
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "关注了你"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr "回关"
@@ -2396,7 +2505,7 @@ msgstr "回关"
msgid "Followers"
msgstr "关注者"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "由你所认识的 @{0} 所关注"
@@ -2406,34 +2515,34 @@ msgid "Followers you know"
msgstr "由你所认识的关注者"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "正在关注"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "已关注 {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "已关注 {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "\"正在关注\"资讯源首选项"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "\"正在关注\"资讯源首选项"
@@ -2445,7 +2554,7 @@ msgstr "\"正在关注\"显示你已关注的账户所发布的最新帖文。"
msgid "Follows you"
msgstr "关注了你"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "关注了你"
@@ -2462,6 +2571,10 @@ msgstr "出于安全原因,我们需要向你的电子邮箱发送验证码。
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "出于安全原因,你将无法再次查看此内容。如果你丢失了该密码,则需要生成一个新的密码。"
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr "永久"
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2483,7 +2596,7 @@ msgstr "频繁发布不受欢迎的内容"
msgid "From @{sanitizedAuthor}"
msgstr "来自 @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "来自 <0/>"
@@ -2496,7 +2609,7 @@ msgstr "相册"
msgid "Generate a starter pack"
msgstr "创建一个入门包"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr "获取帮助"
@@ -2525,37 +2638,38 @@ msgstr "为你的个人资料添加头像"
msgid "Glaring violations of law or terms of service"
msgstr "明显违反法律或服务条款"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "返回"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "返回"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "返回上一步"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "返回上一步"
@@ -2592,7 +2706,7 @@ msgstr "前往用户个人资料"
msgid "Graphic Media"
msgstr "图形媒体"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr "已经完成一半了!"
@@ -2600,7 +2714,7 @@ msgstr "已经完成一半了!"
msgid "Handle"
msgstr "用户识别符"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "触感"
@@ -2608,7 +2722,7 @@ msgstr "触感"
msgid "Harassment, trolling, or intolerance"
msgstr "骚扰、恶作剧或其他无法容忍的行为"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "标签"
@@ -2616,12 +2730,12 @@ msgstr "标签"
msgid "Hashtag: #{tag}"
msgstr "标签:#{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "任何疑问?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "帮助"
@@ -2633,6 +2747,10 @@ msgstr "通过上传图片或创建头像来帮助人们了解你不是机器人
msgid "Here is your app password."
msgstr "这里是你的应用专用密码。"
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr "隐藏列表"
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2640,30 +2758,45 @@ msgstr "这里是你的应用专用密码。"
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "隐藏"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "隐藏"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:390
-#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "隐藏帖文"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr "为我隐藏这条帖文"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr "隐藏所有人的回复"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr "为我隐藏回复"
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "隐藏内容"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "隐藏这条帖文?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr "隐藏这条回复?"
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "隐藏用户列表"
@@ -2695,12 +2828,12 @@ msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "无法加载此内容审核提供服务。"
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "主页"
@@ -2733,7 +2866,7 @@ msgstr "我有验证码"
msgid "I have my own domain"
msgstr "我拥有自己的域名"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "我了解"
@@ -2746,15 +2879,15 @@ msgstr "若替代文本过长,则切换替代文本的展开状态"
msgid "If none are selected, suitable for all ages."
msgstr "若不勾选,则默认为全年龄向。"
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "如果你根据你所在国家的法律定义还不是成年人,则你的父母或法定监护人必须代表你阅读这些条款。"
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "该列表删除后将无法恢复。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "该列表删除后将无法恢复。"
@@ -2826,10 +2959,14 @@ msgstr "输入你的密码"
msgid "Input your preferred hosting provider"
msgstr "输入你首选的托管服务提供商"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "输入你的用户识别符"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr "互动受限"
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "介绍私信"
@@ -2839,7 +2976,7 @@ msgstr "介绍私信"
msgid "Invalid 2FA confirmation code."
msgstr "无效的两步验证码。"
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "帖文记录无效或不受支持"
@@ -2855,7 +2992,7 @@ msgstr "邀请朋友"
msgid "Invite code"
msgstr "邀请码"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "邀请码无效,请检查你输入的邀请码并重试。"
@@ -2883,14 +3020,14 @@ msgstr "邀请,但保持私密"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "现在就只有你了!通过上面的搜索将更多人添加到你的入门包中。"
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "工作"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "加入 Bluesky"
@@ -2919,11 +3056,11 @@ msgstr "标记"
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "标记是对特定内容及用户的提示。可以针对特定内容默认隐藏内容、显示警告或直接显示。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "你账户上的标记"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "你内容上的标记"
@@ -2931,16 +3068,16 @@ msgstr "你内容上的标记"
msgid "Language selection"
msgstr "选择语言"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "语言设置"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "语言设置"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "语言"
@@ -2949,21 +3086,26 @@ msgstr "语言"
msgid "Latest"
msgstr "最新"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "了解详情"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr "了解更多关于 Bluesky 的详细信息"
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "了解更多有关审核应用于此内容的详细信息。"
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "了解有关这个警告的更多详情"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "了解有关 Bluesky 公开内容的更多详情。"
@@ -3000,10 +3142,6 @@ msgstr "离开 Bluesky"
msgid "left to go."
msgstr "个人排在你前面。"
-#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "旧存储数据已清除,你需要立即重新启动应用。"
-
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
msgstr "自定义"
@@ -3013,12 +3151,13 @@ msgstr "自定义"
msgid "Let's get your password reset!"
msgstr "让我们来重置你的密码!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "让我们开始!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "亮色"
@@ -3026,8 +3165,8 @@ msgstr "亮色"
msgid "Like 10 posts"
msgstr "喜欢 10 条帖文"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr "喜欢 10 条帖文,以训练 \"Discover\" 算法推送"
@@ -3037,22 +3176,23 @@ msgid "Like this feed"
msgstr "喜欢这个资讯源"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "喜欢"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "喜欢"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "喜欢了你的自定义资讯源"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "喜欢了你的帖文"
@@ -3060,11 +3200,11 @@ msgstr "喜欢了你的帖文"
msgid "Likes"
msgstr "喜欢"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "这条帖文的喜欢数"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "列表"
@@ -3072,20 +3212,28 @@ msgstr "列表"
msgid "List Avatar"
msgstr "列表头像"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "列表已屏蔽"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "列表由 {0} 创建"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "列表已删除"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr "列表已隐藏"
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr "隐藏列表"
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "列表已隐藏"
@@ -3093,20 +3241,20 @@ msgstr "列表已隐藏"
msgid "List Name"
msgstr "列表名称"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "解除对列表的屏蔽"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "解除对列表的隐藏"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "列表"
@@ -3130,10 +3278,10 @@ msgstr "加载更多建议关注"
msgid "Load new notifications"
msgstr "加载新的通知"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "加载新的帖文"
@@ -3141,7 +3289,7 @@ msgstr "加载新的帖文"
msgid "Loading..."
msgstr "加载中..."
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "日志"
@@ -3157,7 +3305,7 @@ msgstr "登录或注册"
msgid "Log out"
msgstr "登出"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "未登录用户可见性"
@@ -3193,7 +3341,7 @@ msgstr "帮我选择"
msgid "Make sure this is where you intend to go!"
msgstr "请确认目标页面地址是否正确!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "管理你的隐藏词和标签"
@@ -3202,20 +3350,20 @@ msgstr "管理你的隐藏词和标签"
msgid "Mark as read"
msgstr "标记为已读"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "媒体"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "提到的用户"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "提到的用户"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "菜单"
@@ -3246,7 +3394,7 @@ msgstr "私信过长"
msgid "Message settings"
msgstr "私信设置"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3257,29 +3405,31 @@ msgstr "私信"
msgid "Misleading Account"
msgstr "误导性账户"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr "模式"
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "内容审核"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "内容审核详情"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "由 {0} 创建的内容审核列表"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "由 0> 创建的内容审核列表"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "你创建的内容审核列表"
@@ -3291,20 +3441,24 @@ msgstr "内容审核列表已创建"
msgid "Moderation list updated"
msgstr "内容审核列表已更新"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "内容审核列表"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "内容审核列表"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr "内容审核设置"
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "内容审核设置"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "内容审核状态"
@@ -3312,12 +3466,12 @@ msgstr "内容审核状态"
msgid "Moderation tools"
msgstr "内容审核工具"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "由内容审核服务提供方对这段内容设置的一般警告。"
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "更多"
@@ -3325,7 +3479,7 @@ msgstr "更多"
msgid "More feeds"
msgstr "更多资讯源"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "更多选项"
@@ -3341,11 +3495,13 @@ msgstr "电影"
msgid "Music"
msgstr "音乐"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "隐藏"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "隐藏 {truncatedTag}"
@@ -3354,62 +3510,74 @@ msgstr "隐藏 {truncatedTag}"
msgid "Mute Account"
msgstr "隐藏账户"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "隐藏账户"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "隐藏所有 {displayTag} 的帖文"
#: src/components/dms/ConvoMenu.tsx:172
#: src/components/dms/ConvoMenu.tsx:178
msgid "Mute conversation"
-msgstr "静音对话"
+msgstr "隐藏对话"
-#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "仅隐藏标签"
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr "隐藏:"
-#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "隐藏词汇和标签"
-
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "隐藏列表"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "隐藏这些账户?"
-#: src/components/dialogs/MutedWords.tsx:126
-msgid "Mute this word in post text and tags"
-msgstr "在帖文文本和标签中隐藏该词"
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr "隐藏这个词语24小时"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr "隐藏这个词语30天"
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr "隐藏这个词7天"
+
+#: src/components/dialogs/MutedWords.tsx:258
+msgid "Mute this word in post text and tags"
+msgstr "在帖文文本及标签中隐藏该词"
+
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "仅在标签中隐藏该词"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr "隐藏这个词语直到你取消为止"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "隐藏讨论串"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "隐藏词和标签"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "已隐藏"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "已隐藏账户"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "已隐藏账户"
@@ -3418,7 +3586,7 @@ msgstr "已隐藏账户"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "已隐藏的账户将不会在你的通知或时间线中显示,被隐藏账户将不会收到通知。"
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "被 \"{0}\" 隐藏"
@@ -3426,7 +3594,7 @@ msgstr "被 \"{0}\" 隐藏"
msgid "Muted words & tags"
msgstr "隐藏词汇和标签"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "被隐藏的账户将不会得知你已将他隐藏,已隐藏的账户将不会在你的通知或时间线中显示。"
@@ -3435,7 +3603,7 @@ msgstr "被隐藏的账户将不会得知你已将他隐藏,已隐藏的账户
msgid "My Birthday"
msgstr "我的生日"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "自定义资讯源"
@@ -3443,11 +3611,11 @@ msgstr "自定义资讯源"
msgid "My Profile"
msgstr "我的个人资料"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "我保存的资讯源"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "我保存的资讯源"
@@ -3472,7 +3640,7 @@ msgstr "名称或描述违反了社群准则"
msgid "Nature"
msgstr "自然"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr "转到 {0}"
@@ -3486,7 +3654,7 @@ msgstr "转到入门包"
msgid "Navigates to the next screen"
msgstr "转到下一页"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "转到个人资料"
@@ -3494,7 +3662,7 @@ msgstr "转到个人资料"
msgid "Need to report a copyright violation?"
msgstr "需要举报侵犯版权行为吗?"
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "永远不会失去对你的关注者或数据的访问。"
@@ -3502,7 +3670,7 @@ msgstr "永远不会失去对你的关注者或数据的访问。"
msgid "Nevermind, create a handle for me"
msgstr "没关系,为我创建一个用户识别符"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "新建"
@@ -3538,12 +3706,12 @@ msgctxt "action"
msgid "New post"
msgstr "新帖文"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "新帖文"
@@ -3577,10 +3745,10 @@ msgstr "新闻"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3591,17 +3759,17 @@ msgstr "下一步"
msgid "Next image"
msgstr "下一张图片"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "停用"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "没有描述"
@@ -3618,12 +3786,12 @@ msgstr "未找到精选 GIF,Tensor 可能存在问题。"
msgid "No feeds found. Try searching for something else."
msgstr "未找到资讯源,尝试搜索点别的。"
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "不再关注 {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "不超过 253 个字符"
@@ -3635,7 +3803,7 @@ msgstr "目前还没有任何私信"
msgid "No more conversations to show"
msgstr "没有更多对话可显示"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "还没有通知!"
@@ -3644,7 +3812,11 @@ msgstr "还没有通知!"
#: src/screens/Messages/Settings.tsx:93
#: src/screens/Messages/Settings.tsx:96
msgid "No one"
-msgstr "没有人"
+msgstr "仅自己"
+
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr "仅限作者可引用这条帖文。"
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
@@ -3659,11 +3831,11 @@ msgstr "没有结果"
msgid "No results"
msgstr "没有结果"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "未找到结果"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "未找到\"{query}\"的结果"
@@ -3684,13 +3856,9 @@ msgstr "未找到 \"{search}\" 的搜索结果。"
msgid "No thanks"
msgstr "不,谢谢"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
-msgstr "没有人"
-
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "没有人可以回复"
+msgstr "仅自己"
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
@@ -3705,7 +3873,7 @@ msgstr "未找到用户,尝试搜索点别的。"
msgid "Non-sexual Nudity"
msgstr "非性暗示裸露"
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "未找到"
@@ -3716,12 +3884,12 @@ msgid "Not right now"
msgstr "暂时不需要"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "分享注意事项"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "注意:Bluesky 是一个开放的公共网络。这个设置项仅限制你发布的内容在 Bluesky 应用和网站上的可见性,其他应用可能不遵从这个设置项,仍可能会向未登录的用户显示你的动态。"
@@ -3731,16 +3899,16 @@ msgstr "这里什么也没有"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "通知过滤器"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "通知设置"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "通知设置"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -3750,14 +3918,14 @@ msgstr "通知提示音"
msgid "Notification Sounds"
msgstr "通知提示音"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "通知"
@@ -3782,12 +3950,12 @@ msgid "Off"
msgstr "显示"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "糟糕!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "糟糕!发生了一些错误。"
@@ -3811,7 +3979,7 @@ msgstr "于"
msgid "on {str}"
msgstr "于 {str}"
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "重新开始引导流程"
@@ -3819,7 +3987,7 @@ msgstr "重新开始引导流程"
msgid "Onboarding tour step {0}: {1}"
msgstr "入门指南步骤:{0}/{1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "至少有一张图片缺失了替代文本。"
@@ -3827,11 +3995,11 @@ msgstr "至少有一张图片缺失了替代文本。"
msgid "Only .jpg and .png files are supported"
msgstr "目前只支持上传 .jpg 或 .png 格式的图片文件"
-#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "只有 {0} 可以回复"
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "仅限 {0} 可以回复。"
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "仅限字母、数字和连字符"
@@ -3839,7 +4007,7 @@ msgstr "仅限字母、数字和连字符"
msgid "Oops, something went wrong!"
msgstr "糟糕,发生了一些错误!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -3848,11 +4016,11 @@ msgstr "糟糕,发生了一些错误!"
msgid "Oops!"
msgstr "Oops!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "开启"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "开启 {name} 个人资料快捷菜单"
@@ -3865,8 +4033,8 @@ msgstr "开启头像创建工具"
msgid "Open conversation options"
msgstr "开启对话选项"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "开启表情符号选择器"
@@ -3874,7 +4042,7 @@ msgstr "开启表情符号选择器"
msgid "Open feed options menu"
msgstr "开启资讯源选项菜单"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "在内置浏览器中打开链接"
@@ -3890,20 +4058,20 @@ msgstr "开启隐藏词汇和标签设置"
msgid "Open navigation"
msgstr "打开导航"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "开启帖文选项菜单"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "开启入门包菜单"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "开启 Storybook 界面"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "开启系统日志"
@@ -3911,11 +4079,11 @@ msgstr "开启系统日志"
msgid "Opens {numItems} options"
msgstr "开启 {numItems} 个选项"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "打开对话框以选择谁可以回复此讨论串"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "开启无障碍设置"
@@ -3923,19 +4091,23 @@ msgstr "开启无障碍设置"
msgid "Opens additional details for a debug entry"
msgstr "开启调试记录的额外详细信息"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr "开启外观设置"
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "开启设备相机"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "开启私信设置"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "开启编辑器"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "开启可配置的语言设置"
@@ -3943,7 +4115,7 @@ msgstr "开启可配置的语言设置"
msgid "Opens device photo gallery"
msgstr "开启设备相册"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "开启外部嵌入设置"
@@ -3965,27 +4137,27 @@ msgstr "开启 GIF 选择对话框"
msgid "Opens list of invite codes"
msgstr "开启邀请码列表"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "开启账户停用确认界面"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "需要邮件验证以继续进行账户删除操作"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "开启密码修改界面"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "开启创建新的用户识别符界面"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "开启你的 Bluesky 用户资料(存储库)下载页面"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "开启电子邮箱确认界面"
@@ -3993,7 +4165,7 @@ msgstr "开启电子邮箱确认界面"
msgid "Opens modal for using custom domain"
msgstr "开启使用自定义域名的模式"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "开启内容审核设置"
@@ -4001,15 +4173,15 @@ msgstr "开启内容审核设置"
msgid "Opens password reset form"
msgstr "开启密码重置申请"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "开启包含所有已保存资讯源的界面"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "开启应用专用密码设置界面"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "开启\"正在关注\"资讯源首选项"
@@ -4017,21 +4189,21 @@ msgstr "开启\"正在关注\"资讯源首选项"
msgid "Opens the linked website"
msgstr "开启链接的网页"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "开启 Storybook 界面"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "开启系统日志界面"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "开启讨论串首选项"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "开启此个人资料"
@@ -4044,11 +4216,15 @@ msgid "Option {0} of {numItems}"
msgstr "第 {0} 个选项,共 {numItems} 个"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "可选在下方提供额外信息:"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr "选项:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "或者选择组合这些选项:"
@@ -4068,6 +4244,10 @@ msgstr "其他"
msgid "Other account"
msgstr "其他账户"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr "其他账户"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "其他..."
@@ -4076,7 +4256,7 @@ msgstr "其他..."
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "内容审核服务提供方已收到举报,并决定停用你的 Bluesky 私信功能。"
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "无法找到这个页面"
@@ -4105,19 +4285,24 @@ msgid "Password updated!"
msgstr "密码已更新!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "暂停"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr "暂停视频"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "用户"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "@{0} 关注的用户"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "关注 @{0} 的用户"
@@ -4147,7 +4332,7 @@ msgid "Pictures meant for adults."
msgstr "适合成年人的图像。"
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "固定到主页"
@@ -4159,11 +4344,12 @@ msgstr "固定到主页"
msgid "Pinned Feeds"
msgstr "固定资讯源列表"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "固定到你的资讯源"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "播放"
@@ -4175,6 +4361,11 @@ msgstr "播放 {0}"
msgid "Play or pause the GIF"
msgstr "播放或暂停 GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr "播放视频"
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4184,16 +4375,16 @@ msgstr "播放视频"
msgid "Plays the GIF"
msgstr "播放 GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "请设置你的用户识别符。"
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "请设置你的密码。"
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "请完成 Captcha 验证。"
@@ -4209,11 +4400,11 @@ msgstr "请输入应用专用密码的名称,不允许使用空格。"
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "请输入这个应用专用密码的唯一名称,或使用我们提供的随机生成名称。"
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "请输入一个有效的词、标签或短语"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "请输入你的电子邮箱。"
@@ -4226,7 +4417,7 @@ msgstr "请输入你的邀请码。"
msgid "Please enter your password as well:"
msgstr "请输入你的密码:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "请解释为什么你认为这个标记是由 {0} 错误应用的"
@@ -4243,7 +4434,7 @@ msgstr "请以 @{0} 身份登录"
msgid "Please Verify Your Email"
msgstr "请验证你的电子邮箱"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "请等待你的链接卡片加载完毕"
@@ -4256,45 +4447,50 @@ msgstr "政治"
msgid "Porn"
msgstr "色情内容"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "发布"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "帖文"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "{0} 的帖文"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "@{0} 的帖文"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "已删除帖文"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "已隐藏帖文"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "帖文已被隐藏词汇所隐藏"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "帖文已由你隐藏"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr "帖文互动选项"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "帖文语言"
@@ -4303,23 +4499,23 @@ msgstr "帖文语言"
msgid "Post Languages"
msgstr "帖文语言"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "无法找到帖文"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "帖文"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "帖文"
-#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "帖文可以根据其文本、标签或两者来隐藏。"
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr "可以根据文本、标签或结合两者来屏蔽特定帖文。我们建议避免添加常用词,因为这可能会导致你的主页不显示任何帖文。"
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4331,7 +4527,7 @@ msgstr "潜在误导性链接"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "首选项已保存"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -4341,7 +4537,7 @@ msgstr "点击以重试连接"
msgid "Press to change hosting provider"
msgstr "点击以变更托管提供商"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4356,7 +4552,7 @@ msgstr "点按以查看同样关注此账号的共同关注者"
msgid "Previous image"
msgstr "上一张图片"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "首选语言"
@@ -4366,18 +4562,18 @@ msgstr "优先显示关注者"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "优先通知"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "隐私"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "隐私政策"
@@ -4389,16 +4585,16 @@ msgstr "与其他用户开始私信。"
msgid "Processing..."
msgstr "处理中..."
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "个人资料"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "个人资料"
@@ -4406,11 +4602,11 @@ msgstr "个人资料"
msgid "Profile updated"
msgstr "个人资料已更新"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "通过验证电子邮箱来保护你的账户。"
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "公开内容"
@@ -4418,15 +4614,15 @@ msgstr "公开内容"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "公开且可共享的批量隐藏或屏蔽列表。"
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "公开且可共享的列表,可作为资讯源使用。"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "发布帖文"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "发布回复"
@@ -4446,13 +4642,46 @@ msgstr "二维码已保存至你的照片图库!"
msgid "Quick tip"
msgstr "小建议"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "引用帖文"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr "引用帖文已重新关联"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr "引用帖文已成功分离"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr "引用已关闭"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr "引用已打开"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr "引用选项"
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr "引用"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr "引用这条帖文"
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "随机显示 (手气不错)"
@@ -4461,15 +4690,32 @@ msgstr "随机显示 (手气不错)"
msgid "Ratios"
msgstr "比率"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr "重新关联引用帖文"
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "重新启用你的账户"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr "浏览 Bluesky 博客"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr "浏览 Bluesky 隐私设置"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr "浏览 Bluesky 使用条款"
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "结果:"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "最近的搜索"
@@ -4479,21 +4725,22 @@ msgstr "重新连接"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "刷新通知"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "重新加载对话"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "移除"
@@ -4501,11 +4748,11 @@ msgstr "移除"
msgid "Remove {displayName} from starter pack"
msgstr "从你的入门包中删除 {displayName}"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "删除账户"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "删除头像"
@@ -4518,8 +4765,8 @@ msgid "Remove embed"
msgstr "删除嵌入"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "删除资讯源"
@@ -4527,19 +4774,27 @@ msgstr "删除资讯源"
msgid "Remove feed?"
msgstr "删除资讯源?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "从自定义资讯源中删除"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "从自定义资讯源中删除?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr "从快速访问中删除?"
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr "从已保存的资讯源中删除"
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "删除图片"
@@ -4548,24 +4803,24 @@ msgstr "删除图片"
msgid "Remove image preview"
msgstr "删除图片预览"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "从你的隐藏词汇列表中删除"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "删除个人资料"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "从搜索历史中删除个人资料"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "删除引用"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "删除转发"
@@ -4573,22 +4828,35 @@ msgstr "删除转发"
msgid "Remove this feed from your saved feeds"
msgstr "从保存的资讯源列表中删除这个资讯源"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr "已被作者删除"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr "已被你删除"
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "从列表中删除"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "已从自定义资讯源中删除"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr "已从保存的资讯源中删除"
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "从你的自定义资讯源中删除"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "删除引用的帖文"
@@ -4596,8 +4864,8 @@ msgstr "删除引用的帖文"
msgid "Removes the image preview"
msgstr "删除图片预览"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "替换为 \"Discover\""
@@ -4605,40 +4873,67 @@ msgstr "替换为 \"Discover\""
msgid "Replies"
msgstr "回复"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "回复已被禁用"
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "该讨论串的回复已被禁用"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr "这条帖文的回复已被关闭。"
-#: src/view/com/composer/Composer.tsx:507
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "回复"
-#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "回复过滤器"
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr "回复已被该讨论串的作者隐藏"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr "回复被你隐藏"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr "回复选项"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr "由讨论串的作者设置的回复选项"
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "回复 <0><1/>0>"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "回复被屏蔽的帖文"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr "回复这条帖文"
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr "对你回复"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr "回复可见性已更新"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr "回复已成功隐藏"
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -4665,7 +4960,7 @@ msgstr "举报页面"
msgid "Report feed"
msgstr "举报资讯源"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "举报列表"
@@ -4673,13 +4968,13 @@ msgstr "举报列表"
msgid "Report message"
msgstr "举报私信"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "举报帖文"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "举报入门包"
@@ -4713,47 +5008,48 @@ msgstr "举报此入门包"
msgid "Report this user"
msgstr "举报这个用户"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "转发"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "转发"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "转发或引用帖文"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "转发"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "由 {0} 转发"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "由 <0><1/>0> 转发"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr "由你转发"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "转发你的帖文"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "转发这条帖文"
@@ -4767,7 +5063,7 @@ msgstr "请求变更"
msgid "Request Code"
msgstr "确认码"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "发布时检查媒体是否存在替代文本"
@@ -4792,8 +5088,8 @@ msgstr "确认码"
msgid "Reset Code"
msgstr "确认码"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "重置引导流程状态"
@@ -4801,16 +5097,16 @@ msgstr "重置引导流程状态"
msgid "Reset password"
msgstr "重置密码"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "重置首选项状态"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "重置引导流程状态"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "重置首选项状态"
@@ -4824,23 +5120,26 @@ msgid "Retries the last action, which errored out"
msgstr "重试上次出错的操作"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "重试"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "回到上一页"
@@ -4854,7 +5153,8 @@ msgid "Returns to previous page"
msgstr "回到上一页"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -4904,7 +5204,7 @@ msgstr "保存二维码"
msgid "Save to my feeds"
msgstr "保存到自定义资讯源"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "已保存资讯源"
@@ -4913,7 +5213,7 @@ msgid "Saved to your camera roll"
msgstr "保存到你的照片图库"
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "已保存到你的自定义资讯源"
@@ -4931,8 +5231,8 @@ msgstr "保存图片裁剪设置"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "说嗨!"
@@ -4941,13 +5241,12 @@ msgstr "说嗨!"
msgid "Science"
msgstr "科学"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "滚动到顶部"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -4956,14 +5255,12 @@ msgstr "滚动到顶部"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "搜索"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "搜索 \"{query}\""
@@ -4971,11 +5268,11 @@ msgstr "搜索 \"{query}\""
msgid "Search for \"{searchText}\""
msgstr "搜索 \"{searchText}\""
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "搜索 @{authorHandle} 带有 {displayTag} 的所有帖文"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "搜索所有带有 {displayTag} 的帖文"
@@ -4983,8 +5280,6 @@ msgstr "搜索所有带有 {displayTag} 的帖文"
msgid "Search for feeds that you want to suggest to others."
msgstr "搜索来添加你想推荐给别人的资讯源。"
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "搜索用户"
@@ -5008,23 +5303,27 @@ msgstr "搜索 Tenor"
msgid "Security Step Required"
msgstr "所需的安全步骤"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "查看 {truncatedTag} 的帖文"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "按用户查看 {truncatedTag} 的帖文"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "查看 <0>{displayTag}0> 的帖文"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "查看该用户 <0>{displayTag}0> 的帖文"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr "查看 Bluesky 的招聘职缺"
+
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "查看指南"
@@ -5060,7 +5359,11 @@ msgstr "选择 GIF"
msgid "Select GIF \"{0}\""
msgstr "选择 GIF \"{0}\""
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr "选择将此词语隐藏多长时间。"
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "选择语言"
@@ -5076,7 +5379,7 @@ msgstr "选择 {numItems} 项中的第 {i} 项"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "选择 {emojiName} 表情符号作为你的头像"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "请选择你要向哪个内容审核服务提供方提交举报"
@@ -5088,7 +5391,11 @@ msgstr "选择托管你数据的服务器。"
msgid "Select video"
msgstr "选择视频"
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr "选择此隐藏词应用于哪些内容。"
+
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "选择你希望订阅资讯源中所包含的语言。如果未选择任何语言,将默认显示所有语言。"
@@ -5100,11 +5407,11 @@ msgstr "选择你的应用语言,以显示应用中的默认文本。"
msgid "Select your date of birth"
msgstr "输入你的出生日期"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "下面选择你感兴趣的选项"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "选择你在订阅资讯源中希望进行翻译的目标首选语言。"
@@ -5126,7 +5433,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "发送电子邮件"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "提交反馈"
@@ -5141,8 +5448,8 @@ msgstr "发送私信给..."
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "提交举报"
@@ -5155,8 +5462,8 @@ msgstr "给 {0} 提交举报"
msgid "Send verification email"
msgstr "发送验证电子邮件"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "通过私信发送"
@@ -5168,7 +5475,7 @@ msgstr "发送包含账户删除验证码的电子邮件"
msgid "Server address"
msgstr "服务器地址"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "设置生日"
@@ -5176,15 +5483,15 @@ msgstr "设置生日"
msgid "Set new password"
msgstr "设置新密码"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "停用这个设置项将从资讯源中隐藏所有引用帖文,但转发仍将可见。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "停用这个设置项将从资讯源中隐藏所有回复。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "停用这个设置项将从资讯源中隐藏所有转发。"
@@ -5192,7 +5499,7 @@ msgstr "停用这个设置项将从资讯源中隐藏所有转发。"
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "启用这个设置项将在分层视图中显示回复。这是一个实验性功能。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "启用这个设置项将在\"正在关注\"资讯源中显示已保存资讯源的样例。这是一个实验性功能。"
@@ -5204,26 +5511,6 @@ msgstr "设置你的账户"
msgid "Sets Bluesky username"
msgstr "设置 Bluesky 用户名"
-#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "设置主题为深色模式"
-
-#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "设置主题为亮色模式"
-
-#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "设置主题跟随系统设置"
-
-#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "设置深色模式至深黑"
-
-#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "设置深色模式至暗淡"
-
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
msgstr "设置用于重置密码的电子邮箱"
@@ -5240,11 +5527,11 @@ msgstr "将图片纵横比设置为高"
msgid "Sets image aspect ratio to wide"
msgstr "将图片纵横比设置为宽"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "设置"
@@ -5257,14 +5544,14 @@ msgid "Sexually Suggestive"
msgstr "性暗示"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "分享"
@@ -5282,8 +5569,8 @@ msgid "Share a fun fact!"
msgstr "分享一个有趣的事实!"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "仍然分享"
@@ -5294,7 +5581,7 @@ msgstr "分享资讯源"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "分享链接"
@@ -5312,7 +5599,7 @@ msgstr "分享链接对话框"
msgid "Share QR code"
msgstr "分享二维码"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "分享这个入门包"
@@ -5324,7 +5611,7 @@ msgstr "分享这个入门包以帮助其他人加入你在 Bluesky 上的社交
msgid "Share your favorite feed!"
msgstr "分享你最喜欢的资讯源!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr "共享首选项测试器"
@@ -5335,7 +5622,7 @@ msgstr "分享链接的网站"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "显示"
@@ -5343,8 +5630,9 @@ msgstr "显示"
msgid "Show alt text"
msgstr "显示替代文本"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "仍然显示"
@@ -5365,19 +5653,23 @@ msgstr "显示类似于 {0} 的关注者"
msgid "Show hidden replies"
msgstr "显示已隐藏的回复"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "更少显示类似这样的"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr "仍然显示列表"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "显示更多"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "更多显示类似这样的"
@@ -5385,15 +5677,15 @@ msgstr "更多显示类似这样的"
msgid "Show muted replies"
msgstr "显示已隐藏的回复"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "显示来自已储存资讯源的帖文"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "显示引用帖文"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "显示回复"
@@ -5401,7 +5693,12 @@ msgstr "显示回复"
msgid "Show replies by people you follow before all other replies."
msgstr "将你关注的用户的回复置于其他回复之前。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr "公开显示回复"
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "显示转发"
@@ -5459,11 +5756,15 @@ msgstr "登录或创建你的账户以加入对话!"
msgid "Sign into Bluesky or create a new account"
msgstr "登录 Bluesky 或创建新账户"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "登出"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr "登出所有账户"
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5485,7 +5786,7 @@ msgstr "注册或登录以加入对话"
msgid "Sign-in Required"
msgstr "需要登录"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "登录身份"
@@ -5494,21 +5795,25 @@ msgstr "登录身份"
msgid "Signed in as @{0}"
msgstr "以 @{0} 身份登录"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "使用你的入门包注册"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "注册但不使用入门包"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr "类似账户"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "跳过"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "跳过这段流程"
@@ -5517,12 +5822,11 @@ msgstr "跳过这段流程"
msgid "Software Dev"
msgstr "程序开发"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr "其他你可能喜欢的资讯源"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "一些人可以回复"
@@ -5541,13 +5845,13 @@ msgstr "出了点问题,请重试"
msgid "Something went wrong, please try again."
msgstr "出了点问题,请重试。"
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
-msgstr ""
+msgstr "出了点问题!"
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "很抱歉,你的登录会话已过期,请重新登录。"
@@ -5559,9 +5863,9 @@ msgstr "回复排序"
msgid "Sort replies to the same post by:"
msgstr "对同一帖文的回复进行排序:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "来源:<0>{0}0>"
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr "来源: <0>{sourceName}0>"
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -5598,17 +5902,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr "开始入门指南吧,若需获取更多选项请点击下一步,或点按跳过。"
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "入门包"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "由 {0} 创建的入门包"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "入门包无效"
@@ -5620,31 +5924,31 @@ msgstr "入门包"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "入门包能让你更轻松地与朋友分享你最中意的资讯源和关注用户。"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "状态页"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "步骤 {1} 共 {0} 步"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "已清除存储,请立即重启应用。"
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "Storybook"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "提交"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "订阅"
@@ -5660,16 +5964,15 @@ msgstr "订阅标记者"
msgid "Subscribe to this labeler"
msgstr "订阅这个标记者"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "订阅这个列表"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "建议的账号"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "为你推荐"
@@ -5677,7 +5980,7 @@ msgstr "为你推荐"
msgid "Suggestive"
msgstr "建议"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -5692,30 +5995,31 @@ msgstr "切换账户"
msgid "Switch between feeds to control your experience."
msgstr "在资讯源之间切换以刷新你的浏览体验。"
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "切换到 {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
-msgstr "切换你登录的账户"
+msgstr ""
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "系统"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "系统日志"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "标签"
-
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "标签菜单:{displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr "仅限标签"
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "高"
@@ -5724,11 +6028,19 @@ msgstr "高"
msgid "Tap to dismiss"
msgstr "点按关闭"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr "点击进入全屏模式"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr "点击切换声音播放"
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "点击查看完整内容"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr "任务完成:10 个喜欢!"
@@ -5753,11 +6065,11 @@ msgstr "告诉我们更多"
msgid "Terms"
msgstr "条款"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "服务条款"
@@ -5768,17 +6080,17 @@ msgstr "服务条款"
msgid "Terms used violate community standards"
msgstr "用词违反了社群准则"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "文本"
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr "文本及标签"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "文本输入框"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "谢谢,你的举报已提交。"
@@ -5786,24 +6098,37 @@ msgstr "谢谢,你的举报已提交。"
msgid "That contains the following:"
msgstr "其中包含以下内容:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "该用户识别符已被占用。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "找不到此入门包。"
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr "大功告成!"
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
msgstr "解除屏蔽后,该账户将能够与你互动。"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr "这条讨论串的作者已隐藏这条回复。"
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr "Bluesky 网页客户端"
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "社群准则已迁移至 <0/>"
@@ -5812,12 +6137,16 @@ msgstr "社群准则已迁移至 <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "版权许可已迁移至 <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr "\"Discover\" 资讯源"
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr "现在 \"Discover\" 资讯源已了解你的喜好"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "使用 App 的体验更好。立即下载 Bluesky,我们将从你上次中断的地方继续。"
@@ -5825,11 +6154,11 @@ msgstr "使用 App 的体验更好。立即下载 Bluesky,我们将从你上
msgid "The feed has been replaced with Discover."
msgstr "资讯源已替换为 \"Discover\"。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "以下标记已应用到你的账户。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "以下标记已应用到你的内容。"
@@ -5837,8 +6166,8 @@ msgstr "以下标记已应用到你的内容。"
msgid "The following steps will help customize your Bluesky experience."
msgstr "以下步骤将帮助定制你的 Bluesky 体验。"
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "这条帖文可能已被删除。"
@@ -5846,7 +6175,11 @@ msgstr "这条帖文可能已被删除。"
msgid "The Privacy Policy has been moved to <0/>"
msgstr "隐私政策已迁移至 <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr "选择的视频大小超过 100MB。"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "你尝试查看的入门包无效,你可以删除此入门包。"
@@ -5883,24 +6216,24 @@ msgid "There was an issue connecting to Tenor."
msgstr "连接 Tenor 时出现问题。"
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "连接服务器时出现问题"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "连接服务器时出现问题"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "刷新通知时出现问题,点击重试。"
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "刷新帖文时出现问题,点击重试。"
@@ -5908,13 +6241,13 @@ msgstr "刷新帖文时出现问题,点击重试。"
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "刷新列表时出现问题,点击重试。"
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "刷新列表时出现问题,点击重试。"
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "提交举报时出现问题,请检查你的网络连接。"
@@ -5936,16 +6269,19 @@ msgstr "获取应用专用密码时出现问题"
msgid "There was an issue! {0}"
msgstr "出现问题了!{0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "出现问题了,请检查你的互联网连接并重试。"
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "应用发生意外错误,请联系我们进行错误反馈!"
@@ -5954,11 +6290,11 @@ msgstr "应用发生意外错误,请联系我们进行错误反馈!"
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Bluesky 迎来了大量新用户!我们将尽快激活你的账户。"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "{screenDescription} 已被标记:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "这个账户要求登录后才能查看其个人资料。"
@@ -5966,9 +6302,9 @@ msgstr "这个账户要求登录后才能查看其个人资料。"
msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
msgstr "这个账户已被你的一个或多个内容审核列表所屏蔽。要解除屏蔽,请从内容审核列表中删除这个账户。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "这条申诉将发送至 <0>{0}0>。"
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr "这条申诉将提交给 <0>{sourceName}0>。"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -5990,8 +6326,8 @@ msgstr "内容审核服务提供方已对此内容设置一般警告。"
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "此内容由 {0} 托管。是否要启用外部媒体?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "由于其中一个用户屏蔽了另一个用户,此内容不可用。"
@@ -6017,7 +6353,7 @@ msgstr "这个资讯源是空的!你或许需要先关注更多的用户,或
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "这里是空的。"
@@ -6033,15 +6369,15 @@ msgstr "这条信息不会分享给其他用户。"
msgid "This is important in case you ever need to change your email or reset your password."
msgstr "这很重要,以防你将来需要更改电子邮箱或重置密码。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "这个标签是由 <0>{0}0> 标记的。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "这个标签是由该作者标记的。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "这个标签是由你标记的。"
@@ -6053,7 +6389,11 @@ msgstr "这个标记者尚未声明他发布的标记,并且可能处于非活
msgid "This link is taking you to the following website:"
msgstr "这条链接将带你到以下网站:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr "这个列表由 <0>{0}0> 创建,其名称或描述可能违反了 Bluesky 社区准则。"
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "这个列表为空!"
@@ -6065,23 +6405,31 @@ msgstr "此内容审核提供服务不可用,请查看下方获取更多详情
msgid "This name is already in use"
msgstr "该名称已被使用"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "这条帖文已被删除。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "这条帖文只对已登录用户可见,未登录的用户将无法看到。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "这条帖文将从资讯源中隐藏。"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr "这条帖文将从资讯源和讨论串中隐藏。注意此操作无法撤消。"
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr "这条帖文的作者已关闭引用帖文。"
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "此个人资料只对已登录用户可见,未登录的用户将无法看到。"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr "这条回复将被归档到你帖文底部的隐藏显示部分,并且将隐藏后续回复的通知 - 无论是对你自己还是对其他人。"
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "此服务没有提供服务条款或隐私政策。"
@@ -6098,8 +6446,8 @@ msgstr "这个用户目前没有任何关注者。"
msgid "This user has blocked you"
msgstr "这个用户屏蔽了你"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "这个用户已将你屏蔽,你将无法看到他所发布的内容。"
@@ -6107,11 +6455,11 @@ msgstr "这个用户已将你屏蔽,你将无法看到他所发布的内容。
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "这个用户设置其发布的内容仅对已登录用户可见。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "这个用户包含在你已屏蔽的 <0>{0}0> 列表中。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "这个用户包含在你已隐藏的 <0>{0}0> 列表中。"
@@ -6123,28 +6471,32 @@ msgstr "此用户最近加入了 Bluesky,点按此处可获取其加入的具
msgid "This user isn't following anyone."
msgstr "这个账户目前没有关注任何人。"
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "这将从你的隐藏词汇中删除 {0}。你随时可以重新添加。"
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr "这将从你的隐藏词汇中删除 \"{0}\"。你随时可以重新添加。"
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr "这将从你的快速访问列表中删除 @{0}。"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr "这将删除所有对你这条帖文的引用,并将其替换为占位符。"
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "讨论串首选项"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "讨论串首选项"
-#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "讨论串首选项已更新"
-
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "讨论串模式"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "讨论串首选项"
@@ -6160,15 +6512,11 @@ msgstr "要举报对话,请在会话中选择一条私信并举报。这有助
msgid "To whom would you like to send this report?"
msgstr "你想将举报提交给谁?"
-#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "在隐藏词汇选项之间切换。"
-
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "切换下拉式菜单"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "切换以启用或禁用成人内容"
@@ -6183,10 +6531,10 @@ msgstr "转换"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "翻译"
@@ -6199,7 +6547,7 @@ msgstr "重试"
msgid "TV"
msgstr "电视节目"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "两步验证"
@@ -6211,11 +6559,11 @@ msgstr "在这里输入你的消息"
msgid "Type:"
msgstr "类型:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "取消屏蔽列表"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "取消隐藏列表"
@@ -6223,12 +6571,12 @@ msgstr "取消隐藏列表"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "无法连接到服务,请检查互联网连接。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "无法删除"
@@ -6239,7 +6587,7 @@ msgstr "无法删除"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "取消屏蔽"
@@ -6263,9 +6611,9 @@ msgstr "取消屏蔽账户"
msgid "Unblock Account?"
msgstr "取消屏蔽账户?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "取消转发"
@@ -6274,10 +6622,6 @@ msgctxt "action"
msgid "Unfollow"
msgstr "取消关注"
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "取消关注"
-
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
msgstr "取消关注 {0}"
@@ -6291,12 +6635,14 @@ msgstr "取消关注账户"
msgid "Unlike this feed"
msgstr "取消喜欢这个资讯源"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "取消隐藏"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "取消隐藏 {truncatedTag}"
@@ -6305,21 +6651,29 @@ msgstr "取消隐藏 {truncatedTag}"
msgid "Unmute Account"
msgstr "取消隐藏账户"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "取消隐藏所有 {displayTag} 帖文"
#: src/components/dms/ConvoMenu.tsx:176
msgid "Unmute conversation"
-msgstr "取消静音对话"
+msgstr "取消隐藏对话"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "取消隐藏讨论串"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr "取消隐藏视频"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr "已取消隐藏"
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "取消固定"
@@ -6327,11 +6681,11 @@ msgstr "取消固定"
msgid "Unpin from home"
msgstr "从主页取消固定"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "取消固定限制列表"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "从你的资讯源中取消固定"
@@ -6339,16 +6693,25 @@ msgstr "从你的资讯源中取消固定"
msgid "Unsubscribe"
msgstr "取消订阅"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr "从列表取消订阅"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "取消订阅这个标记者"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr "已从列表中取消订阅"
+
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Unwanted Sexual Content"
msgstr "不受欢迎的性内容"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "更新列表中的 {displayName}"
@@ -6356,6 +6719,14 @@ msgstr "更新列表中的 {displayName}"
msgid "Update to {handle}"
msgstr "更新至 {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr "更新引用关联失败"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr "更新回复可见性失败"
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "更新中..."
@@ -6368,20 +6739,20 @@ msgstr "上传图片"
msgid "Upload a text file to:"
msgstr "将文本文件上传至:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "从相机上传"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "从文件上传"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6429,12 +6800,12 @@ msgstr "使用这个和你的用户识别符一起登录其他应用。"
msgid "Used by:"
msgstr "使用者:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "用户被屏蔽"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "用户被 \"{0}\" 屏蔽"
@@ -6442,30 +6813,28 @@ msgstr "用户被 \"{0}\" 屏蔽"
msgid "User blocked by list"
msgstr "用户已被列表屏蔽"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "用户已被列表屏蔽"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "用户屏蔽了你"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "用户屏蔽了你"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "{0} 的用户列表"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "<0/> 的用户列表"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "你的用户列表"
@@ -6477,7 +6846,7 @@ msgstr "用户列表已创建"
msgid "User list updated"
msgstr "用户列表已更新"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "用户列表"
@@ -6485,13 +6854,13 @@ msgstr "用户列表"
msgid "Username or email address"
msgstr "用户名或电子邮箱"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "用户"
-#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "关注 <0/> 的用户"
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr "关注 <0>@{0}0> 的用户"
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -6500,7 +6869,7 @@ msgstr "关注 <0/> 的用户"
msgid "Users I follow"
msgstr "我关注的用户"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "\"{0}\"中的用户"
@@ -6516,15 +6885,15 @@ msgstr "值:"
msgid "Verify DNS Record"
msgstr "验证 DNS 记录"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "验证邮箱"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "验证我的邮箱"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "验证我的邮箱"
@@ -6541,31 +6910,40 @@ msgstr "验证文本文件"
msgid "Verify Your Email"
msgstr "验证你的邮箱"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "版本 {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr "视频"
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "电子游戏"
-#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr "视频不能大于 100MB"
-
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "查看{0}的头像"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "查看{0}的个人资料"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr "查看{displayName}的个人资料"
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "查看屏蔽账户的个人资料"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr "查看博客文章以获取更多资讯"
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "查看调试入口"
@@ -6578,7 +6956,7 @@ msgstr "查看详情"
msgid "View details for reporting a copyright violation"
msgstr "查看举报版权侵权的详情"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "查看整个讨论串"
@@ -6589,12 +6967,12 @@ msgstr "查看这个标记的详情"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "查看个人资料"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "查看头像"
@@ -6606,11 +6984,23 @@ msgstr "查看 @{0} 提供的标记服务。"
msgid "View users who like this feed"
msgstr "查看这个资讯源被谁喜欢"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr "查看你屏蔽的账号"
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr "查看自定义资讯源并探索更多"
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr "查看你的内容审核列表"
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr "查看你隐藏的账号"
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -6642,7 +7032,7 @@ msgstr "我们无法加载这个对话"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "我们估计还需要 {estimatedTime} 才能完成你的账户准备。"
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "我们希望你在此度过愉快的时光。请记住,Bluesky 是:"
@@ -6650,19 +7040,15 @@ msgstr "我们希望你在此度过愉快的时光。请记住,Bluesky 是:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "我们已经看完了你关注的帖文。这是来自 <0/> 的最新消息。"
-#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "不建议你添加会出现在许多帖文中的常见词汇,这可能导致你的时间线上没有帖文可显示。"
-
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "我们无法加载你的生日首选项,请重试。"
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "我们暂时无法记载你已配置的标记者。"
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "我们无法连接到互联网,请重试以继续设置你的账户。如果仍继续失败,你可以选择跳过这段流程。"
@@ -6670,7 +7056,7 @@ msgstr "我们无法连接到互联网,请重试以继续设置你的账户。
msgid "We will let you know when your account is ready."
msgstr "我们会在你的账户准备好时通知你。"
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "我们将使用这些信息来帮助定制你的体验。"
@@ -6678,15 +7064,15 @@ msgstr "我们将使用这些信息来帮助定制你的体验。"
msgid "We're having network issues, try again"
msgstr "我们遇到了网络问题,请再试一次"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "我们非常高兴你加入我们!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "很抱歉,我们无法解析这个列表。如果问题持续发生,请联系列表创建者,@{handleOrDid}。"
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "很抱歉,我们无法加载你的隐藏词汇列表。请重试。"
@@ -6694,11 +7080,11 @@ msgstr "很抱歉,我们无法加载你的隐藏词汇列表。请重试。"
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "很抱歉,无法完成你的搜索。请稍后再试。"
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "很抱歉!你所回复的帖文已被删除。"
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "很抱歉!我们找不到你正在寻找的页面。"
@@ -6715,7 +7101,7 @@ msgstr "欢迎回来!"
msgid "Welcome, friend!"
msgstr "欢迎新天友!"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "你感兴趣的是什么?"
@@ -6725,7 +7111,7 @@ msgstr "你想如何命名你的入门包?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "发生了什么新鲜事?"
@@ -6737,23 +7123,19 @@ msgstr "这条帖文中使用了哪些语言?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "你想在算法资讯源中看到哪些语言?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr "谁可以参与这条帖文的互动?"
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "谁可以给你发送私信?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "谁可以回复"
-#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "谁可以回复对话框"
-
-#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "谁可以回复?"
-
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
msgid "Whoops!"
@@ -6796,12 +7178,12 @@ msgstr "宽"
msgid "Write a message"
msgstr "编写私信"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "撰写帖文"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "撰写你的回复"
@@ -6811,10 +7193,10 @@ msgid "Writers"
msgstr "作家"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -6825,10 +7207,18 @@ msgstr "启用"
msgid "Yes, deactivate"
msgstr "是的,请停用"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr "是的,删除此入门包"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr "是的,分离"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr "是的,隐藏"
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "是的,重新启用我的账户"
@@ -6837,7 +7227,8 @@ msgstr "是的,重新启用我的账户"
msgid "Yesterday, {time}"
msgstr "昨天,{time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "你"
@@ -6895,11 +7286,11 @@ msgstr "你目前还没有邀请码!当你持续使用 Bluesky 一段时间后
msgid "You don't have any pinned feeds."
msgstr "你目前还没有任何固定的资讯源。"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "你目前还没有任何保存的资讯源。"
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "你已屏蔽该帖文作者,或你已被该作者屏蔽。"
@@ -6907,9 +7298,9 @@ msgstr "你已屏蔽该帖文作者,或你已被该作者屏蔽。"
msgid "You have blocked this user"
msgstr "你已屏蔽这个用户"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "你已屏蔽这个用户,你将无法查看他们发布的内容。"
@@ -6920,20 +7311,20 @@ msgstr "你已屏蔽这个用户,你将无法查看他们发布的内容。"
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "你输入的确认码无效。它应该长得像这样 XXXXX-XXXXX。"
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "你已隐藏这条帖文"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "你已隐藏这条帖文。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "你已隐藏这个账户。"
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "你已隐藏这个用户"
@@ -6941,12 +7332,12 @@ msgstr "你已隐藏这个用户"
msgid "You have no conversations yet. Start one!"
msgstr "你还没有任何私信,立即与其他人展开对话吧!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "你还没有建立任何资讯源。"
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "你还没有建立任何列表。"
@@ -6970,27 +7361,32 @@ msgstr "你已经到末尾了"
msgid "You haven't created a starter pack yet!"
msgstr "你还没有创建任何入门包!"
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "你还没有隐藏任何词或标签"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr "你隐藏了这条回复。"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "如果你认为由他人放置标签的标记信息有误,你可以提出申诉。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "如果你认为标签的标记信息有误,你可以提出申诉。"
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "你最多只能添加 50 个资讯源"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr "你最多只能添加 {STARTER_PACK_MAX_SIZE} 个个人资料"
-#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "你最多只能添加 50 个用户"
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr "你最多只能添加 3 个资讯源"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "你必须年满13岁及以上才能注册。"
@@ -7006,7 +7402,7 @@ msgstr "你必须授权照片图库权限以保存二维码"
msgid "You must grant access to your photo library to save the image."
msgstr "你必须授权照片图库权限以保存图片。"
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "你必须选择至少一个标记者进行举报"
@@ -7014,11 +7410,11 @@ msgstr "你必须选择至少一个标记者进行举报"
msgid "You previously deactivated @{0}."
msgstr "你之前已停用 @{0}。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "你将不再收到这条讨论串的通知"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "你将收到这条讨论串的通知"
@@ -7038,23 +7434,23 @@ msgstr "你:{defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "你:{short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "完成创建账户后,你将关注建议的用户和资讯源!"
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "完成创建帐户后,你将关注建议的用户!"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "你将关注这些用户以及其他 {0} 位"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "你将立即关注这些人"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "你将通过这些资讯源接收最新动态"
@@ -7069,12 +7465,12 @@ msgstr "轮到你了"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "你已使用应用密码登录账户,请改用你的主密码登录以继续停用你的账户。"
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "你已设置完成!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "你选择隐藏了这条帖文中的词汇或标签。"
@@ -7082,7 +7478,7 @@ msgstr "你选择隐藏了这条帖文中的词汇或标签。"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "你已经浏览完你的订阅资讯源啦!寻找一些更多的账户关注吧。"
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "你的账户"
@@ -7098,6 +7494,10 @@ msgstr "你的账户数据库包含所有公共数据记录,它们将被导出
msgid "Your birth date"
msgstr "你的生日"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr "你的浏览器不支持此视频格式,请更换不同的浏览器。"
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "你的私信功能已被停用"
@@ -7107,7 +7507,7 @@ msgid "Your choice will be saved, but can be changed later in settings."
msgstr "你的选择将被保存,但可以稍后在设置中更改。"
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7121,7 +7521,7 @@ msgstr "你的电子邮箱已更新但尚未验证。作为下一步,请验证
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "你的电子邮箱尚未验证。这是一个重要的安全步骤,我们建议你完成验证。"
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr "你的第一个喜欢!"
@@ -7129,7 +7529,7 @@ msgstr "你的第一个喜欢!"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "你的\"正在关注\"资讯源为空!关注更多用户去看看他们发了什么。"
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "你的完整用户识别符将修改为"
@@ -7137,7 +7537,7 @@ msgstr "你的完整用户识别符将修改为"
msgid "Your full handle will be <0>@{0}0>"
msgstr "你的完整用户识别符将修改为 <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "你的隐藏词汇"
@@ -7145,15 +7545,15 @@ msgstr "你的隐藏词汇"
msgid "Your password has been changed successfully!"
msgstr "你的密码已成功更改!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "你的帖文已发布"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "你的帖文、喜欢和屏蔽是公开可见的,而隐藏不可见。"
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "你的个人资料"
@@ -7161,7 +7561,7 @@ msgstr "你的个人资料"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "其他 Bluesky 用户将无法再看到你的个人资料、帖文、列表与其他相关信息,你可以随时登录以重新激活你的账户。"
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "你的回复已发布"
@@ -7169,6 +7569,6 @@ msgstr "你的回复已发布"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "你的举报将发送至 Bluesky 内容审核服务"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "你的用户识别符"
diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po
index de42c5dd5a..a9e22ac6c7 100644
--- a/src/locale/locales/zh-TW/messages.po
+++ b/src/locale/locales/zh-TW/messages.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: zh-TW for bluesky-social-app\n"
"POT-Creation-Date: \n"
"Report-Msgid-Bugs-To: Kuwa Lee , Frudrax Cheng \n"
-"PO-Revision-Date: 2024-07-20 08:37+0800\n"
+"PO-Revision-Date: 2024-08-23 16:41+0800\n"
"Last-Translator: \n"
"Language-Team: Frudrax Cheng , Kuwa Lee , noeFly, snowleo208, Kisaragi Hiu, Yi-Jyun Pan, toto6038, cirx1e\n"
"Language: zh_TW\n"
@@ -21,7 +21,8 @@ msgstr "(含有嵌入內容)"
msgid "(no email)"
msgstr "(沒有電子郵件)"
-#: src/view/com/notifications/FeedItem.tsx:297
+#: src/view/com/notifications/FeedItem.tsx:236
+#: src/view/com/notifications/FeedItem.tsx:327
msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}"
msgstr "{0, plural, one {其他 {formattedCount} 個人} other {其他 {formattedCount} 個人}}"
@@ -33,7 +34,7 @@ msgstr "{0, plural, one {該帳號有 # 個標記} other {該帳號有 # 個標
msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}"
msgstr "{0, plural, one {該內容有 # 個標記} other {該內容有 # 個標記}}"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.tsx:68
msgid "{0, plural, one {# repost} other {# reposts}}"
msgstr "{0, plural, one {# 個轉貼} other {# 個轉貼}}"
@@ -47,16 +48,16 @@ msgstr "{0, plural, one {個跟隨者} other {個跟隨者}}"
msgid "{0, plural, one {following} other {following}}"
msgstr "{0, plural, one {個跟隨中} other {個跟隨中}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:266
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:276
msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}"
msgstr "{0, plural, one {喜歡(# 個喜歡)} other {喜歡(# 個喜歡)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:382
+#: src/view/com/post-thread/PostThreadItem.tsx:433
msgid "{0, plural, one {like} other {likes}}"
msgstr "{0, plural, one {喜歡} other {喜歡}}"
-#: src/components/FeedCard.tsx:206
-#: src/view/com/feeds/FeedSourceCard.tsx:301
+#: src/components/FeedCard.tsx:210
+#: src/view/com/feeds/FeedSourceCard.tsx:300
msgid "{0, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{0, plural,one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}"
@@ -64,27 +65,41 @@ msgstr "{0, plural,one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}
msgid "{0, plural, one {post} other {posts}}"
msgstr "{0, plural, one {則貼文} other {則貼文}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:224
+#: src/view/com/post-thread/PostThreadItem.tsx:413
+msgid "{0, plural, one {quote} other {quotes}}"
+msgstr "{0, plural, one {引用} other {引用}}"
+
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:233
msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}"
msgstr "{0, plural, one {回覆(# 個回覆)} other {回覆(# 個回覆)}}"
-#: src/view/com/post-thread/PostThreadItem.tsx:362
+#: src/view/com/post-thread/PostThreadItem.tsx:393
msgid "{0, plural, one {repost} other {reposts}}"
msgstr "{0, plural, one {轉貼} other {轉貼}}"
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:262
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:272
msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}"
msgstr "{0, plural, one {撤回喜歡(# 個喜歡)} other {撤回喜歡(# 個喜歡)}}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223
+#. Pattern: {wordValue} in tags
+#: src/components/dialogs/MutedWords.tsx:475
+msgid "{0} <0>in <1>tags1>0>"
+msgstr "{0} <0>在<1>標籤1>0>中"
+
+#. Pattern: {wordValue} in text, tags
+#: src/components/dialogs/MutedWords.tsx:465
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr "{0} <0>在<1>文字和標籤1>0>中"
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:228
msgid "{0} joined this week"
msgstr "本週加入了 {0} 人"
-#: src/screens/StarterPack/StarterPackScreen.tsx:456
+#: src/screens/StarterPack/StarterPackScreen.tsx:467
msgid "{0} people have used this starter pack!"
msgstr "{0} 人已使用此入門包!"
-#: src/view/com/util/UserAvatar.tsx:431
+#: src/view/com/util/UserAvatar.tsx:419
msgid "{0}'s avatar"
msgstr "「{0}」的頭像"
@@ -120,7 +135,7 @@ msgstr "{diff, plural, one {月} other {月}}"
msgid "{diffSeconds, plural, one {second} other {seconds}}"
msgstr "{diffSeconds, plural, one {秒} other {秒}}"
-#: src/screens/StarterPack/Wizard/index.tsx:175
+#: src/screens/StarterPack/Wizard/index.tsx:174
msgid "{displayName}'s Starter Pack"
msgstr "「{displayName}」的入門包"
@@ -147,7 +162,7 @@ msgstr "無法傳送訊息給 {handle}"
msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}"
msgstr "{likeCount, plural, one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}"
-#: src/view/shell/Drawer.tsx:452
+#: src/view/shell/Drawer.tsx:466
msgid "{numUnreadNotifications} unread"
msgstr "{numUnreadNotifications} 個未讀通知"
@@ -159,14 +174,6 @@ msgstr "「{profileName}」在 {0} 前加入了 Bluesky"
msgid "{profileName} joined Bluesky using a starter pack {0} ago"
msgstr "「{profileName}」在 {0} 前使用入門包加入了 Bluesky"
-#: src/view/screens/PreferencesFollowingFeed.tsx:67
-msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}"
-msgstr "{value, plural, =0 {顯示所有回覆} one {顯示至少 # 個喜歡的回覆} other {顯示至少 # 個喜歡的回覆}}"
-
-#: src/components/WhoCanReply.tsx:296
-msgid "<0/> members"
-msgstr "<0/> 個成員"
-
#: src/screens/StarterPack/Wizard/index.tsx:466
msgctxt "profiles"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
@@ -177,11 +184,11 @@ msgctxt "feeds"
msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
msgstr "<0>{0}、0><1>{1}1>和{2, plural, one {其他 # } other {其他 # }}個動態源已在您的入門包中"
-#: src/view/shell/Drawer.tsx:100
+#: src/view/shell/Drawer.tsx:109
msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
msgstr "<0>{0}0> {1, plural, one {個跟隨者} other {個跟隨者}}"
-#: src/view/shell/Drawer.tsx:111
+#: src/view/shell/Drawer.tsx:124
msgid "<0>{0}0> {1, plural, one {following} other {following}}"
msgstr "<0>{0}0> {1, plural, one {個跟隨中} other {個跟隨中}}"
@@ -193,6 +200,10 @@ msgstr "<0>{0}0> 和<1> 1><2>{1} 2>已在您的入門包中"
msgid "<0>{0}0> is included in your starter pack"
msgstr "<0>{0}0> 已在您的入門包中"
+#: src/components/WhoCanReply.tsx:274
+msgid "<0>{0}0> members"
+msgstr "<0>{0}0> 個成員"
+
#: src/view/com/modals/SelfLabel.tsx:135
msgid "<0>Not Applicable.0> This warning is only available for posts with media attached."
msgstr "<0>不適用。0> 此警告只適用於附帶媒體的貼文。"
@@ -205,15 +216,27 @@ msgstr "<0>您0>和<1> 1><2>{0} 2>已在您的入門包中"
msgid "⚠Invalid Handle"
msgstr "⚠無效的帳號代碼"
+#: src/components/dialogs/MutedWords.tsx:193
+msgid "24 hours"
+msgstr "24 小時"
+
#: src/screens/Login/LoginForm.tsx:266
msgid "2FA Confirmation"
msgstr "雙重驗證"
+#: src/components/dialogs/MutedWords.tsx:232
+msgid "30 days"
+msgstr "30 天"
+
+#: src/components/dialogs/MutedWords.tsx:217
+msgid "7 days"
+msgstr "7 天"
+
#: src/tours/Tooltip.tsx:70
msgid "A help tooltip"
msgstr "幫助工具提示框"
-#: src/view/com/util/ViewHeader.tsx:93
+#: src/view/com/util/ViewHeader.tsx:92
#: src/view/screens/Search/Search.tsx:684
msgid "Access navigation links and settings"
msgstr "存取導覽連結和設定"
@@ -223,22 +246,22 @@ msgid "Access profile and other navigation links"
msgstr "存取個人檔案和其他導覽連結"
#: src/view/com/modals/EditImage.tsx:300
-#: src/view/screens/Settings/index.tsx:520
+#: src/view/screens/Settings/index.tsx:463
msgid "Accessibility"
msgstr "無障礙"
-#: src/view/screens/Settings/index.tsx:511
+#: src/view/screens/Settings/index.tsx:454
msgid "Accessibility settings"
msgstr "無障礙設定"
-#: src/Navigation.tsx:309
-#: src/view/screens/AccessibilitySettings.tsx:69
+#: src/Navigation.tsx:318
+#: src/view/screens/AccessibilitySettings.tsx:73
msgid "Accessibility Settings"
msgstr "無障礙設定"
#: src/screens/Login/LoginForm.tsx:190
-#: src/view/screens/Settings/index.tsx:347
-#: src/view/screens/Settings/index.tsx:754
+#: src/view/screens/Settings/index.tsx:315
+#: src/view/screens/Settings/index.tsx:718
msgid "Account"
msgstr "帳號"
@@ -254,20 +277,20 @@ msgstr "已跟隨帳號"
msgid "Account muted"
msgstr "已靜音帳號"
-#: src/components/moderation/ModerationDetailsDialog.tsx:93
-#: src/lib/moderation/useModerationCauseDescription.ts:93
+#: src/components/moderation/ModerationDetailsDialog.tsx:102
+#: src/lib/moderation/useModerationCauseDescription.ts:96
msgid "Account Muted"
msgstr "已靜音帳號"
-#: src/components/moderation/ModerationDetailsDialog.tsx:82
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
msgid "Account Muted by List"
msgstr "帳號已被列表靜音"
-#: src/view/com/util/AccountDropdownBtn.tsx:41
+#: src/view/com/util/AccountDropdownBtn.tsx:43
msgid "Account options"
-msgstr "帳號選項"
+msgstr ""
-#: src/view/com/util/AccountDropdownBtn.tsx:25
+#: src/view/com/util/AccountDropdownBtn.tsx:59
msgid "Account removed from quick access"
msgstr "已從快速存取中移除帳號"
@@ -284,10 +307,10 @@ msgstr "已取消跟隨帳號"
msgid "Account unmuted"
msgstr "已取消靜音帳號"
-#: src/components/dialogs/MutedWords.tsx:164
+#: src/components/dialogs/MutedWords.tsx:328
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
-#: src/view/screens/ProfileList.tsx:881
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
+#: src/view/screens/ProfileList.tsx:937
msgid "Add"
msgstr "新增"
@@ -303,14 +326,14 @@ msgstr "新增 {displayName} 至入門包"
msgid "Add a content warning"
msgstr "新增內容警告"
-#: src/view/screens/ProfileList.tsx:871
+#: src/view/screens/ProfileList.tsx:927
msgid "Add a user to this list"
msgstr "將用戶新增至此列表"
#: src/components/dialogs/SwitchAccount.tsx:56
#: src/screens/Deactivated.tsx:199
-#: src/view/screens/Settings/index.tsx:424
-#: src/view/screens/Settings/index.tsx:433
+#: src/view/screens/Settings/index.tsx:401
+#: src/view/screens/Settings/index.tsx:410
msgid "Add account"
msgstr "新增帳號"
@@ -329,11 +352,11 @@ msgstr "新增替代文字"
msgid "Add App Password"
msgstr "新增應用程式專用密碼"
-#: src/components/dialogs/MutedWords.tsx:157
+#: src/components/dialogs/MutedWords.tsx:321
msgid "Add mute word for configured settings"
msgstr "在已配置的設定中新增靜音文字"
-#: src/components/dialogs/MutedWords.tsx:86
+#: src/components/dialogs/MutedWords.tsx:112
msgid "Add muted words and tags"
msgstr "新增靜音文字及標籤"
@@ -353,7 +376,7 @@ msgstr "新增預設的「Following」動態源,它只會顯示您跟隨的人
msgid "Add the following DNS record to your domain:"
msgstr "將以下 DNS 記錄新增到您的網域:"
-#: src/components/FeedCard.tsx:289
+#: src/components/FeedCard.tsx:293
msgid "Add this feed to your feeds"
msgstr "將此新增至您的動態源"
@@ -362,29 +385,26 @@ msgstr "將此新增至您的動態源"
msgid "Add to Lists"
msgstr "新增至列表"
-#: src/view/com/feeds/FeedSourceCard.tsx:267
+#: src/view/com/feeds/FeedSourceCard.tsx:266
msgid "Add to my feeds"
msgstr "加入到我的動態源"
#: src/view/com/modals/ListAddRemoveUsers.tsx:192
-#: src/view/com/modals/UserAddRemoveLists.tsx:157
+#: src/view/com/modals/UserAddRemoveLists.tsx:156
msgid "Added to list"
msgstr "新增至列表"
-#: src/view/com/feeds/FeedSourceCard.tsx:126
+#: src/view/com/feeds/FeedSourceCard.tsx:125
msgid "Added to my feeds"
msgstr "加入到我的動態源"
-#: src/view/screens/PreferencesFollowingFeed.tsx:171
-msgid "Adjust the number of likes a reply must have to be shown in your feed."
-msgstr "調整回覆貼文在您的動態中顯示所需的最低喜歡數量。"
-
#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:144
#: src/view/com/modals/SelfLabel.tsx:76
msgid "Adult Content"
msgstr "成人內容"
-#: src/screens/Moderation/index.tsx:356
+#: src/screens/Moderation/index.tsx:365
msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
msgstr "成人內容只能透過網頁版 (<0>bsky.app0>) 啟用。"
@@ -392,20 +412,20 @@ msgstr "成人內容只能透過網頁版 (<0>bsky.app0>) 啟用。"
msgid "Adult content is disabled."
msgstr "成人內容已停用。"
-#: src/screens/Moderation/index.tsx:399
-#: src/view/screens/Settings/index.tsx:688
+#: src/screens/Moderation/index.tsx:409
+#: src/view/screens/Settings/index.tsx:652
msgid "Advanced"
msgstr "進階設定"
-#: src/state/shell/progress-guide.tsx:176
+#: src/state/shell/progress-guide.tsx:171
msgid "Algorithm training complete!"
msgstr "演算法訓練完成!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:360
+#: src/screens/StarterPack/StarterPackScreen.tsx:370
msgid "All accounts have been followed!"
msgstr "已跟隨所有帳號!"
-#: src/view/screens/Feeds.tsx:734
+#: src/view/screens/Feeds.tsx:733
msgid "All the feeds you've saved, right in one place."
msgstr "以下是您儲存的動態源。"
@@ -419,6 +439,14 @@ msgstr "允許存取您的私人訊息"
msgid "Allow new messages from"
msgstr "允許這些人向您發起對話:"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:359
+msgid "Allow replies from:"
+msgstr "允許這些人回覆您的貼文:"
+
+#: src/view/screens/AppPasswords.tsx:271
+msgid "Allows access to direct messages"
+msgstr "允許存取私人訊息"
+
#: src/screens/Login/ForgotPasswordForm.tsx:178
#: src/view/com/modals/ChangePassword.tsx:171
msgid "Already have a code?"
@@ -436,7 +464,7 @@ msgstr "替代文字"
#: src/view/com/composer/GifAltText.tsx:144
#: src/view/com/modals/EditImage.tsx:316
-#: src/view/screens/AccessibilitySettings.tsx:83
+#: src/view/screens/AccessibilitySettings.tsx:87
msgid "Alt text"
msgstr "替代文字"
@@ -457,52 +485,70 @@ msgstr "一封電子郵件已發送至 {0}。請查閱郵件並在下方輸入
msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below."
msgstr "一封電子郵件已發送至先前填寫的電子郵件地址 {0}。請查閱郵件並在下方輸入驗證碼。"
-#: src/components/dialogs/GifSelect.tsx:252
-msgid "An error occured"
+#: src/components/dialogs/GifSelect.tsx:254
+msgid "An error has occurred"
+msgstr "發生錯誤"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:314
+msgid "An error occurred"
msgstr "發生錯誤"
#: src/components/StarterPack/ProfileStarterPacks.tsx:315
msgid "An error occurred while generating your starter pack. Want to try again?"
msgstr "建立您的入門包時發生錯誤。是否要重試?"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:69
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:150
+msgid "An error occurred while loading the video. Please try again later."
+msgstr "載入影片時發生錯誤。請稍後再試。"
+
#: src/components/StarterPack/QrCodeDialog.tsx:71
#: src/components/StarterPack/ShareDialog.tsx:79
msgid "An error occurred while saving the QR code!"
msgstr "儲存 QR Code 時發生錯誤!"
-#: src/screens/StarterPack/StarterPackScreen.tsx:362
+#: src/screens/StarterPack/StarterPackScreen.tsx:336
+#: src/screens/StarterPack/StarterPackScreen.tsx:358
msgid "An error occurred while trying to follow all"
msgstr "跟隨所有帳號時發生錯誤"
+#: src/state/queries/video/video.ts:112
+msgid "An error occurred while uploading the video."
+msgstr "上傳影片時發生錯誤。"
+
#: src/lib/moderation/useReportOptions.ts:28
msgid "An issue not included in these options"
msgstr "問題不在上述選項"
#: src/components/dms/dialogs/NewChatDialog.tsx:36
msgid "An issue occurred starting the chat"
-msgstr ""
+msgstr "發起聊天時出現問題"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49
msgid "An issue occurred while trying to open the chat"
-msgstr ""
+msgstr "開啟聊天時出現問題"
#: src/components/hooks/useFollowMethods.ts:35
#: src/components/hooks/useFollowMethods.ts:50
-#: src/components/ProfileCard.tsx:311
-#: src/components/ProfileCard.tsx:331
+#: src/components/ProfileCard.tsx:319
+#: src/components/ProfileCard.tsx:339
#: src/view/com/profile/FollowButton.tsx:36
#: src/view/com/profile/FollowButton.tsx:46
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198
msgid "An issue occurred, please try again."
msgstr "出現問題,請再試一次。"
-#: src/screens/Onboarding/StepInterests/index.tsx:218
+#: src/screens/Onboarding/StepInterests/index.tsx:219
msgid "an unknown error occurred"
msgstr "出現未知錯誤"
-#: src/components/WhoCanReply.tsx:317
-#: src/view/com/notifications/FeedItem.tsx:294
+#: src/components/moderation/ModerationDetailsDialog.tsx:151
+#: src/components/moderation/ModerationDetailsDialog.tsx:147
+msgid "an unknown labeler"
+msgstr "未知的標記者"
+
+#: src/components/WhoCanReply.tsx:295
+#: src/view/com/notifications/FeedItem.tsx:235
+#: src/view/com/notifications/FeedItem.tsx:324
msgid "and"
msgstr "和"
@@ -519,6 +565,10 @@ msgstr "GIF 動畫"
msgid "Anti-Social Behavior"
msgstr "反社會行為"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:54
+msgid "Anybody can interact"
+msgstr "任何人都可以參與互動"
+
#: src/view/screens/LanguageSettings.tsx:96
msgid "App Language"
msgstr "應用程式語言"
@@ -535,26 +585,26 @@ msgstr "應用程式專用密碼只能包含字母、數字、空格、破折號
msgid "App Password names must be at least 4 characters long."
msgstr "應用程式專用密碼名稱必須至少有 4 個字元。"
-#: src/view/screens/Settings/index.tsx:699
+#: src/view/screens/Settings/index.tsx:663
msgid "App password settings"
msgstr "應用程式專用密碼設定"
-#: src/Navigation.tsx:277
+#: src/Navigation.tsx:286
#: src/view/screens/AppPasswords.tsx:192
-#: src/view/screens/Settings/index.tsx:708
+#: src/view/screens/Settings/index.tsx:672
msgid "App Passwords"
msgstr "應用程式專用密碼"
-#: src/components/moderation/LabelsOnMeDialog.tsx:152
-#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:154
+#: src/components/moderation/LabelsOnMeDialog.tsx:157
msgid "Appeal"
msgstr "申訴"
-#: src/components/moderation/LabelsOnMeDialog.tsx:257
+#: src/components/moderation/LabelsOnMeDialog.tsx:247
msgid "Appeal \"{0}\" label"
msgstr "申訴「{0}」標記"
-#: src/components/moderation/LabelsOnMeDialog.tsx:248
+#: src/components/moderation/LabelsOnMeDialog.tsx:238
#: src/screens/Messages/Conversation/ChatDisabled.tsx:91
msgid "Appeal submitted"
msgstr "已提交申訴"
@@ -566,10 +616,19 @@ msgstr "已提交申訴"
msgid "Appeal this decision"
msgstr "對此決定提出上訴"
-#: src/view/screens/Settings/index.tsx:441
+#: src/screens/Settings/AppearanceSettings.tsx:69
+#: src/view/screens/Settings/index.tsx:484
msgid "Appearance"
msgstr "外觀"
+#: src/view/screens/Settings/index.tsx:475
+msgid "Appearance settings"
+msgstr "外觀設定"
+
+#: src/Navigation.tsx:326
+msgid "Appearance Settings"
+msgstr "外觀設定"
+
#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47
#: src/screens/Home/NoFeedsPinned.tsx:93
msgid "Apply default recommended feeds"
@@ -583,7 +642,7 @@ msgstr "您確定要刪除這個應用程式專用密碼「{name}」嗎?"
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant."
msgstr "您確定要刪除這則訊息嗎?該訊息將為您刪除,但不會為其他參與者刪除。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:610
+#: src/screens/StarterPack/StarterPackScreen.tsx:621
msgid "Are you sure you want to delete this starter pack?"
msgstr "您確定要刪除這個入門包嗎?"
@@ -591,19 +650,19 @@ msgstr "您確定要刪除這個入門包嗎?"
msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant."
msgstr "您確定要離開此對話嗎?您的訊息將為您刪除,但不會為其他參與者刪除。"
-#: src/view/com/feeds/FeedSourceCard.tsx:314
+#: src/view/com/feeds/FeedSourceCard.tsx:313
msgid "Are you sure you want to remove {0} from your feeds?"
msgstr "您確定要從您的動態中移除 {0} 嗎?"
-#: src/components/FeedCard.tsx:306
+#: src/components/FeedCard.tsx:310
msgid "Are you sure you want to remove this from your feeds?"
msgstr "您確定要將此從您的動態源中移除嗎?"
-#: src/view/com/composer/Composer.tsx:680
+#: src/view/com/composer/Composer.tsx:772
msgid "Are you sure you'd like to discard this draft?"
msgstr "您確定要捨棄此草稿嗎?"
-#: src/components/dialogs/MutedWords.tsx:281
+#: src/components/dialogs/MutedWords.tsx:433
msgid "Are you sure?"
msgstr "您確定嗎?"
@@ -620,13 +679,13 @@ msgstr "藝術"
msgid "Artistic or non-erotic nudity."
msgstr "藝術作品或非色情的裸露。"
-#: src/screens/Signup/StepHandle.tsx:170
+#: src/screens/Signup/StepHandle.tsx:171
msgid "At least 3 characters"
msgstr "至少 3 個字元"
#: src/components/dms/MessagesListHeader.tsx:75
-#: src/components/moderation/LabelsOnMeDialog.tsx:302
-#: src/components/moderation/LabelsOnMeDialog.tsx:303
+#: src/components/moderation/LabelsOnMeDialog.tsx:293
+#: src/components/moderation/LabelsOnMeDialog.tsx:294
#: src/screens/Login/ChooseAccountForm.tsx:98
#: src/screens/Login/ChooseAccountForm.tsx:103
#: src/screens/Login/ForgotPasswordForm.tsx:129
@@ -639,12 +698,12 @@ msgstr "至少 3 個字元"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:134
#: src/screens/Profile/Header/Shell.tsx:102
#: src/screens/Signup/BackNextButtons.tsx:40
-#: src/screens/StarterPack/Wizard/index.tsx:299
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/screens/StarterPack/Wizard/index.tsx:298
+#: src/view/com/util/ViewHeader.tsx:90
msgid "Back"
msgstr "返回"
-#: src/view/screens/Settings/index.tsx:498
+#: src/view/screens/Settings/index.tsx:441
msgid "Basics"
msgstr "基本設定"
@@ -652,7 +711,7 @@ msgstr "基本設定"
msgid "Birthday"
msgstr "生日"
-#: src/view/screens/Settings/index.tsx:379
+#: src/view/screens/Settings/index.tsx:347
msgid "Birthday:"
msgstr "生日:"
@@ -675,28 +734,27 @@ msgstr "封鎖帳號"
msgid "Block Account?"
msgstr "封鎖帳號?"
-#: src/view/screens/ProfileList.tsx:584
+#: src/view/screens/ProfileList.tsx:640
msgid "Block accounts"
msgstr "封鎖帳號"
-#: src/view/screens/ProfileList.tsx:688
+#: src/view/screens/ProfileList.tsx:744
msgid "Block list"
msgstr "封鎖列表"
-#: src/view/screens/ProfileList.tsx:683
+#: src/view/screens/ProfileList.tsx:739
msgid "Block these accounts?"
msgstr "封鎖這些帳號?"
-#: src/view/com/lists/ListCard.tsx:112
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:75
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:76
msgid "Blocked"
msgstr "已被封鎖"
-#: src/screens/Moderation/index.tsx:270
+#: src/screens/Moderation/index.tsx:279
msgid "Blocked accounts"
msgstr "已封鎖帳號"
-#: src/Navigation.tsx:148
+#: src/Navigation.tsx:150
#: src/view/screens/ModerationBlockedAccounts.tsx:109
msgid "Blocked Accounts"
msgstr "已封鎖帳號"
@@ -709,7 +767,7 @@ msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours."
msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。您將看不到他們的內容,他們也會被阻止看到您的內容。"
-#: src/view/com/post-thread/PostThread.tsx:367
+#: src/view/com/post-thread/PostThread.tsx:412
msgid "Blocked post."
msgstr "已封鎖貼文。"
@@ -717,7 +775,7 @@ msgstr "已封鎖貼文。"
msgid "Blocking does not prevent this labeler from placing labels on your account."
msgstr "封鎖此帳號不會阻止被貼上標記。"
-#: src/view/screens/ProfileList.tsx:685
+#: src/view/screens/ProfileList.tsx:741
msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "封鎖資訊是公開的。被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。"
@@ -725,7 +783,7 @@ msgstr "封鎖資訊是公開的。被封鎖的帳號無法在您的討論串中
msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you."
msgstr "封鎖此帳號不會阻止被貼上標記,但它會阻止此帳號在您的討論串中回覆或與您進行互動。"
-#: src/view/com/auth/SplashScreen.web.tsx:154
+#: src/view/com/auth/SplashScreen.web.tsx:159
msgid "Blog"
msgstr "部落格"
@@ -746,7 +804,7 @@ msgstr "Bluesky 因朋友而更好!"
msgid "Bluesky will choose a set of recommended accounts from people in your network."
msgstr "Bluesky 將從您的個人社群網路中選擇一組推薦的帳號。"
-#: src/screens/Moderation/index.tsx:557
+#: src/screens/Moderation/index.tsx:567
msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private."
msgstr "Bluesky 的官方程式將不會向未登入的使用者顯示您的個人檔案和貼文。但其他應用程式可能不會遵循這個要求,這不會使您的帳號轉為非公開狀態。"
@@ -763,21 +821,23 @@ msgstr "模糊圖片並從動態中過濾"
msgid "Books"
msgstr "書籍"
-#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:300
msgid "Browse more accounts on the Explore page"
msgstr "在探索頁面瀏覽更多帳號"
-#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:433
msgid "Browse more feeds on the Explore page"
msgstr "在探索頁面瀏覽更多動態源"
-#: src/components/FeedInterstitials.tsx:270
-#: src/components/FeedInterstitials.tsx:400
+#: src/components/FeedInterstitials.tsx:282
+#: src/components/FeedInterstitials.tsx:285
+#: src/components/FeedInterstitials.tsx:415
+#: src/components/FeedInterstitials.tsx:418
msgid "Browse more suggestions"
msgstr "瀏覽更多建議"
-#: src/components/FeedInterstitials.tsx:293
-#: src/components/FeedInterstitials.tsx:424
+#: src/components/FeedInterstitials.tsx:308
+#: src/components/FeedInterstitials.tsx:442
msgid "Browse more suggestions on the Explore page"
msgstr "在探索頁面瀏覽更多建議"
@@ -786,11 +846,11 @@ msgstr "在探索頁面瀏覽更多建議"
msgid "Browse other feeds"
msgstr "瀏覽其他動態源"
-#: src/view/com/auth/SplashScreen.web.tsx:151
+#: src/view/com/auth/SplashScreen.web.tsx:154
msgid "Business"
msgstr "商務"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:162
+#: src/view/com/profile/ProfileSubpageHeader.tsx:160
msgid "by —"
msgstr "來自 —"
@@ -798,15 +858,15 @@ msgstr "來自 —"
msgid "By {0}"
msgstr "來自 {0}"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:166
+#: src/view/com/profile/ProfileSubpageHeader.tsx:164
msgid "by <0/>"
msgstr "來自 <0/>"
-#: src/screens/Signup/StepInfo/Policies.tsx:74
+#: src/screens/Signup/StepInfo/Policies.tsx:80
msgid "By creating an account you agree to the {els}."
msgstr "建立帳號即表示您同意 {els}。"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:164
+#: src/view/com/profile/ProfileSubpageHeader.tsx:162
msgid "by you"
msgstr "來自您"
@@ -818,13 +878,13 @@ msgstr "相機"
msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long."
msgstr "只能包含字母、數字、空格、破折號及底線。長度必須至少有 4 個字元,但不超過 32 個字元。"
-#: src/components/Menu/index.tsx:215
+#: src/components/Menu/index.tsx:235
#: src/components/Prompt.tsx:119
#: src/components/Prompt.tsx:121
-#: src/components/TagMenu/index.tsx:268
+#: src/components/TagMenu/index.tsx:282
#: src/screens/Deactivated.tsx:161
-#: src/view/com/composer/Composer.tsx:460
-#: src/view/com/composer/Composer.tsx:475
+#: src/view/com/composer/Composer.tsx:512
+#: src/view/com/composer/Composer.tsx:527
#: src/view/com/modals/ChangeEmail.tsx:213
#: src/view/com/modals/ChangeEmail.tsx:215
#: src/view/com/modals/ChangeHandle.tsx:148
@@ -840,9 +900,8 @@ msgstr "只能包含字母、數字、空格、破折號及底線。長度必須
#: src/view/com/modals/LinkWarning.tsx:107
#: src/view/com/modals/VerifyEmail.tsx:255
#: src/view/com/modals/VerifyEmail.tsx:261
-#: src/view/com/util/post-ctrls/RepostButton.tsx:139
+#: src/view/com/util/post-ctrls/RepostButton.tsx:160
#: src/view/screens/Search/Search.tsx:704
-#: src/view/shell/desktop/Search.tsx:219
msgid "Cancel"
msgstr "取消"
@@ -870,7 +929,7 @@ msgstr "取消圖片裁剪"
msgid "Cancel profile editing"
msgstr "取消編輯個人檔案"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:133
+#: src/view/com/util/post-ctrls/RepostButton.tsx:154
msgid "Cancel quote post"
msgstr "取消引用貼文"
@@ -879,7 +938,6 @@ msgid "Cancel reactivation and log out"
msgstr "取消重新啟用並登出"
#: src/view/com/modals/ListAddRemoveUsers.tsx:88
-#: src/view/shell/desktop/Search.tsx:215
msgid "Cancel search"
msgstr "取消搜尋"
@@ -891,17 +949,17 @@ msgstr "取消開啟網站連結"
msgid "Change"
msgstr "變更"
-#: src/view/screens/Settings/index.tsx:373
+#: src/view/screens/Settings/index.tsx:341
msgctxt "action"
msgid "Change"
msgstr "變更"
-#: src/view/screens/Settings/index.tsx:720
+#: src/view/screens/Settings/index.tsx:684
msgid "Change handle"
msgstr "變更帳號代碼"
#: src/view/com/modals/ChangeHandle.tsx:156
-#: src/view/screens/Settings/index.tsx:731
+#: src/view/screens/Settings/index.tsx:695
msgid "Change Handle"
msgstr "變更帳號代碼"
@@ -909,12 +967,12 @@ msgstr "變更帳號代碼"
msgid "Change my email"
msgstr "變更我的電子郵件地址"
-#: src/view/screens/Settings/index.tsx:765
+#: src/view/screens/Settings/index.tsx:729
msgid "Change password"
msgstr "變更密碼"
#: src/view/com/modals/ChangePassword.tsx:142
-#: src/view/screens/Settings/index.tsx:776
+#: src/view/screens/Settings/index.tsx:740
msgid "Change Password"
msgstr "變更密碼"
@@ -926,7 +984,7 @@ msgstr "變更貼文的發佈語言為 {0}"
msgid "Change Your Email"
msgstr "變更您的電子郵件地址"
-#: src/Navigation.tsx:321
+#: src/Navigation.tsx:338
#: src/view/shell/bottom-bar/BottomBar.tsx:204
#: src/view/shell/desktop/LeftNav.tsx:302
msgid "Chat"
@@ -938,14 +996,14 @@ msgstr "對話已靜音"
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
-#: src/Navigation.tsx:326
+#: src/Navigation.tsx:343
#: src/screens/Messages/List/index.tsx:88
-#: src/view/screens/Settings/index.tsx:640
+#: src/view/screens/Settings/index.tsx:604
msgid "Chat settings"
msgstr "對話設定"
#: src/screens/Messages/Settings.tsx:59
-#: src/view/screens/Settings/index.tsx:649
+#: src/view/screens/Settings/index.tsx:613
msgid "Chat Settings"
msgstr "對話設定"
@@ -966,15 +1024,15 @@ msgstr "在此輸入寄送至您電子郵件地址的驗證碼。"
msgid "Check your inbox for an email with the confirmation code to enter below:"
msgstr "在下方輸入寄送至您電子郵件地址的驗證碼:"
-#: src/screens/Onboarding/StepInterests/index.tsx:190
+#: src/screens/Onboarding/StepInterests/index.tsx:191
msgid "Choose 3 or more:"
msgstr "選擇至少 3 個:"
-#: src/screens/Onboarding/StepInterests/index.tsx:325
+#: src/screens/Onboarding/StepInterests/index.tsx:326
msgid "Choose at least {0} more"
msgstr "選擇至少 {0} 個"
-#: src/screens/StarterPack/Wizard/index.tsx:191
+#: src/screens/StarterPack/Wizard/index.tsx:190
msgid "Choose Feeds"
msgstr "選擇動態源"
@@ -982,7 +1040,7 @@ msgstr "選擇動態源"
msgid "Choose for me"
msgstr "為我選擇"
-#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:186
msgid "Choose People"
msgstr "選擇人物"
@@ -990,7 +1048,7 @@ msgstr "選擇人物"
msgid "Choose Service"
msgstr "選擇服務"
-#: src/screens/Onboarding/StepFinished.tsx:281
+#: src/screens/Onboarding/StepFinished.tsx:284
msgid "Choose the algorithms that power your custom feeds."
msgstr "選擇提供您自定義動態的演算法。"
@@ -998,28 +1056,15 @@ msgstr "選擇提供您自定義動態的演算法。"
msgid "Choose this color as your avatar"
msgstr "選擇這個顏色作為您的頭像"
-#: src/components/dialogs/ThreadgateEditor.tsx:91
-#: src/components/dialogs/ThreadgateEditor.tsx:95
-msgid "Choose who can reply"
-msgstr "選擇哪些人可以回覆"
-
#: src/screens/Signup/StepInfo/index.tsx:171
msgid "Choose your password"
msgstr "選擇您的密碼"
-#: src/view/screens/Settings/index.tsx:912
-msgid "Clear all legacy storage data"
-msgstr "清除所有遺留資料"
-
-#: src/view/screens/Settings/index.tsx:915
-msgid "Clear all legacy storage data (restart after this)"
-msgstr "清除所有遺留資料(並重啟)"
-
-#: src/view/screens/Settings/index.tsx:924
+#: src/view/screens/Settings/index.tsx:876
msgid "Clear all storage data"
msgstr "清除所有資料"
-#: src/view/screens/Settings/index.tsx:927
+#: src/view/screens/Settings/index.tsx:879
msgid "Clear all storage data (restart after this)"
msgstr "清除所有資料(並重啟)"
@@ -1028,11 +1073,7 @@ msgstr "清除所有資料(並重啟)"
msgid "Clear search query"
msgstr "清除搜尋記錄"
-#: src/view/screens/Settings/index.tsx:913
-msgid "Clears all legacy storage data"
-msgstr "清除所有遺留資料"
-
-#: src/view/screens/Settings/index.tsx:925
+#: src/view/screens/Settings/index.tsx:877
msgid "Clears all storage data"
msgstr "清除所有資料"
@@ -1048,10 +1089,18 @@ msgstr "點擊這裡以瞭解有關停用帳號的詳細資訊"
msgid "Click here for more information."
msgstr "點擊這裡以瞭解更多資訊。"
-#: src/components/TagMenu/index.web.tsx:138
+#: src/components/TagMenu/index.web.tsx:152
msgid "Click here to open tag menu for {tag}"
msgstr "點擊這裡以開啟 {tag} 的標籤選單"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:303
+msgid "Click to disable quote posts of this post."
+msgstr "點擊這裡以停用這則帖文的引用。"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:304
+msgid "Click to enable quote posts of this post."
+msgstr "點擊這裡以啟用這則帖文的引用。"
+
#: src/components/dms/MessageItem.tsx:231
msgid "Click to retry failed message"
msgstr "點擊以重試傳送訊息"
@@ -1065,12 +1114,12 @@ msgid "Clip 🐴 clop 🐴"
msgstr "達達的馬蹄🐴是美麗的錯誤🐴"
#: src/components/dialogs/GifSelect.ios.tsx:250
-#: src/components/dialogs/GifSelect.tsx:268
+#: src/components/dialogs/GifSelect.tsx:270
#: src/components/dms/dialogs/SearchablePeopleList.tsx:261
#: src/components/NewskieDialog.tsx:146
#: src/components/NewskieDialog.tsx:153
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:125
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:131
#: src/view/com/modals/ChangePassword.tsx:268
#: src/view/com/modals/ChangePassword.tsx:271
#: src/view/com/util/post-embeds/GifEmbed.tsx:195
@@ -1091,7 +1140,7 @@ msgid "Close bottom drawer"
msgstr "關閉底欄"
#: src/components/dialogs/GifSelect.ios.tsx:244
-#: src/components/dialogs/GifSelect.tsx:262
+#: src/components/dialogs/GifSelect.tsx:264
msgid "Close dialog"
msgstr "關閉對話框"
@@ -1115,8 +1164,8 @@ msgstr "關閉視窗"
msgid "Close navigation footer"
msgstr "關閉導覽頁腳"
-#: src/components/Menu/index.tsx:209
-#: src/components/TagMenu/index.tsx:262
+#: src/components/Menu/index.tsx:229
+#: src/components/TagMenu/index.tsx:276
msgid "Close this dialog"
msgstr "關閉此對話框"
@@ -1128,7 +1177,7 @@ msgstr "關閉底部導覽列"
msgid "Closes password update alert"
msgstr "關閉密碼更新警告"
-#: src/view/com/composer/Composer.tsx:472
+#: src/view/com/composer/Composer.tsx:524
msgid "Closes post composer and discards post draft"
msgstr "關閉貼文編輯頁並捨棄草稿"
@@ -1136,11 +1185,11 @@ msgstr "關閉貼文編輯頁並捨棄草稿"
msgid "Closes viewer for header image"
msgstr "關閉標題圖片檢視器"
-#: src/view/com/notifications/FeedItem.tsx:238
+#: src/view/com/notifications/FeedItem.tsx:269
msgid "Collapse list of users"
msgstr "折疊用戶清單"
-#: src/view/com/notifications/FeedItem.tsx:440
+#: src/view/com/notifications/FeedItem.tsx:470
msgid "Collapses list of users for a given notification"
msgstr "折疊指定通知的用戶清單"
@@ -1154,27 +1203,31 @@ msgstr "喜劇"
msgid "Comics"
msgstr "漫畫"
-#: src/Navigation.tsx:267
+#: src/Navigation.tsx:276
#: src/view/screens/CommunityGuidelines.tsx:32
msgid "Community Guidelines"
msgstr "社群守則"
-#: src/screens/Onboarding/StepFinished.tsx:294
+#: src/screens/Onboarding/StepFinished.tsx:297
msgid "Complete onboarding and start using your account"
msgstr "完成初始設定並開始使用您的帳號"
-#: src/screens/Signup/index.tsx:139
+#: src/screens/Signup/index.tsx:150
msgid "Complete the challenge"
msgstr "完成驗證"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:662
msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length"
msgstr "撰寫貼文的長度最多為 {MAX_GRAPHEME_LENGTH} 個字元"
-#: src/view/com/composer/Prompt.tsx:26
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:29
msgid "Compose reply"
msgstr "撰寫回覆"
+#: src/view/com/composer/videos/VideoTranscodeProgress.tsx:51
+msgid "Compressing..."
+msgstr "壓縮中…"
+
#: src/components/moderation/LabelPreference.tsx:81
msgid "Configure content filtering setting for category: {name}"
msgstr "為 {name} 配置內容過濾設定"
@@ -1206,11 +1259,11 @@ msgstr "確認內容語言設定"
msgid "Confirm delete account"
msgstr "確認刪除帳號"
-#: src/screens/Moderation/index.tsx:304
+#: src/screens/Moderation/index.tsx:313
msgid "Confirm your age:"
msgstr "確認您的年齡:"
-#: src/screens/Moderation/index.tsx:295
+#: src/screens/Moderation/index.tsx:304
msgid "Confirm your birthdate"
msgstr "確認您的出生日期"
@@ -1228,7 +1281,8 @@ msgstr "驗證碼"
msgid "Connecting..."
msgstr "連線中…"
-#: src/screens/Signup/index.tsx:171
+#: src/screens/Signup/index.tsx:180
+#: src/screens/Signup/index.tsx:183
msgid "Contact support"
msgstr "聯繫支援"
@@ -1236,24 +1290,24 @@ msgstr "聯繫支援"
msgid "Content Blocked"
msgstr "已封鎖內容"
-#: src/screens/Moderation/index.tsx:288
+#: src/screens/Moderation/index.tsx:297
msgid "Content filters"
msgstr "內容過濾"
#: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:74
-#: src/view/screens/LanguageSettings.tsx:280
+#: src/view/screens/LanguageSettings.tsx:282
msgid "Content Languages"
msgstr "內容語言"
-#: src/components/moderation/ModerationDetailsDialog.tsx:75
-#: src/lib/moderation/useModerationCauseDescription.ts:77
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+#: src/lib/moderation/useModerationCauseDescription.ts:80
msgid "Content Not Available"
msgstr "無法查看此內容"
-#: src/components/moderation/ModerationDetailsDialog.tsx:46
+#: src/components/moderation/ModerationDetailsDialog.tsx:49
#: src/components/moderation/ScreenHider.tsx:99
#: src/lib/moderation/useGlobalLabelStrings.ts:22
-#: src/lib/moderation/useModerationCauseDescription.ts:40
+#: src/lib/moderation/useModerationCauseDescription.ts:43
msgid "Content Warning"
msgstr "內容警告"
@@ -1265,7 +1319,7 @@ msgstr "內容警告"
msgid "Context menu backdrop, click to close the menu."
msgstr "彈出式選單背景,點擊以關閉選單。"
-#: src/screens/Onboarding/StepInterests/index.tsx:277
+#: src/screens/Onboarding/StepInterests/index.tsx:278
#: src/screens/Onboarding/StepProfile/index.tsx:269
msgid "Continue"
msgstr "繼續"
@@ -1278,7 +1332,7 @@ msgstr "以 {0} 繼續 (目前已登入)"
msgid "Continue thread..."
msgstr "繼續載入討論串…"
-#: src/screens/Onboarding/StepInterests/index.tsx:274
+#: src/screens/Onboarding/StepInterests/index.tsx:275
#: src/screens/Onboarding/StepProfile/index.tsx:266
#: src/screens/Signup/BackNextButtons.tsx:59
msgid "Continue to next step"
@@ -1297,7 +1351,7 @@ msgstr "烹飪"
msgid "Copied"
msgstr "已複製"
-#: src/view/screens/Settings/index.tsx:265
+#: src/view/screens/Settings/index.tsx:233
msgid "Copied build version to clipboard"
msgstr "已複製建構版本號至剪貼簿"
@@ -1305,8 +1359,8 @@ msgstr "已複製建構版本號至剪貼簿"
#: src/view/com/modals/AddAppPasswords.tsx:80
#: src/view/com/modals/ChangeHandle.tsx:320
#: src/view/com/modals/InviteCodes.tsx:153
-#: src/view/com/util/forms/PostDropdownBtn.tsx:192
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:357
+#: src/view/com/util/forms/PostDropdownBtn.tsx:234
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:368
msgid "Copied to clipboard"
msgstr "已複製至剪貼簿"
@@ -1340,12 +1394,12 @@ msgstr "複製連結"
msgid "Copy Link"
msgstr "複製連結"
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/screens/ProfileList.tsx:484
msgid "Copy link to list"
msgstr "複製列表連結"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
msgid "Copy link to post"
msgstr "複製貼文連結"
@@ -1354,8 +1408,8 @@ msgstr "複製貼文連結"
msgid "Copy message text"
msgstr "複製訊息文字"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:288
-#: src/view/com/util/forms/PostDropdownBtn.tsx:290
+#: src/view/com/util/forms/PostDropdownBtn.tsx:388
+#: src/view/com/util/forms/PostDropdownBtn.tsx:390
msgid "Copy post text"
msgstr "複製貼文文字"
@@ -1363,15 +1417,11 @@ msgstr "複製貼文文字"
msgid "Copy QR code"
msgstr "複製 QR Code"
-#: src/Navigation.tsx:272
+#: src/Navigation.tsx:281
#: src/view/screens/CopyrightPolicy.tsx:29
msgid "Copyright Policy"
msgstr "著作權政策"
-#: src/view/com/composer/videos/state.ts:31
-msgid "Could not compress video"
-msgstr "無法壓縮影片"
-
#: src/components/dms/LeaveConvoPrompt.tsx:39
msgid "Could not leave chat"
msgstr "無法離開對話"
@@ -1380,7 +1430,7 @@ msgstr "無法離開對話"
msgid "Could not load feed"
msgstr "無法載入動態"
-#: src/view/screens/ProfileList.tsx:961
+#: src/view/screens/ProfileList.tsx:1017
msgid "Could not load list"
msgstr "無法載入列表"
@@ -1397,7 +1447,7 @@ msgstr "建立"
msgid "Create a new account"
msgstr "建立新帳號"
-#: src/view/screens/Settings/index.tsx:425
+#: src/view/screens/Settings/index.tsx:402
msgid "Create a new Bluesky account"
msgstr "建立新的 Bluesky 帳號"
@@ -1407,7 +1457,7 @@ msgstr "為入門包建立 QR Code"
#: src/components/StarterPack/ProfileStarterPacks.tsx:165
#: src/components/StarterPack/ProfileStarterPacks.tsx:259
-#: src/Navigation.tsx:351
+#: src/Navigation.tsx:368
msgid "Create a starter pack"
msgstr "選擇一個入門包"
@@ -1415,7 +1465,7 @@ msgstr "選擇一個入門包"
msgid "Create a starter pack for me"
msgstr "為我建立一個入門包"
-#: src/screens/Signup/index.tsx:88
+#: src/screens/Signup/index.tsx:99
msgid "Create Account"
msgstr "建立帳號"
@@ -1463,26 +1513,34 @@ msgstr "自訂"
msgid "Custom domain"
msgstr "自訂網域"
-#: src/view/screens/Feeds.tsx:760
-#: src/view/screens/Search/Explore.tsx:392
+#: src/view/screens/Feeds.tsx:759
+#: src/view/screens/Search/Explore.tsx:391
msgid "Custom feeds built by the community bring you new experiences and help you find the content you love."
msgstr "由社群打造的自訂動態源帶來全新體驗,幫助您找到所愛的內容。"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:56
+#: src/view/screens/PreferencesExternalEmbeds.tsx:57
msgid "Customize media from external sites."
msgstr "自訂外部網站的媒體。"
-#: src/view/screens/Settings/index.tsx:460
-#: src/view/screens/Settings/index.tsx:486
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:288
+msgid "Customize who can interact with this post."
+msgstr "自訂誰可以參與這則帖文的互動。"
+
+#: src/screens/Settings/AppearanceSettings.tsx:95
+#: src/screens/Settings/AppearanceSettings.tsx:97
+#: src/screens/Settings/AppearanceSettings.tsx:122
+#: src/screens/Settings/AppearanceSettings.tsx:124
msgid "Dark"
msgstr "深色"
+#: src/screens/Settings/AppearanceSettings.tsx:82
#: src/view/screens/Debug.tsx:63
msgid "Dark mode"
msgstr "深色模式"
-#: src/view/screens/Settings/index.tsx:473
-msgid "Dark Theme"
+#: src/screens/Settings/AppearanceSettings.tsx:109
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark theme"
msgstr "深色主題"
#: src/screens/Signup/StepInfo/index.tsx:191
@@ -1490,15 +1548,15 @@ msgid "Date of birth"
msgstr "出生日期"
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
-#: src/view/screens/Settings/index.tsx:808
+#: src/view/screens/Settings/index.tsx:772
msgid "Deactivate account"
msgstr "停用帳號"
-#: src/view/screens/Settings/index.tsx:820
+#: src/view/screens/Settings/index.tsx:784
msgid "Deactivate my account"
msgstr "停用我的帳號"
-#: src/view/screens/Settings/index.tsx:875
+#: src/view/screens/Settings/index.tsx:839
msgid "Debug Moderation"
msgstr "內容管理偵錯"
@@ -1507,16 +1565,16 @@ msgid "Debug panel"
msgstr "偵錯面板"
#: src/components/dms/MessageMenu.tsx:151
-#: src/screens/StarterPack/StarterPackScreen.tsx:562
-#: src/screens/StarterPack/StarterPackScreen.tsx:641
-#: src/screens/StarterPack/StarterPackScreen.tsx:721
-#: src/view/com/util/forms/PostDropdownBtn.tsx:436
+#: src/screens/StarterPack/StarterPackScreen.tsx:573
+#: src/screens/StarterPack/StarterPackScreen.tsx:652
+#: src/screens/StarterPack/StarterPackScreen.tsx:732
+#: src/view/com/util/forms/PostDropdownBtn.tsx:629
#: src/view/screens/AppPasswords.tsx:285
-#: src/view/screens/ProfileList.tsx:667
+#: src/view/screens/ProfileList.tsx:723
msgid "Delete"
msgstr "刪除"
-#: src/view/screens/Settings/index.tsx:830
+#: src/view/screens/Settings/index.tsx:794
msgid "Delete account"
msgstr "刪除帳號"
@@ -1532,8 +1590,8 @@ msgstr "刪除應用程式專用密碼"
msgid "Delete app password?"
msgstr "刪除應用程式專用密碼?"
-#: src/view/screens/Settings/index.tsx:892
-#: src/view/screens/Settings/index.tsx:895
+#: src/view/screens/Settings/index.tsx:856
+#: src/view/screens/Settings/index.tsx:859
msgid "Delete chat declaration record"
msgstr "刪除對話聲明紀錄"
@@ -1541,7 +1599,7 @@ msgstr "刪除對話聲明紀錄"
msgid "Delete for me"
msgstr "為我刪除"
-#: src/view/screens/ProfileList.tsx:471
+#: src/view/screens/ProfileList.tsx:527
msgid "Delete List"
msgstr "刪除列表"
@@ -1557,41 +1615,41 @@ msgstr "為我刪除訊息"
msgid "Delete my account"
msgstr "刪除我的帳號"
-#: src/view/screens/Settings/index.tsx:842
+#: src/view/screens/Settings/index.tsx:806
msgid "Delete My Account…"
msgstr "刪除我的帳號…"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:417
-#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/forms/PostDropdownBtn.tsx:609
+#: src/view/com/util/forms/PostDropdownBtn.tsx:611
msgid "Delete post"
msgstr "刪除貼文"
-#: src/screens/StarterPack/StarterPackScreen.tsx:556
-#: src/screens/StarterPack/StarterPackScreen.tsx:712
+#: src/screens/StarterPack/StarterPackScreen.tsx:567
+#: src/screens/StarterPack/StarterPackScreen.tsx:723
msgid "Delete starter pack"
msgstr "刪除入門包"
-#: src/screens/StarterPack/StarterPackScreen.tsx:607
+#: src/screens/StarterPack/StarterPackScreen.tsx:618
msgid "Delete starter pack?"
msgstr "刪除入門包?"
-#: src/view/screens/ProfileList.tsx:662
+#: src/view/screens/ProfileList.tsx:718
msgid "Delete this list?"
msgstr "刪除此列表?"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:431
+#: src/view/com/util/forms/PostDropdownBtn.tsx:624
msgid "Delete this post?"
msgstr "刪除這條貼文?"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:84
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:85
msgid "Deleted"
msgstr "已刪除"
-#: src/view/com/post-thread/PostThread.tsx:353
+#: src/view/com/post-thread/PostThread.tsx:398
msgid "Deleted post."
msgstr "已刪除的貼文。"
-#: src/view/screens/Settings/index.tsx:893
+#: src/view/screens/Settings/index.tsx:857
msgid "Deletes the chat declaration record"
msgstr "刪除對話聲明紀錄"
@@ -1606,11 +1664,25 @@ msgstr "描述"
msgid "Descriptive alt text"
msgstr "生動的替代文字"
-#: src/view/com/composer/Composer.tsx:295
+#: src/view/com/util/forms/PostDropdownBtn.tsx:544
+#: src/view/com/util/forms/PostDropdownBtn.tsx:554
+msgid "Detach quote"
+msgstr "分離引用"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:687
+msgid "Detach quote post?"
+msgstr "分離這則帖文的引用?"
+
+#: src/components/WhoCanReply.tsx:175
+msgid "Dialog: adjust who can interact with this post"
+msgstr "對話框:自訂誰可以參與這則帖文的互動"
+
+#: src/view/com/composer/Composer.tsx:327
msgid "Did you want to say anything?"
msgstr "有什麼想說的嗎?"
-#: src/view/screens/Settings/index.tsx:479
+#: src/screens/Settings/AppearanceSettings.tsx:117
+#: src/screens/Settings/AppearanceSettings.tsx:119
msgid "Dim"
msgstr "昏暗"
@@ -1618,7 +1690,7 @@ msgstr "昏暗"
msgid "Direct messages are here!"
msgstr "私人訊息已推出!"
-#: src/view/screens/AccessibilitySettings.tsx:107
+#: src/view/screens/AccessibilitySettings.tsx:111
msgid "Disable autoplay for GIFs"
msgstr "關閉 GIF 自動播放"
@@ -1626,29 +1698,33 @@ msgstr "關閉 GIF 自動播放"
msgid "Disable Email 2FA"
msgstr "關閉電子郵件雙重驗證"
-#: src/view/screens/AccessibilitySettings.tsx:121
+#: src/view/screens/AccessibilitySettings.tsx:125
msgid "Disable haptic feedback"
msgstr "關閉觸覺回饋"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Disable subtitles"
+msgstr "停用字幕"
+
#: src/lib/moderation/useLabelBehaviorDescription.ts:32
#: src/lib/moderation/useLabelBehaviorDescription.ts:42
#: src/lib/moderation/useLabelBehaviorDescription.ts:68
#: src/screens/Messages/Settings.tsx:140
#: src/screens/Messages/Settings.tsx:143
-#: src/screens/Moderation/index.tsx:346
+#: src/screens/Moderation/index.tsx:355
msgid "Disabled"
msgstr "停用"
-#: src/view/com/composer/Composer.tsx:682
+#: src/view/com/composer/Composer.tsx:774
msgid "Discard"
msgstr "捨棄"
-#: src/view/com/composer/Composer.tsx:679
+#: src/view/com/composer/Composer.tsx:771
msgid "Discard draft?"
msgstr "捨棄草稿?"
-#: src/screens/Moderation/index.tsx:542
-#: src/screens/Moderation/index.tsx:546
+#: src/screens/Moderation/index.tsx:552
+#: src/screens/Moderation/index.tsx:556
msgid "Discourage apps from showing my account to logged-out users"
msgstr "阻撓應用程式向未登入用戶顯示我的帳號"
@@ -1661,19 +1737,27 @@ msgstr "「Discover」動態源會在您瀏覽時瞭解您喜歡哪些貼文。"
msgid "Discover new custom feeds"
msgstr "探索新的自訂動態源"
-#: src/view/screens/Search/Explore.tsx:390
+#: src/view/screens/Search/Explore.tsx:389
msgid "Discover new feeds"
msgstr "探索新的動態源"
-#: src/view/screens/Feeds.tsx:757
+#: src/view/screens/Feeds.tsx:756
msgid "Discover New Feeds"
msgstr "探索新的動態源"
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:108
+msgid "Dismiss"
+msgstr "跳過"
+
+#: src/view/com/composer/Composer.tsx:612
+msgid "Dismiss error"
+msgstr "跳過錯誤"
+
#: src/components/ProgressGuide/List.tsx:40
msgid "Dismiss getting started guide"
msgstr "跳過入門指南"
-#: src/view/screens/AccessibilitySettings.tsx:95
+#: src/view/screens/AccessibilitySettings.tsx:99
msgid "Display larger alt text badges"
msgstr "顯示較大的替代文字標誌"
@@ -1689,11 +1773,15 @@ msgstr "顯示名稱"
msgid "DNS Panel"
msgstr "DNS 控制台"
+#: src/components/dialogs/MutedWords.tsx:302
+msgid "Do not apply this mute word to users you follow"
+msgstr "不要對已跟隨的用戶使用此靜音詞彙"
+
#: src/lib/moderation/useGlobalLabelStrings.ts:39
msgid "Does not include nudity."
msgstr "不包含裸露內容。"
-#: src/screens/Signup/StepHandle.tsx:156
+#: src/screens/Signup/StepHandle.tsx:157
msgid "Doesn't begin or end with a hyphen"
msgstr "不以連字符開頭或結尾"
@@ -1707,7 +1795,6 @@ msgstr "網域已驗證!"
#: src/components/dialogs/BirthDateSettings.tsx:119
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
#: src/components/forms/DateField/index.tsx:77
#: src/components/forms/DateField/index.tsx:83
#: src/screens/Onboarding/StepProfile/index.tsx:322
@@ -1726,8 +1813,8 @@ msgstr "完成"
#: src/view/com/modals/EditImage.tsx:334
#: src/view/com/modals/ListAddRemoveUsers.tsx:145
#: src/view/com/modals/SelfLabel.tsx:158
-#: src/view/com/modals/UserAddRemoveLists.tsx:108
-#: src/view/com/modals/UserAddRemoveLists.tsx:111
+#: src/view/com/modals/UserAddRemoveLists.tsx:107
+#: src/view/com/modals/UserAddRemoveLists.tsx:110
msgctxt "action"
msgid "Done"
msgstr "完成"
@@ -1736,7 +1823,7 @@ msgstr "完成"
msgid "Done{extraText}"
msgstr "完成{extraText}"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:324
msgid "Download Bluesky"
msgstr "下載 Bluesky"
@@ -1749,6 +1836,10 @@ msgstr "下載 CAR 檔案"
msgid "Drop to add images"
msgstr "拖放即可新增圖片"
+#: src/components/dialogs/MutedWords.tsx:153
+msgid "Duration:"
+msgstr "持續時間:"
+
#: src/view/com/modals/ChangeHandle.tsx:252
msgid "e.g. alice"
msgstr "例如:alice"
@@ -1789,11 +1880,11 @@ msgstr "例如:多次張貼廣告的用戶。"
msgid "Each code works once. You'll receive more invite codes periodically."
msgstr "每個邀請碼僅能使用一次。您將定期收到更多的邀請碼。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:551
+#: src/screens/StarterPack/StarterPackScreen.tsx:562
#: src/screens/StarterPack/Wizard/index.tsx:551
#: src/screens/StarterPack/Wizard/index.tsx:558
-#: src/view/screens/Feeds.tsx:386
-#: src/view/screens/Feeds.tsx:454
+#: src/view/screens/Feeds.tsx:385
+#: src/view/screens/Feeds.tsx:453
msgid "Edit"
msgstr "編輯"
@@ -1802,12 +1893,12 @@ msgctxt "action"
msgid "Edit"
msgstr "編輯"
-#: src/view/com/util/UserAvatar.tsx:337
+#: src/view/com/util/UserAvatar.tsx:328
#: src/view/com/util/UserBanner.tsx:92
msgid "Edit avatar"
msgstr "編輯頭像"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:119
msgid "Edit Feeds"
msgstr "編輯動態源"
@@ -1816,7 +1907,12 @@ msgstr "編輯動態源"
msgid "Edit image"
msgstr "編輯圖片"
-#: src/view/screens/ProfileList.tsx:459
+#: src/view/com/util/forms/PostDropdownBtn.tsx:590
+#: src/view/com/util/forms/PostDropdownBtn.tsx:603
+msgid "Edit interaction settings"
+msgstr "編輯「互動設定」"
+
+#: src/view/screens/ProfileList.tsx:515
msgid "Edit list details"
msgstr "編輯列表詳情"
@@ -1824,10 +1920,10 @@ msgstr "編輯列表詳情"
msgid "Edit Moderation List"
msgstr "編輯內容管理列表"
-#: src/Navigation.tsx:282
-#: src/view/screens/Feeds.tsx:384
-#: src/view/screens/Feeds.tsx:452
-#: src/view/screens/SavedFeeds.tsx:93
+#: src/Navigation.tsx:291
+#: src/view/screens/Feeds.tsx:383
+#: src/view/screens/Feeds.tsx:451
+#: src/view/screens/SavedFeeds.tsx:92
msgid "Edit My Feeds"
msgstr "編輯我的動態源"
@@ -1835,10 +1931,15 @@ msgstr "編輯我的動態源"
msgid "Edit my profile"
msgstr "編輯我的個人檔案"
-#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117
msgid "Edit People"
msgstr "編輯人物"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:66
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:204
+msgid "Edit post interaction settings"
+msgstr "編輯「貼文互動設定」"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179
msgid "Edit profile"
@@ -1849,7 +1950,7 @@ msgstr "編輯個人檔案"
msgid "Edit Profile"
msgstr "編輯個人檔案"
-#: src/screens/StarterPack/StarterPackScreen.tsx:543
+#: src/screens/StarterPack/StarterPackScreen.tsx:554
msgid "Edit starter pack"
msgstr "編輯入門包"
@@ -1857,7 +1958,7 @@ msgstr "編輯入門包"
msgid "Edit User List"
msgstr "編輯用戶列表"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Edit who can reply"
msgstr "編輯「誰可以回覆」"
@@ -1869,7 +1970,7 @@ msgstr "編輯您的顯示名稱"
msgid "Edit your profile description"
msgstr "編輯您的帳號描述"
-#: src/Navigation.tsx:356
+#: src/Navigation.tsx:373
msgid "Edit your starter pack"
msgstr "編輯您的入門包"
@@ -1878,10 +1979,6 @@ msgstr "編輯您的入門包"
msgid "Education"
msgstr "教育"
-#: src/components/dialogs/ThreadgateEditor.tsx:98
-msgid "Either choose \"Everybody\" or \"Nobody\""
-msgstr "選擇「所有人」或「沒有人」"
-
#: src/screens/Signup/StepInfo/index.tsx:143
#: src/view/com/modals/ChangeEmail.tsx:136
msgid "Email"
@@ -1908,7 +2005,7 @@ msgstr "電子郵件已更新"
msgid "Email verified"
msgstr "電子郵件已驗證"
-#: src/view/screens/Settings/index.tsx:351
+#: src/view/screens/Settings/index.tsx:319
msgid "Email:"
msgstr "電子郵件:"
@@ -1917,8 +2014,8 @@ msgid "Embed HTML code"
msgstr "嵌入 HTML 程式碼"
#: src/components/dialogs/Embed.tsx:97
-#: src/view/com/util/forms/PostDropdownBtn.tsx:327
-#: src/view/com/util/forms/PostDropdownBtn.tsx:329
+#: src/view/com/util/forms/PostDropdownBtn.tsx:427
+#: src/view/com/util/forms/PostDropdownBtn.tsx:429
msgid "Embed post"
msgstr "嵌入貼文"
@@ -1930,7 +2027,7 @@ msgstr "將這則貼文嵌入到您的網站。只需複製以下程式碼片段
msgid "Enable {0} only"
msgstr "僅啟用 {0}"
-#: src/screens/Moderation/index.tsx:333
+#: src/screens/Moderation/index.tsx:342
msgid "Enable adult content"
msgstr "顯示成人內容"
@@ -1939,18 +2036,18 @@ msgstr "顯示成人內容"
msgid "Enable external media"
msgstr "啟用外部媒體"
-#: src/view/screens/PreferencesExternalEmbeds.tsx:73
+#: src/view/screens/PreferencesExternalEmbeds.tsx:74
msgid "Enable media players for"
msgstr "啟用媒體播放器"
#: src/view/screens/NotificationsSettings.tsx:65
#: src/view/screens/NotificationsSettings.tsx:68
msgid "Enable priority notifications"
-msgstr ""
+msgstr "啟用優先通知"
-#: src/view/screens/PreferencesFollowingFeed.tsx:145
-msgid "Enable this setting to only see replies between people you follow."
-msgstr "啟用此設定將只顯示您跟隨的人之間的回覆。"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:242
+msgid "Enable subtitles"
+msgstr "啟用字幕"
#: src/components/dialogs/EmbedConsent.tsx:94
msgid "Enable this source only"
@@ -1958,11 +2055,11 @@ msgstr "僅啟用此來源"
#: src/screens/Messages/Settings.tsx:131
#: src/screens/Messages/Settings.tsx:134
-#: src/screens/Moderation/index.tsx:344
+#: src/screens/Moderation/index.tsx:353
msgid "Enabled"
msgstr "啟用"
-#: src/screens/Profile/Sections/Feed.tsx:104
+#: src/screens/Profile/Sections/Feed.tsx:105
msgid "End of feed"
msgstr "已經到底部啦!"
@@ -1978,8 +2075,8 @@ msgstr "輸入此應用程式專用密碼的名稱"
msgid "Enter a password"
msgstr "輸入密碼"
-#: src/components/dialogs/MutedWords.tsx:99
-#: src/components/dialogs/MutedWords.tsx:100
+#: src/components/dialogs/MutedWords.tsx:127
+#: src/components/dialogs/MutedWords.tsx:128
msgid "Enter a word or tag"
msgstr "輸入文字或標籤"
@@ -2024,25 +2121,27 @@ msgstr "輸入您的用戶名稱和密碼"
msgid "Error occurred while saving file"
msgstr "儲存檔案時發生錯誤"
-#: src/screens/Signup/StepCaptcha/index.tsx:54
+#: src/screens/Signup/StepCaptcha/index.tsx:57
msgid "Error receiving captcha response."
msgstr "Captcha 給出了錯誤的回應。"
-#: src/screens/Onboarding/StepInterests/index.tsx:216
+#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/view/screens/Search/Search.tsx:116
msgid "Error:"
msgstr "錯誤:"
-#: src/components/dialogs/ThreadgateEditor.tsx:102
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:364
msgid "Everybody"
msgstr "所有人"
-#: src/components/WhoCanReply.tsx:69
-#: src/components/WhoCanReply.tsx:241
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44
+#: src/components/WhoCanReply.tsx:67
msgid "Everybody can reply"
msgstr "所有人都可以回覆"
+#: src/components/WhoCanReply.tsx:213
+msgid "Everybody can reply to this post."
+msgstr "所有人都可以回覆這則貼文。"
+
#: src/components/dms/MessagesNUX.tsx:131
#: src/components/dms/MessagesNUX.tsx:134
#: src/screens/Messages/Settings.tsx:75
@@ -2058,6 +2157,14 @@ msgstr "過多的提及或回覆"
msgid "Excessive or unwanted messages"
msgstr "過多或不受歡迎的訊息"
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Exclude users you follow"
+msgstr "排除已跟隨的用戶"
+
+#: src/components/dialogs/MutedWords.tsx:514
+msgid "Excludes users you follow"
+msgstr "排除已跟隨的用戶"
+
#: src/view/com/modals/DeleteAccount.tsx:293
msgid "Exits account deletion process"
msgstr "離開刪除帳號流程"
@@ -2075,7 +2182,6 @@ msgid "Exits image view"
msgstr "離開圖片檢視器"
#: src/view/com/modals/ListAddRemoveUsers.tsx:89
-#: src/view/shell/desktop/Search.tsx:216
msgid "Exits inputting search query"
msgstr "退出輸入搜索查詢"
@@ -2083,7 +2189,7 @@ msgstr "退出輸入搜索查詢"
msgid "Expand alt text"
msgstr "展開替代文字"
-#: src/view/com/notifications/FeedItem.tsx:239
+#: src/view/com/notifications/FeedItem.tsx:270
msgid "Expand list of users"
msgstr "展開用戶清單"
@@ -2094,7 +2200,15 @@ msgstr "展開或摺疊您正在回覆的完整貼文"
#: src/view/screens/NotificationsSettings.tsx:83
msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time."
-msgstr ""
+msgstr "實驗性選項:啟用此偏好設定後,您將僅收到來自您已跟隨用戶的回覆和引用通知。我們將陸續在此新增更多控制選項。"
+
+#: src/components/dialogs/MutedWords.tsx:500
+msgid "Expired"
+msgstr "已過期"
+
+#: src/components/dialogs/MutedWords.tsx:502
+msgid "Expires {0}"
+msgstr "已過期 {0}"
#: src/lib/moderation/useGlobalLabelStrings.ts:47
msgid "Explicit or potentially disturbing media."
@@ -2104,12 +2218,12 @@ msgstr "露骨或可能令人不安的媒體內容。"
msgid "Explicit sexual images."
msgstr "露骨的色情圖片。"
-#: src/view/screens/Settings/index.tsx:788
+#: src/view/screens/Settings/index.tsx:752
msgid "Export my data"
msgstr "匯出我的資料"
#: src/view/screens/Settings/ExportCarDialog.tsx:62
-#: src/view/screens/Settings/index.tsx:799
+#: src/view/screens/Settings/index.tsx:763
msgid "Export My Data"
msgstr "匯出我的資料"
@@ -2119,17 +2233,17 @@ msgid "External Media"
msgstr "外部媒體"
#: src/components/dialogs/EmbedConsent.tsx:71
-#: src/view/screens/PreferencesExternalEmbeds.tsx:64
+#: src/view/screens/PreferencesExternalEmbeds.tsx:65
msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button."
msgstr "外部媒體可能允許網站收集有關您和您裝置的資料。在您按下「播放」按鈕之前,不會傳送或請求任何資料。"
-#: src/Navigation.tsx:301
-#: src/view/screens/PreferencesExternalEmbeds.tsx:53
-#: src/view/screens/Settings/index.tsx:681
+#: src/Navigation.tsx:310
+#: src/view/screens/PreferencesExternalEmbeds.tsx:54
+#: src/view/screens/Settings/index.tsx:645
msgid "External Media Preferences"
msgstr "外部媒體偏好"
-#: src/view/screens/Settings/index.tsx:672
+#: src/view/screens/Settings/index.tsx:636
msgid "External media settings"
msgstr "外部媒體設定"
@@ -2138,8 +2252,8 @@ msgstr "外部媒體設定"
msgid "Failed to create app password."
msgstr "無法建立應用程式專用密碼。"
-#: src/screens/StarterPack/Wizard/index.tsx:230
-#: src/screens/StarterPack/Wizard/index.tsx:238
+#: src/screens/StarterPack/Wizard/index.tsx:229
+#: src/screens/StarterPack/Wizard/index.tsx:237
msgid "Failed to create starter pack"
msgstr "無法建立入門包"
@@ -2151,16 +2265,16 @@ msgstr "無法建立列表。請檢查您的網路連線並重試。"
msgid "Failed to delete message"
msgstr "無法刪除訊息"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:152
+#: src/view/com/util/forms/PostDropdownBtn.tsx:194
msgid "Failed to delete post, please try again"
msgstr "無法刪除貼文,請再試一次"
-#: src/screens/StarterPack/StarterPackScreen.tsx:675
+#: src/screens/StarterPack/StarterPackScreen.tsx:686
msgid "Failed to delete starter pack"
msgstr "無法刪除入門包"
-#: src/view/screens/Search/Explore.tsx:428
-#: src/view/screens/Search/Explore.tsx:456
+#: src/view/screens/Search/Explore.tsx:427
+#: src/view/screens/Search/Explore.tsx:455
msgid "Failed to load feeds preferences"
msgstr "無法載入動態源偏好"
@@ -2173,12 +2287,12 @@ msgstr "無法載入 GIF"
msgid "Failed to load past messages"
msgstr "無法載入過去的訊息"
-#: src/view/screens/Search/Explore.tsx:421
-#: src/view/screens/Search/Explore.tsx:449
+#: src/view/screens/Search/Explore.tsx:420
+#: src/view/screens/Search/Explore.tsx:448
msgid "Failed to load suggested feeds"
msgstr "無法載入建議的動態源"
-#: src/view/screens/Search/Explore.tsx:379
+#: src/view/screens/Search/Explore.tsx:378
msgid "Failed to load suggested follows"
msgstr "無法載入建議的跟隨者"
@@ -2188,22 +2302,22 @@ msgstr "無法儲存圖片:{0}"
#: src/state/queries/notifications/settings.ts:39
msgid "Failed to save notification preferences, please try again"
-msgstr ""
+msgstr "無法儲存通知偏好設定,請再試一次"
#: src/components/dms/MessageItem.tsx:224
msgid "Failed to send"
msgstr "無法傳送"
-#: src/components/moderation/LabelsOnMeDialog.tsx:244
+#: src/components/moderation/LabelsOnMeDialog.tsx:234
#: src/screens/Messages/Conversation/ChatDisabled.tsx:87
msgid "Failed to submit appeal, please try again."
msgstr "無法提交申訴,請再試一次。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:181
+#: src/view/com/util/forms/PostDropdownBtn.tsx:223
msgid "Failed to toggle thread mute, please try again"
msgstr "無法將討論串設為靜音,請再試一次"
-#: src/components/FeedCard.tsx:269
+#: src/components/FeedCard.tsx:273
msgid "Failed to update feeds"
msgstr "無法更新動態"
@@ -2212,12 +2326,12 @@ msgstr "無法更新動態"
msgid "Failed to update settings"
msgstr "無法更新設定"
-#: src/Navigation.tsx:217
+#: src/Navigation.tsx:226
msgid "Feed"
msgstr "動態"
-#: src/components/FeedCard.tsx:127
-#: src/view/com/feeds/FeedSourceCard.tsx:251
+#: src/components/FeedCard.tsx:131
+#: src/view/com/feeds/FeedSourceCard.tsx:250
msgid "Feed by {0}"
msgstr "{0} 建立的動態源"
@@ -2226,27 +2340,27 @@ msgid "Feed toggle"
msgstr "切換動態源"
#: src/view/shell/desktop/RightNav.tsx:70
-#: src/view/shell/Drawer.tsx:332
+#: src/view/shell/Drawer.tsx:346
msgid "Feedback"
msgstr "意見回饋"
-#: src/Navigation.tsx:336
-#: src/screens/StarterPack/StarterPackScreen.tsx:171
-#: src/view/screens/Feeds.tsx:446
-#: src/view/screens/Feeds.tsx:551
+#: src/Navigation.tsx:353
+#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/view/screens/Feeds.tsx:445
+#: src/view/screens/Feeds.tsx:550
#: src/view/screens/Profile.tsx:213
#: src/view/screens/Search/Search.tsx:375
#: src/view/shell/desktop/LeftNav.tsx:379
-#: src/view/shell/Drawer.tsx:483
-#: src/view/shell/Drawer.tsx:484
+#: src/view/shell/Drawer.tsx:497
+#: src/view/shell/Drawer.tsx:498
msgid "Feeds"
msgstr "動態源"
-#: src/view/screens/SavedFeeds.tsx:180
+#: src/view/screens/SavedFeeds.tsx:181
msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information."
msgstr "動態源是一種自訂演算法,使用者只需掌握一點開發技巧即可輕鬆構建。更多資訊請<0/>。"
-#: src/components/FeedCard.tsx:266
+#: src/components/FeedCard.tsx:270
msgid "Feeds updated!"
msgstr "動態已更新!"
@@ -2262,7 +2376,7 @@ msgstr "文件儲存成功!"
msgid "Filter from feeds"
msgstr "動態源中的篩選"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
msgid "Finalizing"
msgstr "正在完成"
@@ -2280,7 +2394,7 @@ msgstr "在探索頁面中尋找更多想要跟隨的動態源和帳號。"
msgid "Find posts and users on Bluesky"
msgstr "在 Bluesky 上尋找貼文和用戶"
-#: src/view/screens/PreferencesFollowingFeed.tsx:108
+#: src/view/screens/PreferencesFollowingFeed.tsx:51
msgid "Fine-tune the content you see on your Following feed."
msgstr "調整您在「Following」動態源中所看到的內容。"
@@ -2288,7 +2402,7 @@ msgstr "調整您在「Following」動態源中所看到的內容。"
msgid "Fine-tune the discussion threads."
msgstr "微調討論串。"
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Finish"
msgstr "完成"
@@ -2300,7 +2414,7 @@ msgstr "完成導覽並開始使用程式"
msgid "Fitness"
msgstr "健康"
-#: src/screens/Onboarding/StepFinished.tsx:277
+#: src/screens/Onboarding/StepFinished.tsx:280
msgid "Flexible"
msgstr "靈活"
@@ -2314,12 +2428,11 @@ msgid "Flip vertically"
msgstr "垂直翻轉"
#. User is not following this account, click to follow
-#: src/components/ProfileCard.tsx:343
+#: src/components/ProfileCard.tsx:351
#: src/components/ProfileHoverCard/index.web.tsx:446
#: src/components/ProfileHoverCard/index.web.tsx:457
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:146
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
msgid "Follow"
msgstr "跟隨"
@@ -2333,7 +2446,7 @@ msgstr "跟隨"
msgid "Follow {0}"
msgstr "跟隨 {0}"
-#: src/view/com/posts/AviFollowButton.tsx:71
+#: src/view/com/posts/AviFollowButton.tsx:69
msgid "Follow {name}"
msgstr "跟隨 {name}"
@@ -2346,8 +2459,8 @@ msgstr "跟隨 7 個帳號"
msgid "Follow Account"
msgstr "跟隨帳號"
-#: src/screens/StarterPack/StarterPackScreen.tsx:405
-#: src/screens/StarterPack/StarterPackScreen.tsx:412
+#: src/screens/StarterPack/StarterPackScreen.tsx:416
+#: src/screens/StarterPack/StarterPackScreen.tsx:423
msgid "Follow all"
msgstr "全部跟隨"
@@ -2355,7 +2468,7 @@ msgstr "全部跟隨"
msgid "Follow Back"
msgstr "回跟"
-#: src/view/screens/Search/Explore.tsx:335
+#: src/view/screens/Search/Explore.tsx:334
msgid "Follow more accounts to get connected to your interests and build your network."
msgstr "跟隨更多帳號以瞭解您的興趣,並建立您的社群網路。"
@@ -2375,19 +2488,15 @@ msgstr "已被您跟隨的 <0>{0}0> 和 <1>{1}1> 跟隨"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "已被您跟隨的 <0>{0}0>, <1>{1}1> 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}"
-#: src/components/dialogs/ThreadgateEditor.tsx:124
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:403
msgid "Followed users"
msgstr "您跟隨的用戶"
-#: src/view/screens/PreferencesFollowingFeed.tsx:152
-msgid "Followed users only"
-msgstr "僅限已跟隨的用戶"
-
-#: src/view/com/notifications/FeedItem.tsx:198
+#: src/view/com/notifications/FeedItem.tsx:211
msgid "followed you"
msgstr "已跟隨您"
-#: src/view/com/notifications/FeedItem.tsx:196
+#: src/view/com/notifications/FeedItem.tsx:209
msgid "followed you back"
msgstr "已回跟您"
@@ -2396,7 +2505,7 @@ msgstr "已回跟您"
msgid "Followers"
msgstr "跟隨者"
-#: src/Navigation.tsx:185
+#: src/Navigation.tsx:187
msgid "Followers of @{0} that you know"
msgstr "您所認識的這些人也跟隨了 @{0}"
@@ -2406,34 +2515,34 @@ msgid "Followers you know"
msgstr "您也認識的跟隨者"
#. User is following this account, click to unfollow
-#: src/components/ProfileCard.tsx:337
+#: src/components/ProfileCard.tsx:345
#: src/components/ProfileHoverCard/index.web.tsx:445
#: src/components/ProfileHoverCard/index.web.tsx:456
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250
#: src/view/com/post-thread/PostThreadFollowBtn.tsx:149
#: src/view/com/profile/ProfileFollows.tsx:104
-#: src/view/screens/Feeds.tsx:631
+#: src/view/screens/Feeds.tsx:630
#: src/view/screens/ProfileFollows.tsx:25
-#: src/view/screens/SavedFeeds.tsx:415
+#: src/view/screens/SavedFeeds.tsx:416
msgid "Following"
msgstr "跟隨中"
-#: src/components/ProfileCard.tsx:303
+#: src/components/ProfileCard.tsx:311
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98
msgid "Following {0}"
msgstr "已跟隨 {0}"
-#: src/view/com/posts/AviFollowButton.tsx:53
+#: src/view/com/posts/AviFollowButton.tsx:51
msgid "Following {name}"
msgstr "已跟隨 {name}"
-#: src/view/screens/Settings/index.tsx:575
+#: src/view/screens/Settings/index.tsx:539
msgid "Following feed preferences"
msgstr "「Following」動態源偏好"
-#: src/Navigation.tsx:288
-#: src/view/screens/PreferencesFollowingFeed.tsx:105
-#: src/view/screens/Settings/index.tsx:584
+#: src/Navigation.tsx:297
+#: src/view/screens/PreferencesFollowingFeed.tsx:48
+#: src/view/screens/Settings/index.tsx:548
msgid "Following Feed Preferences"
msgstr "「Following」動態源偏好"
@@ -2445,7 +2554,7 @@ msgstr "「Following」動態源顯示您跟隨用戶的最新貼文。"
msgid "Follows you"
msgstr "跟隨您"
-#: src/components/Pills.tsx:165
+#: src/components/Pills.tsx:174
msgid "Follows You"
msgstr "跟隨您"
@@ -2462,6 +2571,10 @@ msgstr "為了保護您的帳號安全,我們需要將驗證碼發送到您的
msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one."
msgstr "為了保護您的帳號安全,您將無法再次查看此內容。如果您丟失了此密碼,您將需要再產生一個新的密碼。"
+#: src/components/dialogs/MutedWords.tsx:178
+msgid "Forever"
+msgstr "永遠"
+
#: src/screens/Login/index.tsx:129
#: src/screens/Login/index.tsx:144
msgid "Forgot Password"
@@ -2483,7 +2596,7 @@ msgstr "頻繁發佈不當內容"
msgid "From @{sanitizedAuthor}"
msgstr "來自 @{sanitizedAuthor}"
-#: src/view/com/posts/FeedItem.tsx:242
+#: src/view/com/posts/FeedItem.tsx:273
msgctxt "from-feed"
msgid "From <0/>"
msgstr "來自 <0/>"
@@ -2496,7 +2609,7 @@ msgstr "相簿"
msgid "Generate a starter pack"
msgstr "建立入門包"
-#: src/view/shell/Drawer.tsx:336
+#: src/view/shell/Drawer.tsx:350
msgid "Get help"
msgstr "取得幫助"
@@ -2525,37 +2638,38 @@ msgstr "為您的個人檔案增添新顏"
msgid "Glaring violations of law or terms of service"
msgstr "明顯違反法律或服務條款"
-#: src/components/moderation/ScreenHider.tsx:151
#: src/components/moderation/ScreenHider.tsx:160
-#: src/view/com/auth/LoggedOut.tsx:80
-#: src/view/com/auth/LoggedOut.tsx:81
+#: src/components/moderation/ScreenHider.tsx:169
+#: src/view/com/auth/LoggedOut.tsx:67
+#: src/view/com/auth/LoggedOut.tsx:68
#: src/view/screens/NotFound.tsx:55
#: src/view/screens/ProfileFeed.tsx:112
-#: src/view/screens/ProfileList.tsx:970
+#: src/view/screens/ProfileList.tsx:1026
#: src/view/shell/desktop/LeftNav.tsx:134
msgid "Go back"
msgstr "返回"
-#: src/components/Error.tsx:103
+#: src/components/Error.tsx:79
+#: src/screens/List/ListHiddenScreen.tsx:210
#: src/screens/Profile/ErrorState.tsx:62
#: src/screens/Profile/ErrorState.tsx:66
-#: src/screens/StarterPack/StarterPackScreen.tsx:734
+#: src/screens/StarterPack/StarterPackScreen.tsx:745
#: src/view/screens/NotFound.tsx:54
#: src/view/screens/ProfileFeed.tsx:117
-#: src/view/screens/ProfileList.tsx:975
+#: src/view/screens/ProfileList.tsx:1031
msgid "Go Back"
msgstr "返回"
#: src/components/dms/ReportDialog.tsx:154
#: src/components/ReportDialog/SelectReportOptionView.tsx:80
-#: src/components/ReportDialog/SubmitView.tsx:121
+#: src/components/ReportDialog/SubmitView.tsx:108
#: src/screens/Onboarding/Layout.tsx:102
#: src/screens/Onboarding/Layout.tsx:191
#: src/screens/Signup/BackNextButtons.tsx:34
msgid "Go back to previous step"
msgstr "返回上一步"
-#: src/screens/StarterPack/Wizard/index.tsx:300
+#: src/screens/StarterPack/Wizard/index.tsx:299
msgid "Go back to the previous step"
msgstr "返回上一步"
@@ -2592,7 +2706,7 @@ msgstr "前往用戶的個人檔案"
msgid "Graphic Media"
msgstr "敏感媒體"
-#: src/state/shell/progress-guide.tsx:166
+#: src/state/shell/progress-guide.tsx:161
msgid "Half way there!"
msgstr "已經完成一半了!"
@@ -2600,7 +2714,7 @@ msgstr "已經完成一半了!"
msgid "Handle"
msgstr "帳號代碼"
-#: src/view/screens/AccessibilitySettings.tsx:116
+#: src/view/screens/AccessibilitySettings.tsx:120
msgid "Haptics"
msgstr "觸覺"
@@ -2608,7 +2722,7 @@ msgstr "觸覺"
msgid "Harassment, trolling, or intolerance"
msgstr "騷擾、惡作劇或其他無法容忍的行為"
-#: src/Navigation.tsx:316
+#: src/Navigation.tsx:333
msgid "Hashtag"
msgstr "標籤"
@@ -2616,12 +2730,12 @@ msgstr "標籤"
msgid "Hashtag: #{tag}"
msgstr "標籤:#{tag}"
-#: src/screens/Signup/index.tsx:167
+#: src/screens/Signup/index.tsx:178
msgid "Having trouble?"
msgstr "遇到問題?"
#: src/view/shell/desktop/RightNav.tsx:99
-#: src/view/shell/Drawer.tsx:345
+#: src/view/shell/Drawer.tsx:359
msgid "Help"
msgstr "幫助"
@@ -2633,6 +2747,10 @@ msgstr "透過上傳圖片或建立頭像來幫助人們知道您不是機器人
msgid "Here is your app password."
msgstr "這是您的應用程式專用密碼。"
+#: src/components/ListCard.tsx:128
+msgid "Hidden list"
+msgstr "隱藏列表"
+
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:134
#: src/components/moderation/PostHider.tsx:122
@@ -2640,30 +2758,45 @@ msgstr "這是您的應用程式專用密碼。"
#: src/lib/moderation/useLabelBehaviorDescription.ts:20
#: src/lib/moderation/useLabelBehaviorDescription.ts:25
#: src/lib/moderation/useLabelBehaviorDescription.ts:30
-#: src/view/com/util/forms/PostDropdownBtn.tsx:445
+#: src/view/com/util/forms/PostDropdownBtn.tsx:640
msgid "Hide"
msgstr "隱藏"
-#: src/view/com/notifications/FeedItem.tsx:447
+#: src/view/com/notifications/FeedItem.tsx:477
msgctxt "action"
msgid "Hide"
msgstr "隱藏"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:390
-#: src/view/com/util/forms/PostDropdownBtn.tsx:392
-msgid "Hide post"
-msgstr "隱藏貼文"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:501
+#: src/view/com/util/forms/PostDropdownBtn.tsx:507
+msgid "Hide post for me"
+msgstr "為我隱藏貼文"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:518
+#: src/view/com/util/forms/PostDropdownBtn.tsx:528
+msgid "Hide reply for everyone"
+msgstr "為所有人隱藏回覆"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:500
+#: src/view/com/util/forms/PostDropdownBtn.tsx:506
+msgid "Hide reply for me"
+msgstr "為我隱藏回覆"
#: src/components/moderation/ContentHider.tsx:68
#: src/components/moderation/PostHider.tsx:79
msgid "Hide the content"
msgstr "隱藏內容"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:442
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
msgid "Hide this post?"
msgstr "隱藏這則貼文?"
-#: src/view/com/notifications/FeedItem.tsx:438
+#: src/view/com/util/forms/PostDropdownBtn.tsx:635
+#: src/view/com/util/forms/PostDropdownBtn.tsx:697
+msgid "Hide this reply?"
+msgstr "隱藏這個回覆?"
+
+#: src/view/com/notifications/FeedItem.tsx:468
msgid "Hide user list"
msgstr "隱藏用戶列表"
@@ -2695,12 +2828,12 @@ msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "抱歉,我們無法載入該內容管理服務。"
-#: src/Navigation.tsx:532
-#: src/Navigation.tsx:552
+#: src/Navigation.tsx:549
+#: src/Navigation.tsx:569
#: src/view/shell/bottom-bar/BottomBar.tsx:160
#: src/view/shell/desktop/LeftNav.tsx:342
-#: src/view/shell/Drawer.tsx:415
-#: src/view/shell/Drawer.tsx:416
+#: src/view/shell/Drawer.tsx:429
+#: src/view/shell/Drawer.tsx:430
msgid "Home"
msgstr "首頁"
@@ -2733,7 +2866,7 @@ msgstr "我有驗證碼"
msgid "I have my own domain"
msgstr "我擁有自己的網域"
-#: src/components/dms/BlockedByListDialog.tsx:56
+#: src/components/dms/BlockedByListDialog.tsx:57
#: src/components/dms/ReportConversationPrompt.tsx:22
msgid "I understand"
msgstr "我瞭解"
@@ -2746,15 +2879,15 @@ msgstr "替代文字過長時,切換替代文字的展開狀態"
msgid "If none are selected, suitable for all ages."
msgstr "若不勾選,則預設為全年齡向。"
-#: src/screens/Signup/StepInfo/Policies.tsx:83
+#: src/screens/Signup/StepInfo/Policies.tsx:89
msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf."
msgstr "如果根據您所在國家的法律,您尚未成年,則您的父母或法定監護人必須代表您閱讀這些條款。"
-#: src/view/screens/ProfileList.tsx:664
+#: src/view/screens/ProfileList.tsx:720
msgid "If you delete this list, you won't be able to recover it."
msgstr "如果刪除這個列表,您將無法恢復它。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:433
+#: src/view/com/util/forms/PostDropdownBtn.tsx:626
msgid "If you remove this post, you won't be able to recover it."
msgstr "如果刪除這則貼文,您將無法恢復它。"
@@ -2826,10 +2959,14 @@ msgstr "輸入您的密碼"
msgid "Input your preferred hosting provider"
msgstr "輸入您的託管服務供應商"
-#: src/screens/Signup/StepHandle.tsx:111
+#: src/screens/Signup/StepHandle.tsx:112
msgid "Input your user handle"
msgstr "輸入您的帳號代碼"
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:55
+msgid "Interaction limited"
+msgstr "互動限制"
+
#: src/components/dms/MessagesNUX.tsx:82
msgid "Introducing Direct Messages"
msgstr "為您隆重介紹「私人訊息」"
@@ -2839,7 +2976,7 @@ msgstr "為您隆重介紹「私人訊息」"
msgid "Invalid 2FA confirmation code."
msgstr "無效的雙重驗證碼。"
-#: src/view/com/post-thread/PostThreadItem.tsx:236
+#: src/view/com/post-thread/PostThreadItem.tsx:264
msgid "Invalid or unsupported post record"
msgstr "無效或不支援的貼文紀錄"
@@ -2855,7 +2992,7 @@ msgstr "邀請朋友"
msgid "Invite code"
msgstr "邀請碼"
-#: src/screens/Signup/state.ts:251
+#: src/screens/Signup/state.ts:263
msgid "Invite code not accepted. Check that you input it correctly and try again."
msgstr "邀請碼無效。請檢查您輸入的內容是否正確,然後重試。"
@@ -2883,14 +3020,14 @@ msgstr "邀請,但僅限個人"
msgid "It's just you right now! Add more people to your starter pack by searching above."
msgstr "現在只有您一個人!使用上面的搜尋功能,將更多人加入到您的入門包中。"
-#: src/view/com/auth/SplashScreen.web.tsx:157
+#: src/view/com/auth/SplashScreen.web.tsx:164
msgid "Jobs"
msgstr "工作"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207
-#: src/screens/StarterPack/StarterPackScreen.tsx:432
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:212
#: src/screens/StarterPack/StarterPackScreen.tsx:443
+#: src/screens/StarterPack/StarterPackScreen.tsx:454
msgid "Join Bluesky"
msgstr "加入 Bluesky"
@@ -2919,11 +3056,11 @@ msgstr "標記"
msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
msgstr "標記是對用戶和內容的標註,可用於隱藏、警告和對網路進行分類。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:80
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
msgid "Labels on your account"
msgstr "您帳號上的標記"
-#: src/components/moderation/LabelsOnMeDialog.tsx:82
+#: src/components/moderation/LabelsOnMeDialog.tsx:81
msgid "Labels on your content"
msgstr "您內容上的標記"
@@ -2931,16 +3068,16 @@ msgstr "您內容上的標記"
msgid "Language selection"
msgstr "語言選擇"
-#: src/view/screens/Settings/index.tsx:532
+#: src/view/screens/Settings/index.tsx:496
msgid "Language settings"
msgstr "語言設定"
-#: src/Navigation.tsx:158
+#: src/Navigation.tsx:160
#: src/view/screens/LanguageSettings.tsx:90
msgid "Language Settings"
msgstr "語言設定"
-#: src/view/screens/Settings/index.tsx:541
+#: src/view/screens/Settings/index.tsx:505
msgid "Languages"
msgstr "語言"
@@ -2949,21 +3086,26 @@ msgstr "語言"
msgid "Latest"
msgstr "最新"
-#: src/components/moderation/ScreenHider.tsx:136
+#: src/components/moderation/ScreenHider.tsx:146
msgid "Learn More"
msgstr "瞭解詳情"
+#: src/view/com/auth/SplashScreen.web.tsx:152
+msgid "Learn more about Bluesky"
+msgstr "了解有關 Bluesky 的更多資訊"
+
#: src/components/moderation/ContentHider.tsx:66
#: src/components/moderation/ContentHider.tsx:131
msgid "Learn more about the moderation applied to this content."
msgstr "詳細瞭解套用於此內容的內容管理。"
#: src/components/moderation/PostHider.tsx:100
-#: src/components/moderation/ScreenHider.tsx:125
+#: src/components/moderation/ScreenHider.tsx:133
msgid "Learn more about this warning"
msgstr "瞭解有關此警告的更多資訊"
-#: src/screens/Moderation/index.tsx:573
+#: src/screens/Moderation/index.tsx:583
+#: src/screens/Moderation/index.tsx:585
msgid "Learn more about what is public on Bluesky."
msgstr "瞭解有關 Bluesky 上公開內容的更多資訊。"
@@ -3000,10 +3142,6 @@ msgstr "離開 Bluesky"
msgid "left to go."
msgstr "個人在排在您前面。"
-#: src/view/screens/Settings/index.tsx:310
-msgid "Legacy storage cleared, you need to restart the app now."
-msgstr "遺留資料已清除,您需要立即重新啟動應用程式。"
-
#: src/components/StarterPack/ProfileStarterPacks.tsx:295
msgid "Let me choose"
msgstr "讓我選擇"
@@ -3013,12 +3151,13 @@ msgstr "讓我選擇"
msgid "Let's get your password reset!"
msgstr "讓我們來重設您的密碼吧!"
-#: src/screens/Onboarding/StepFinished.tsx:297
+#: src/screens/Onboarding/StepFinished.tsx:300
#: src/tours/Tooltip.tsx:151
msgid "Let's go!"
msgstr "讓我們開始吧!"
-#: src/view/screens/Settings/index.tsx:454
+#: src/screens/Settings/AppearanceSettings.tsx:90
+#: src/screens/Settings/AppearanceSettings.tsx:92
msgid "Light"
msgstr "亮色"
@@ -3026,8 +3165,8 @@ msgstr "亮色"
msgid "Like 10 posts"
msgstr "喜歡 10 個貼文"
+#: src/state/shell/progress-guide.tsx:157
#: src/state/shell/progress-guide.tsx:162
-#: src/state/shell/progress-guide.tsx:167
msgid "Like 10 posts to train the Discover feed"
msgstr "喜歡 10 個貼文以訓練「Discover」動態源"
@@ -3037,22 +3176,23 @@ msgid "Like this feed"
msgstr "對這個動態源表示喜歡"
#: src/components/LikesDialog.tsx:87
-#: src/Navigation.tsx:222
-#: src/Navigation.tsx:227
+#: src/Navigation.tsx:231
+#: src/Navigation.tsx:236
msgid "Liked by"
msgstr "表示喜歡的用戶"
+#: src/screens/Post/PostLikedBy.tsx:29
#: src/screens/Profile/ProfileLabelerLikedBy.tsx:29
-#: src/view/screens/PostLikedBy.tsx:27
-#: src/view/screens/ProfileFeedLikedBy.tsx:27
+#: src/view/com/post-thread/PostLikedBy.tsx:94
+#: src/view/screens/ProfileFeedLikedBy.tsx:28
msgid "Liked By"
msgstr "表示喜歡的用戶"
-#: src/view/com/notifications/FeedItem.tsx:202
+#: src/view/com/notifications/FeedItem.tsx:215
msgid "liked your custom feed"
msgstr "對您的自訂動態源表示喜歡"
-#: src/view/com/notifications/FeedItem.tsx:186
+#: src/view/com/notifications/FeedItem.tsx:182
msgid "liked your post"
msgstr "表示喜歡您的貼文"
@@ -3060,11 +3200,11 @@ msgstr "表示喜歡您的貼文"
msgid "Likes"
msgstr "喜歡"
-#: src/view/com/post-thread/PostThreadItem.tsx:197
+#: src/view/com/post-thread/PostThreadItem.tsx:204
msgid "Likes on this post"
msgstr "這條貼文的喜歡數"
-#: src/Navigation.tsx:191
+#: src/Navigation.tsx:193
msgid "List"
msgstr "列表"
@@ -3072,20 +3212,28 @@ msgstr "列表"
msgid "List Avatar"
msgstr "列表頭像"
-#: src/view/screens/ProfileList.tsx:358
+#: src/view/screens/ProfileList.tsx:414
msgid "List blocked"
msgstr "列表已封鎖"
-#: src/components/ListCard.tsx:113
-#: src/view/com/feeds/FeedSourceCard.tsx:253
+#: src/components/ListCard.tsx:149
+#: src/view/com/feeds/FeedSourceCard.tsx:252
msgid "List by {0}"
msgstr "列表由 {0} 建立"
-#: src/view/screens/ProfileList.tsx:397
+#: src/view/screens/ProfileList.tsx:453
msgid "List deleted"
msgstr "列表已刪除"
-#: src/view/screens/ProfileList.tsx:330
+#: src/screens/List/ListHiddenScreen.tsx:126
+msgid "List has been hidden"
+msgstr "列表已隱藏"
+
+#: src/view/screens/ProfileList.tsx:159
+msgid "List Hidden"
+msgstr "隱藏列表"
+
+#: src/view/screens/ProfileList.tsx:386
msgid "List muted"
msgstr "列表已靜音"
@@ -3093,20 +3241,20 @@ msgstr "列表已靜音"
msgid "List Name"
msgstr "列表名稱"
-#: src/view/screens/ProfileList.tsx:372
+#: src/view/screens/ProfileList.tsx:428
msgid "List unblocked"
msgstr "已解除封鎖的列表"
-#: src/view/screens/ProfileList.tsx:344
+#: src/view/screens/ProfileList.tsx:400
msgid "List unmuted"
msgstr "已解除靜音的列表"
-#: src/Navigation.tsx:128
+#: src/Navigation.tsx:130
#: src/view/screens/Profile.tsx:208
#: src/view/screens/Profile.tsx:215
#: src/view/shell/desktop/LeftNav.tsx:385
-#: src/view/shell/Drawer.tsx:499
-#: src/view/shell/Drawer.tsx:500
+#: src/view/shell/Drawer.tsx:513
+#: src/view/shell/Drawer.tsx:514
msgid "Lists"
msgstr "列表"
@@ -3130,10 +3278,10 @@ msgstr "載入更多推薦跟隨者"
msgid "Load new notifications"
msgstr "載入新的通知"
-#: src/screens/Profile/Sections/Feed.tsx:86
+#: src/screens/Profile/Sections/Feed.tsx:87
#: src/view/com/feeds/FeedPage.tsx:136
#: src/view/screens/ProfileFeed.tsx:495
-#: src/view/screens/ProfileList.tsx:749
+#: src/view/screens/ProfileList.tsx:805
msgid "Load new posts"
msgstr "載入新的貼文"
@@ -3141,7 +3289,7 @@ msgstr "載入新的貼文"
msgid "Loading..."
msgstr "載入中…"
-#: src/Navigation.tsx:247
+#: src/Navigation.tsx:256
msgid "Log"
msgstr "日誌"
@@ -3157,7 +3305,7 @@ msgstr "登入或註冊"
msgid "Log out"
msgstr "登出"
-#: src/screens/Moderation/index.tsx:466
+#: src/screens/Moderation/index.tsx:476
msgid "Logged-out visibility"
msgstr "登出可見性"
@@ -3193,7 +3341,7 @@ msgstr "為我製作一個"
msgid "Make sure this is where you intend to go!"
msgstr "請確認這是您想要去的的地方!"
-#: src/components/dialogs/MutedWords.tsx:82
+#: src/components/dialogs/MutedWords.tsx:108
msgid "Manage your muted words and tags"
msgstr "管理您靜音的文字和標籤"
@@ -3202,20 +3350,20 @@ msgstr "管理您靜音的文字和標籤"
msgid "Mark as read"
msgstr "標記為已讀"
-#: src/view/screens/AccessibilitySettings.tsx:102
+#: src/view/screens/AccessibilitySettings.tsx:106
#: src/view/screens/Profile.tsx:211
msgid "Media"
msgstr "媒體"
-#: src/components/WhoCanReply.tsx:276
+#: src/components/WhoCanReply.tsx:254
msgid "mentioned users"
msgstr "被提及的用戶"
-#: src/components/dialogs/ThreadgateEditor.tsx:119
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:393
msgid "Mentioned users"
msgstr "被提及的用戶"
-#: src/view/com/util/ViewHeader.tsx:91
+#: src/view/com/util/ViewHeader.tsx:90
#: src/view/screens/Search/Search.tsx:683
msgid "Menu"
msgstr "選單"
@@ -3246,7 +3394,7 @@ msgstr "訊息太長了"
msgid "Message settings"
msgstr "訊息設定"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:564
#: src/screens/Messages/List/index.tsx:164
#: src/screens/Messages/List/index.tsx:246
#: src/screens/Messages/List/index.tsx:317
@@ -3257,29 +3405,31 @@ msgstr "訊息"
msgid "Misleading Account"
msgstr "誤導性帳號"
-#: src/Navigation.tsx:133
+#: src/screens/Settings/AppearanceSettings.tsx:78
+msgid "Mode"
+msgstr "模式"
+
+#: src/Navigation.tsx:135
#: src/screens/Moderation/index.tsx:105
-#: src/view/screens/Settings/index.tsx:563
+#: src/view/screens/Settings/index.tsx:527
msgid "Moderation"
msgstr "內容管理"
-#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/components/moderation/ModerationDetailsDialog.tsx:129
msgid "Moderation details"
msgstr "內容管理詳情"
-#: src/components/ListCard.tsx:109
-#: src/view/com/lists/ListCard.tsx:95
-#: src/view/com/modals/UserAddRemoveLists.tsx:217
+#: src/components/ListCard.tsx:145
+#: src/view/com/modals/UserAddRemoveLists.tsx:216
msgid "Moderation list by {0}"
msgstr "由 {0} 建立的內容管理列表"
-#: src/view/screens/ProfileList.tsx:843
+#: src/view/screens/ProfileList.tsx:899
msgid "Moderation list by <0/>"
msgstr "由 0> 建立的內容管理列表"
-#: src/view/com/lists/ListCard.tsx:93
-#: src/view/com/modals/UserAddRemoveLists.tsx:215
-#: src/view/screens/ProfileList.tsx:841
+#: src/view/com/modals/UserAddRemoveLists.tsx:214
+#: src/view/screens/ProfileList.tsx:897
msgid "Moderation list by you"
msgstr "您建立的內容管理列表"
@@ -3291,20 +3441,24 @@ msgstr "已建立內容管理列表"
msgid "Moderation list updated"
msgstr "內容管理列表已更新"
-#: src/screens/Moderation/index.tsx:246
+#: src/screens/Moderation/index.tsx:249
msgid "Moderation lists"
msgstr "內容管理列表"
-#: src/Navigation.tsx:138
+#: src/Navigation.tsx:140
#: src/view/screens/ModerationModlists.tsx:58
msgid "Moderation Lists"
msgstr "內容管理列表"
-#: src/view/screens/Settings/index.tsx:557
+#: src/components/moderation/LabelPreference.tsx:247
+msgid "moderation settings"
+msgstr "內容管理設定"
+
+#: src/view/screens/Settings/index.tsx:521
msgid "Moderation settings"
msgstr "內容管理設定"
-#: src/Navigation.tsx:237
+#: src/Navigation.tsx:246
msgid "Moderation states"
msgstr "內容管理狀態"
@@ -3312,12 +3466,12 @@ msgstr "內容管理狀態"
msgid "Moderation tools"
msgstr "內容管理工具"
-#: src/components/moderation/ModerationDetailsDialog.tsx:48
-#: src/lib/moderation/useModerationCauseDescription.ts:42
+#: src/components/moderation/ModerationDetailsDialog.tsx:51
+#: src/lib/moderation/useModerationCauseDescription.ts:45
msgid "Moderator has chosen to set a general warning on the content."
msgstr "內容管理者已將此內容標記為普通警告。"
-#: src/view/com/post-thread/PostThreadItem.tsx:564
+#: src/view/com/post-thread/PostThreadItem.tsx:619
msgid "More"
msgstr "更多"
@@ -3325,7 +3479,7 @@ msgstr "更多"
msgid "More feeds"
msgstr "更多動態源"
-#: src/view/screens/ProfileList.tsx:653
+#: src/view/screens/ProfileList.tsx:709
msgid "More options"
msgstr "更多選項"
@@ -3341,11 +3495,13 @@ msgstr "電影"
msgid "Music"
msgstr "音樂"
-#: src/components/TagMenu/index.tsx:249
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
msgid "Mute"
msgstr "靜音"
-#: src/components/TagMenu/index.web.tsx:105
+#: src/components/TagMenu/index.web.tsx:116
msgid "Mute {truncatedTag}"
msgstr "靜音 {truncatedTag}"
@@ -3354,11 +3510,11 @@ msgstr "靜音 {truncatedTag}"
msgid "Mute Account"
msgstr "靜音帳號"
-#: src/view/screens/ProfileList.tsx:572
+#: src/view/screens/ProfileList.tsx:628
msgid "Mute accounts"
msgstr "靜音帳號"
-#: src/components/TagMenu/index.tsx:209
+#: src/components/TagMenu/index.tsx:220
msgid "Mute all {displayTag} posts"
msgstr "將所有 {displayTag} 貼文靜音"
@@ -3367,49 +3523,61 @@ msgstr "將所有 {displayTag} 貼文靜音"
msgid "Mute conversation"
msgstr "靜音對話"
-#: src/components/dialogs/MutedWords.tsx:148
-msgid "Mute in tags only"
-msgstr "僅靜音標籤"
+#: src/components/dialogs/MutedWords.tsx:253
+msgid "Mute in:"
+msgstr "靜音:"
-#: src/components/dialogs/MutedWords.tsx:133
-msgid "Mute in text & tags"
-msgstr "靜音文字和標籤"
-
-#: src/view/screens/ProfileList.tsx:678
+#: src/view/screens/ProfileList.tsx:734
msgid "Mute list"
msgstr "靜音列表"
-#: src/view/screens/ProfileList.tsx:673
+#: src/view/screens/ProfileList.tsx:729
msgid "Mute these accounts?"
msgstr "靜音這些帳號?"
-#: src/components/dialogs/MutedWords.tsx:126
+#: src/components/dialogs/MutedWords.tsx:185
+msgid "Mute this word for 24 hours"
+msgstr "將這個文字靜音 24 小時"
+
+#: src/components/dialogs/MutedWords.tsx:224
+msgid "Mute this word for 30 days"
+msgstr "將這個文字靜音 30 天"
+
+#: src/components/dialogs/MutedWords.tsx:209
+msgid "Mute this word for 7 days"
+msgstr "將這個文字靜音 7 天"
+
+#: src/components/dialogs/MutedWords.tsx:258
msgid "Mute this word in post text and tags"
msgstr "在貼文內容和話題標籤中隱藏該文字"
-#: src/components/dialogs/MutedWords.tsx:141
+#: src/components/dialogs/MutedWords.tsx:274
msgid "Mute this word in tags only"
msgstr "僅在話題標籤中隱藏該文字"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:371
+#: src/components/dialogs/MutedWords.tsx:170
+msgid "Mute this word until you unmute it"
+msgstr "將這個文字靜音,直到您取消靜音為止"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:471
msgid "Mute thread"
msgstr "靜音討論串"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:381
-#: src/view/com/util/forms/PostDropdownBtn.tsx:383
+#: src/view/com/util/forms/PostDropdownBtn.tsx:481
+#: src/view/com/util/forms/PostDropdownBtn.tsx:483
msgid "Mute words & tags"
msgstr "靜音文字和標籤"
-#: src/view/com/lists/ListCard.tsx:104
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
msgid "Muted"
msgstr "已靜音"
-#: src/screens/Moderation/index.tsx:258
+#: src/screens/Moderation/index.tsx:264
msgid "Muted accounts"
msgstr "已靜音帳號"
-#: src/Navigation.tsx:143
+#: src/Navigation.tsx:145
#: src/view/screens/ModerationMutedAccounts.tsx:109
msgid "Muted Accounts"
msgstr "已靜音帳號"
@@ -3418,7 +3586,7 @@ msgstr "已靜音帳號"
msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
msgstr "已靜音的帳號將不會在您的通知或動態中顯示,靜音資訊完全只有您可以查看。"
-#: src/lib/moderation/useModerationCauseDescription.ts:87
+#: src/lib/moderation/useModerationCauseDescription.ts:90
msgid "Muted by \"{0}\""
msgstr "被「{0}」靜音"
@@ -3426,7 +3594,7 @@ msgstr "被「{0}」靜音"
msgid "Muted words & tags"
msgstr "靜音文字和標籤"
-#: src/view/screens/ProfileList.tsx:675
+#: src/view/screens/ProfileList.tsx:731
msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
msgstr "靜音資訊只有您可以查看。被靜音的帳號仍可以與您互動,但您將無法看到他們的貼文或收到來自他們的通知。"
@@ -3435,7 +3603,7 @@ msgstr "靜音資訊只有您可以查看。被靜音的帳號仍可以與您互
msgid "My Birthday"
msgstr "我的生日"
-#: src/view/screens/Feeds.tsx:731
+#: src/view/screens/Feeds.tsx:730
msgid "My Feeds"
msgstr "我的動態源"
@@ -3443,11 +3611,11 @@ msgstr "我的動態源"
msgid "My Profile"
msgstr "我的個人檔案"
-#: src/view/screens/Settings/index.tsx:618
+#: src/view/screens/Settings/index.tsx:582
msgid "My saved feeds"
msgstr "儲存的動態源"
-#: src/view/screens/Settings/index.tsx:624
+#: src/view/screens/Settings/index.tsx:588
msgid "My Saved Feeds"
msgstr "儲存的動態源"
@@ -3472,7 +3640,7 @@ msgstr "名稱或描述違反社群標準"
msgid "Nature"
msgstr "自然"
-#: src/components/StarterPack/StarterPackCard.tsx:118
+#: src/components/StarterPack/StarterPackCard.tsx:121
msgid "Navigate to {0}"
msgstr "跳至 {0}"
@@ -3486,7 +3654,7 @@ msgstr "切換到入門包"
msgid "Navigates to the next screen"
msgstr "切換到下一畫面"
-#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:79
msgid "Navigates to your profile"
msgstr "切換到您的個人檔案"
@@ -3494,7 +3662,7 @@ msgstr "切換到您的個人檔案"
msgid "Need to report a copyright violation?"
msgstr "需要檢舉侵權嗎?"
-#: src/screens/Onboarding/StepFinished.tsx:265
+#: src/screens/Onboarding/StepFinished.tsx:268
msgid "Never lose access to your followers or data."
msgstr "永遠不會失去對您的跟隨者或資料的存取權。"
@@ -3502,7 +3670,7 @@ msgstr "永遠不會失去對您的跟隨者或資料的存取權。"
msgid "Nevermind, create a handle for me"
msgstr "不用了,為我建立一個帳號代碼"
-#: src/view/screens/Lists.tsx:81
+#: src/view/screens/Lists.tsx:83
msgctxt "action"
msgid "New"
msgstr "新增"
@@ -3538,12 +3706,12 @@ msgctxt "action"
msgid "New post"
msgstr "新貼文"
-#: src/view/screens/Feeds.tsx:581
+#: src/view/screens/Feeds.tsx:580
#: src/view/screens/Notifications.tsx:228
#: src/view/screens/Profile.tsx:478
#: src/view/screens/ProfileFeed.tsx:429
-#: src/view/screens/ProfileList.tsx:201
-#: src/view/screens/ProfileList.tsx:229
+#: src/view/screens/ProfileList.tsx:237
+#: src/view/screens/ProfileList.tsx:276
#: src/view/shell/desktop/LeftNav.tsx:278
msgid "New post"
msgstr "新貼文"
@@ -3577,10 +3745,10 @@ msgstr "新聞"
#: src/screens/Login/SetNewPasswordForm.tsx:174
#: src/screens/Login/SetNewPasswordForm.tsx:180
#: src/screens/Signup/BackNextButtons.tsx:66
-#: src/screens/StarterPack/Wizard/index.tsx:184
-#: src/screens/StarterPack/Wizard/index.tsx:188
-#: src/screens/StarterPack/Wizard/index.tsx:359
-#: src/screens/StarterPack/Wizard/index.tsx:366
+#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/screens/StarterPack/Wizard/index.tsx:187
+#: src/screens/StarterPack/Wizard/index.tsx:358
+#: src/screens/StarterPack/Wizard/index.tsx:365
#: src/tours/Tooltip.tsx:139
#: src/view/com/modals/ChangePassword.tsx:254
#: src/view/com/modals/ChangePassword.tsx:256
@@ -3591,17 +3759,17 @@ msgstr "下一個"
msgid "Next image"
msgstr "下一張圖片"
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:198
-#: src/view/screens/PreferencesFollowingFeed.tsx:233
-#: src/view/screens/PreferencesFollowingFeed.tsx:270
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:96
+#: src/view/screens/PreferencesFollowingFeed.tsx:131
+#: src/view/screens/PreferencesFollowingFeed.tsx:168
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "No"
msgstr "關"
#: src/view/screens/ProfileFeed.tsx:564
-#: src/view/screens/ProfileList.tsx:823
+#: src/view/screens/ProfileList.tsx:879
msgid "No description"
msgstr "沒有描述"
@@ -3618,12 +3786,12 @@ msgstr "未找到精選 GIF,Tenor 可能發生問題。"
msgid "No feeds found. Try searching for something else."
msgstr "沒有找到任何動態。請嘗試以其他關鍵字搜尋。"
-#: src/components/ProfileCard.tsx:323
+#: src/components/ProfileCard.tsx:331
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120
msgid "No longer following {0}"
msgstr "不再跟隨 {0}"
-#: src/screens/Signup/StepHandle.tsx:166
+#: src/screens/Signup/StepHandle.tsx:167
msgid "No longer than 253 characters"
msgstr "不超過 253 個字元"
@@ -3635,7 +3803,7 @@ msgstr "還沒有訊息"
msgid "No more conversations to show"
msgstr "已經沒有對話啦!"
-#: src/view/com/notifications/Feed.tsx:122
+#: src/view/com/notifications/Feed.tsx:121
msgid "No notifications yet!"
msgstr "還沒有通知!"
@@ -3646,6 +3814,10 @@ msgstr "還沒有通知!"
msgid "No one"
msgstr "沒有人"
+#: src/components/WhoCanReply.tsx:237
+msgid "No one but the author can quote this post."
+msgstr "僅限發布者可以引用這則貼文。"
+
#: src/screens/Profile/Sections/Feed.tsx:59
msgid "No posts yet."
msgstr "目前還沒有貼文。"
@@ -3659,11 +3831,11 @@ msgstr "沒有結果"
msgid "No results"
msgstr "沒有結果"
-#: src/components/Lists.tsx:207
+#: src/components/Lists.tsx:215
msgid "No results found"
msgstr "未找到結果"
-#: src/view/screens/Feeds.tsx:512
+#: src/view/screens/Feeds.tsx:511
msgid "No results found for \"{query}\""
msgstr "未找到符合「{query}」的結果"
@@ -3684,14 +3856,10 @@ msgstr "未找到符合「{search}」的搜尋結果。"
msgid "No thanks"
msgstr "不,謝謝"
-#: src/components/dialogs/ThreadgateEditor.tsx:108
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:375
msgid "Nobody"
msgstr "沒有人"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46
-msgid "Nobody can reply"
-msgstr "沒有人可以回覆"
-
#: src/components/LikedByList.tsx:79
#: src/components/LikesDialog.tsx:99
msgid "Nobody has liked this yet. Maybe you should be the first!"
@@ -3705,7 +3873,7 @@ msgstr "沒有找到任何人。請嘗試以其他關鍵字搜尋。"
msgid "Non-sexual Nudity"
msgstr "非色情裸露"
-#: src/Navigation.tsx:123
+#: src/Navigation.tsx:125
#: src/view/screens/Profile.tsx:108
msgid "Not Found"
msgstr "未找到"
@@ -3716,12 +3884,12 @@ msgid "Not right now"
msgstr "暫時不需要"
#: src/view/com/profile/ProfileMenu.tsx:372
-#: src/view/com/util/forms/PostDropdownBtn.tsx:459
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:322
+#: src/view/com/util/forms/PostDropdownBtn.tsx:654
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:332
msgid "Note about sharing"
msgstr "關於分享的注意事項"
-#: src/screens/Moderation/index.tsx:564
+#: src/screens/Moderation/index.tsx:574
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr "注意:Bluesky 是一個開放且公開的網路。此設定僅限制您在 Bluesky 應用程式和網站上的內容可見性,其他應用程式可能不會遵循這個規則。您的內容仍可能由其他應用程式和網站顯示給未登入的使用者。"
@@ -3731,16 +3899,16 @@ msgstr "這裡什麼也沒有"
#: src/view/screens/NotificationsSettings.tsx:54
msgid "Notification filters"
-msgstr ""
+msgstr "通知過濾"
-#: src/Navigation.tsx:331
+#: src/Navigation.tsx:348
#: src/view/screens/Notifications.tsx:119
msgid "Notification settings"
-msgstr ""
+msgstr "通知設定"
#: src/view/screens/NotificationsSettings.tsx:39
msgid "Notification Settings"
-msgstr ""
+msgstr "通知設定"
#: src/screens/Messages/Settings.tsx:124
msgid "Notification sounds"
@@ -3750,14 +3918,14 @@ msgstr "通知音效"
msgid "Notification Sounds"
msgstr "通知音效"
-#: src/Navigation.tsx:542
+#: src/Navigation.tsx:559
#: src/view/screens/Notifications.tsx:145
#: src/view/screens/Notifications.tsx:155
#: src/view/screens/Notifications.tsx:203
#: src/view/shell/bottom-bar/BottomBar.tsx:230
#: src/view/shell/desktop/LeftNav.tsx:362
-#: src/view/shell/Drawer.tsx:447
-#: src/view/shell/Drawer.tsx:448
+#: src/view/shell/Drawer.tsx:461
+#: src/view/shell/Drawer.tsx:462
msgid "Notifications"
msgstr "通知"
@@ -3782,12 +3950,12 @@ msgid "Off"
msgstr "顯示"
#: src/components/dialogs/GifSelect.ios.tsx:237
-#: src/components/dialogs/GifSelect.tsx:255
+#: src/components/dialogs/GifSelect.tsx:257
#: src/view/com/util/ErrorBoundary.tsx:55
msgid "Oh no!"
msgstr "糟糕!"
-#: src/screens/Onboarding/StepInterests/index.tsx:152
+#: src/screens/Onboarding/StepInterests/index.tsx:153
msgid "Oh no! Something went wrong."
msgstr "糟糕!發生了一些錯誤。"
@@ -3811,7 +3979,7 @@ msgstr "在"
msgid "on {str}"
msgstr "在 {str}"
-#: src/view/screens/Settings/index.tsx:258
+#: src/view/screens/Settings/index.tsx:226
msgid "Onboarding reset"
msgstr "重新開始引導流程"
@@ -3819,7 +3987,7 @@ msgstr "重新開始引導流程"
msgid "Onboarding tour step {0}: {1}"
msgstr "入門指南步驟 {0}:{1}"
-#: src/view/com/composer/Composer.tsx:534
+#: src/view/com/composer/Composer.tsx:589
msgid "One or more images is missing alt text."
msgstr "至少有一張圖片缺失了替代文字。"
@@ -3827,11 +3995,11 @@ msgstr "至少有一張圖片缺失了替代文字。"
msgid "Only .jpg and .png files are supported"
msgstr "僅支援 .jpg 或 .png 格式的圖片"
-#: src/components/WhoCanReply.tsx:245
-msgid "Only {0} can reply"
-msgstr "只有{0}可以回覆"
+#: src/components/WhoCanReply.tsx:217
+msgid "Only {0} can reply."
+msgstr "只有{0}可以回覆。"
-#: src/screens/Signup/StepHandle.tsx:149
+#: src/screens/Signup/StepHandle.tsx:150
msgid "Only contains letters, numbers, and hyphens"
msgstr "只包含字母、數字和連字符"
@@ -3839,7 +4007,7 @@ msgstr "只包含字母、數字和連字符"
msgid "Oops, something went wrong!"
msgstr "糟糕,發生了錯誤!"
-#: src/components/Lists.tsx:191
+#: src/components/Lists.tsx:199
#: src/components/StarterPack/ProfileStarterPacks.tsx:304
#: src/components/StarterPack/ProfileStarterPacks.tsx:313
#: src/view/screens/AppPasswords.tsx:69
@@ -3848,11 +4016,11 @@ msgstr "糟糕,發生了錯誤!"
msgid "Oops!"
msgstr "糟糕!"
-#: src/screens/Onboarding/StepFinished.tsx:261
+#: src/screens/Onboarding/StepFinished.tsx:264
msgid "Open"
msgstr "開放"
-#: src/view/com/posts/AviFollowButton.tsx:89
+#: src/view/com/posts/AviFollowButton.tsx:87
msgid "Open {name} profile shortcut menu"
msgstr "開啟 {name} 個人檔案快捷選單"
@@ -3865,8 +4033,8 @@ msgstr "開啟頭像建立工具"
msgid "Open conversation options"
msgstr "開啟對話選項"
-#: src/view/com/composer/Composer.tsx:663
-#: src/view/com/composer/Composer.tsx:664
+#: src/view/com/composer/Composer.tsx:754
+#: src/view/com/composer/Composer.tsx:755
msgid "Open emoji picker"
msgstr "開啟表情符號選擇器"
@@ -3874,7 +4042,7 @@ msgstr "開啟表情符號選擇器"
msgid "Open feed options menu"
msgstr "開啟動態選項選單"
-#: src/view/screens/Settings/index.tsx:738
+#: src/view/screens/Settings/index.tsx:702
msgid "Open links with in-app browser"
msgstr "在內建瀏覽器中開啟連結"
@@ -3890,20 +4058,20 @@ msgstr "開啟靜音文字和標籤設定"
msgid "Open navigation"
msgstr "開啟導覽"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:250
+#: src/view/com/util/forms/PostDropdownBtn.tsx:350
msgid "Open post options menu"
msgstr "開啟貼文選項選單"
-#: src/screens/StarterPack/StarterPackScreen.tsx:529
+#: src/screens/StarterPack/StarterPackScreen.tsx:540
msgid "Open starter pack menu"
msgstr "開啟入門包選單"
-#: src/view/screens/Settings/index.tsx:862
-#: src/view/screens/Settings/index.tsx:872
+#: src/view/screens/Settings/index.tsx:826
+#: src/view/screens/Settings/index.tsx:836
msgid "Open storybook page"
msgstr "開啟故事書頁面"
-#: src/view/screens/Settings/index.tsx:850
+#: src/view/screens/Settings/index.tsx:814
msgid "Open system log"
msgstr "開啟系統日誌"
@@ -3911,11 +4079,11 @@ msgstr "開啟系統日誌"
msgid "Opens {numItems} options"
msgstr "開啟 {numItems} 個選項"
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:68
msgid "Opens a dialog to choose who can reply to this thread"
msgstr "開啟對話窗來選擇哪些人可以回覆此討論串"
-#: src/view/screens/Settings/index.tsx:512
+#: src/view/screens/Settings/index.tsx:455
msgid "Opens accessibility settings"
msgstr "開啟無障礙設定"
@@ -3923,19 +4091,23 @@ msgstr "開啟無障礙設定"
msgid "Opens additional details for a debug entry"
msgstr "開啟除錯項目的額外詳細資訊"
+#: src/view/screens/Settings/index.tsx:476
+msgid "Opens appearance settings"
+msgstr "開啟外觀設定"
+
#: src/view/com/composer/photos/OpenCameraBtn.tsx:74
msgid "Opens camera on device"
msgstr "開啟裝置相機"
-#: src/view/screens/Settings/index.tsx:641
+#: src/view/screens/Settings/index.tsx:605
msgid "Opens chat settings"
msgstr "開啟對話設定"
-#: src/view/com/composer/Prompt.tsx:27
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:30
msgid "Opens composer"
msgstr "開啟編輯器"
-#: src/view/screens/Settings/index.tsx:533
+#: src/view/screens/Settings/index.tsx:497
msgid "Opens configurable language settings"
msgstr "開啟可以更改的語言設定"
@@ -3943,7 +4115,7 @@ msgstr "開啟可以更改的語言設定"
msgid "Opens device photo gallery"
msgstr "開啟裝置相簿"
-#: src/view/screens/Settings/index.tsx:673
+#: src/view/screens/Settings/index.tsx:637
msgid "Opens external embeds settings"
msgstr "開啟外部連結嵌入設定"
@@ -3965,27 +4137,27 @@ msgstr "開啟 GIF 選擇對話框"
msgid "Opens list of invite codes"
msgstr "開啟邀請碼列表"
-#: src/view/screens/Settings/index.tsx:810
+#: src/view/screens/Settings/index.tsx:774
msgid "Opens modal for account deactivation confirmation"
msgstr "開啟帳號刪除的確認彈窗"
-#: src/view/screens/Settings/index.tsx:832
+#: src/view/screens/Settings/index.tsx:796
msgid "Opens modal for account deletion confirmation. Requires email code"
msgstr "開啟帳號刪除的確認彈窗。需要電子郵件驗證碼"
-#: src/view/screens/Settings/index.tsx:767
+#: src/view/screens/Settings/index.tsx:731
msgid "Opens modal for changing your Bluesky password"
msgstr "開啟修改 Bluesky 密碼的彈窗"
-#: src/view/screens/Settings/index.tsx:722
+#: src/view/screens/Settings/index.tsx:686
msgid "Opens modal for choosing a new Bluesky handle"
msgstr "開啟建立新 Bluesky 帳號代碼的彈窗"
-#: src/view/screens/Settings/index.tsx:790
+#: src/view/screens/Settings/index.tsx:754
msgid "Opens modal for downloading your Bluesky account data (repository)"
msgstr "開啟下載 Bluesky 帳號數據(儲存庫)的彈窗"
-#: src/view/screens/Settings/index.tsx:1010
+#: src/view/screens/Settings/index.tsx:962
msgid "Opens modal for email verification"
msgstr "開啟驗證電子郵件的彈窗"
@@ -3993,7 +4165,7 @@ msgstr "開啟驗證電子郵件的彈窗"
msgid "Opens modal for using custom domain"
msgstr "開啟使用自訂網域的彈窗"
-#: src/view/screens/Settings/index.tsx:558
+#: src/view/screens/Settings/index.tsx:522
msgid "Opens moderation settings"
msgstr "開啟內容管理設定"
@@ -4001,15 +4173,15 @@ msgstr "開啟內容管理設定"
msgid "Opens password reset form"
msgstr "開啟密碼重設表單"
-#: src/view/screens/Settings/index.tsx:619
+#: src/view/screens/Settings/index.tsx:583
msgid "Opens screen with all saved feeds"
msgstr "開啟包含所有已儲存的動態源之畫面"
-#: src/view/screens/Settings/index.tsx:700
+#: src/view/screens/Settings/index.tsx:664
msgid "Opens the app password settings"
msgstr "開啟應用程式專用密碼設定畫面"
-#: src/view/screens/Settings/index.tsx:576
+#: src/view/screens/Settings/index.tsx:540
msgid "Opens the Following feed preferences"
msgstr "開啟「Following」動態源偏好"
@@ -4017,21 +4189,21 @@ msgstr "開啟「Following」動態源偏好"
msgid "Opens the linked website"
msgstr "開啟網站連結"
-#: src/view/screens/Settings/index.tsx:863
-#: src/view/screens/Settings/index.tsx:873
+#: src/view/screens/Settings/index.tsx:827
+#: src/view/screens/Settings/index.tsx:837
msgid "Opens the storybook page"
msgstr "開啟故事書頁面"
-#: src/view/screens/Settings/index.tsx:851
+#: src/view/screens/Settings/index.tsx:815
msgid "Opens the system log page"
msgstr "開啟系統日誌頁面"
-#: src/view/screens/Settings/index.tsx:597
+#: src/view/screens/Settings/index.tsx:561
msgid "Opens the threads preferences"
msgstr "開啟討論串偏好"
-#: src/view/com/notifications/FeedItem.tsx:527
-#: src/view/com/util/UserAvatar.tsx:434
+#: src/view/com/notifications/FeedItem.tsx:555
+#: src/view/com/util/UserAvatar.tsx:420
msgid "Opens this profile"
msgstr "開啟這個個人檔案"
@@ -4044,11 +4216,15 @@ msgid "Option {0} of {numItems}"
msgstr "{0} 選項,共 {numItems} 個"
#: src/components/dms/ReportDialog.tsx:183
-#: src/components/ReportDialog/SubmitView.tsx:179
+#: src/components/ReportDialog/SubmitView.tsx:166
msgid "Optionally provide additional information below:"
msgstr "在以下提供額外訊息(可選):"
-#: src/components/dialogs/ThreadgateEditor.tsx:115
+#: src/components/dialogs/MutedWords.tsx:299
+msgid "Options:"
+msgstr "選項:"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:388
msgid "Or combine these options:"
msgstr "或者組合這些選項:"
@@ -4068,6 +4244,10 @@ msgstr "其他"
msgid "Other account"
msgstr "其他帳號"
+#: src/view/screens/Settings/index.tsx:379
+msgid "Other accounts"
+msgstr "其他帳號"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:92
msgid "Other..."
msgstr "其他…"
@@ -4076,7 +4256,7 @@ msgstr "其他…"
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "我們的內容管理者已審核檢舉,並決定停用您在 Bluesky 上的對話功能。"
-#: src/components/Lists.tsx:208
+#: src/components/Lists.tsx:216
#: src/view/screens/NotFound.tsx:45
msgid "Page not found"
msgstr "頁面不存在"
@@ -4105,19 +4285,24 @@ msgid "Password updated!"
msgstr "密碼已更新!"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Pause"
msgstr "暫停"
-#: src/screens/StarterPack/StarterPackScreen.tsx:170
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:203
+msgid "Pause video"
+msgstr "暫停影片"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:171
#: src/view/screens/Search/Search.tsx:369
msgid "People"
msgstr "用戶"
-#: src/Navigation.tsx:178
+#: src/Navigation.tsx:180
msgid "People followed by @{0}"
msgstr "被 @{0} 跟隨的人"
-#: src/Navigation.tsx:171
+#: src/Navigation.tsx:173
msgid "People following @{0}"
msgstr "跟隨 @{0} 的人"
@@ -4147,7 +4332,7 @@ msgid "Pictures meant for adults."
msgstr "不適合未成年人的圖片。"
#: src/view/screens/ProfileFeed.tsx:289
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Pin to home"
msgstr "釘選到首頁"
@@ -4159,11 +4344,12 @@ msgstr "釘選到首頁"
msgid "Pinned Feeds"
msgstr "釘選的動態源列表"
-#: src/view/screens/ProfileList.tsx:289
+#: src/view/screens/ProfileList.tsx:345
msgid "Pinned to your feeds"
msgstr "從您的動態中取消釘選"
#: src/view/com/util/post-embeds/GifEmbed.tsx:44
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:226
msgid "Play"
msgstr "播放"
@@ -4175,6 +4361,11 @@ msgstr "播放 {0}"
msgid "Play or pause the GIF"
msgstr "播放或暫停 GIF"
+#: src/view/com/util/post-embeds/VideoEmbed.tsx:52
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:204
+msgid "Play video"
+msgstr "播放影片"
+
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:57
#: src/view/com/util/post-embeds/ExternalPlayerEmbed.tsx:58
msgid "Play Video"
@@ -4184,16 +4375,16 @@ msgstr "播放影片"
msgid "Plays the GIF"
msgstr "播放 GIF"
-#: src/screens/Signup/state.ts:210
+#: src/screens/Signup/state.ts:222
msgid "Please choose your handle."
msgstr "請設定您的帳號代碼。"
-#: src/screens/Signup/state.ts:203
+#: src/screens/Signup/state.ts:215
#: src/screens/Signup/StepInfo/index.tsx:81
msgid "Please choose your password."
msgstr "請設定您的密碼。"
-#: src/screens/Signup/state.ts:224
+#: src/screens/Signup/state.ts:236
msgid "Please complete the verification captcha."
msgstr "請完成 Captcha 驗證。"
@@ -4209,11 +4400,11 @@ msgstr "請輸入應用程式專用密碼的名稱。不允許包含任何空格
msgid "Please enter a unique name for this App Password or use our randomly generated one."
msgstr "請輸入此應用程式專用密碼的唯一名稱,或使用我們提供的隨機生成名稱。"
-#: src/components/dialogs/MutedWords.tsx:67
+#: src/components/dialogs/MutedWords.tsx:86
msgid "Please enter a valid word, tag, or phrase to mute"
msgstr "請輸入有效的文字或標籤進行靜音"
-#: src/screens/Signup/state.ts:189
+#: src/screens/Signup/state.ts:201
#: src/screens/Signup/StepInfo/index.tsx:69
msgid "Please enter your email."
msgstr "請輸入您的電子郵件。"
@@ -4226,7 +4417,7 @@ msgstr "請輸入您的邀請碼。"
msgid "Please enter your password as well:"
msgstr "請輸入您的密碼:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:277
+#: src/components/moderation/LabelsOnMeDialog.tsx:268
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "請解釋您認為 {0} 不該套用此標記的原因"
@@ -4243,7 +4434,7 @@ msgstr "請以 @{0} 的身分登入"
msgid "Please Verify Your Email"
msgstr "請驗證您的電子郵件地址"
-#: src/view/com/composer/Composer.tsx:299
+#: src/view/com/composer/Composer.tsx:331
msgid "Please wait for your link card to finish loading"
msgstr "請等待您的連結預覽載入完畢"
@@ -4256,45 +4447,50 @@ msgstr "政治"
msgid "Porn"
msgstr "色情"
-#: src/view/com/composer/Composer.tsx:509
-#: src/view/com/composer/Composer.tsx:516
+#: src/view/com/composer/Composer.tsx:564
+#: src/view/com/composer/Composer.tsx:571
msgctxt "action"
msgid "Post"
msgstr "發佈"
-#: src/view/com/post-thread/PostThread.tsx:434
+#: src/view/com/post-thread/PostThread.tsx:480
msgctxt "description"
msgid "Post"
msgstr "貼文"
-#: src/view/com/post-thread/PostThreadItem.tsx:189
+#: src/view/com/post-thread/PostThreadItem.tsx:196
msgid "Post by {0}"
msgstr "{0} 的貼文"
-#: src/Navigation.tsx:197
-#: src/Navigation.tsx:204
-#: src/Navigation.tsx:211
+#: src/Navigation.tsx:199
+#: src/Navigation.tsx:206
+#: src/Navigation.tsx:213
+#: src/Navigation.tsx:220
msgid "Post by @{0}"
msgstr "@{0} 的貼文"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:132
+#: src/view/com/util/forms/PostDropdownBtn.tsx:174
msgid "Post deleted"
msgstr "貼文已刪除"
-#: src/view/com/post-thread/PostThread.tsx:193
+#: src/view/com/post-thread/PostThread.tsx:212
msgid "Post hidden"
msgstr "貼文已隱藏"
-#: src/components/moderation/ModerationDetailsDialog.tsx:97
-#: src/lib/moderation/useModerationCauseDescription.ts:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:106
+#: src/lib/moderation/useModerationCauseDescription.ts:104
msgid "Post Hidden by Muted Word"
msgstr "貼文因靜音文字而被隱藏"
-#: src/components/moderation/ModerationDetailsDialog.tsx:100
-#: src/lib/moderation/useModerationCauseDescription.ts:110
+#: src/components/moderation/ModerationDetailsDialog.tsx:109
+#: src/lib/moderation/useModerationCauseDescription.ts:113
msgid "Post Hidden by You"
msgstr "被您靜音的貼文"
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:283
+msgid "Post interaction settings"
+msgstr "貼文互動設定"
+
#: src/view/com/composer/select-language/SelectLangBtn.tsx:88
msgid "Post language"
msgstr "貼文語言"
@@ -4303,23 +4499,23 @@ msgstr "貼文語言"
msgid "Post Languages"
msgstr "貼文語言"
-#: src/view/com/post-thread/PostThread.tsx:188
-#: src/view/com/post-thread/PostThread.tsx:200
+#: src/view/com/post-thread/PostThread.tsx:207
+#: src/view/com/post-thread/PostThread.tsx:219
msgid "Post not found"
msgstr "找不到貼文"
-#: src/components/TagMenu/index.tsx:253
+#: src/components/TagMenu/index.tsx:267
msgid "posts"
msgstr "貼文"
-#: src/screens/StarterPack/StarterPackScreen.tsx:172
+#: src/screens/StarterPack/StarterPackScreen.tsx:173
#: src/view/screens/Profile.tsx:209
msgid "Posts"
msgstr "貼文"
-#: src/components/dialogs/MutedWords.tsx:89
-msgid "Posts can be muted based on their text, their tags, or both."
-msgstr "可以靜音貼文所包含的文字和標籤。"
+#: src/components/dialogs/MutedWords.tsx:115
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr "可以根據文字、標籤或結合兩者來靜音貼文。我們建議避免新增常見的文字,否則可能導致動態不顯示任何貼文。"
#: src/view/com/posts/FeedErrorMessage.tsx:68
msgid "Posts hidden"
@@ -4331,7 +4527,7 @@ msgstr "潛在誤導性連結"
#: src/state/queries/notifications/settings.ts:44
msgid "Preference saved"
-msgstr ""
+msgstr "偏好設定已儲存"
#: src/screens/Messages/Conversation/MessageListError.tsx:19
msgid "Press to attempt reconnection"
@@ -4341,7 +4537,7 @@ msgstr "點擊以重試連線"
msgid "Press to change hosting provider"
msgstr "按下以更改託管服務供應商"
-#: src/components/Error.tsx:85
+#: src/components/Error.tsx:61
#: src/components/Lists.tsx:93
#: src/screens/Messages/Conversation/MessageListError.tsx:24
#: src/screens/Signup/BackNextButtons.tsx:46
@@ -4356,7 +4552,7 @@ msgstr "按下以查看哪些您認識的人跟隨了此帳號"
msgid "Previous image"
msgstr "上一張圖片"
-#: src/view/screens/LanguageSettings.tsx:189
+#: src/view/screens/LanguageSettings.tsx:190
msgid "Primary Language"
msgstr "主要語言"
@@ -4366,18 +4562,18 @@ msgstr "優先顯示跟隨者"
#: src/view/screens/NotificationsSettings.tsx:57
msgid "Priority notifications"
-msgstr ""
+msgstr "優先通知"
-#: src/view/screens/Settings/index.tsx:656
+#: src/view/screens/Settings/index.tsx:620
#: src/view/shell/desktop/RightNav.tsx:81
msgid "Privacy"
msgstr "隱私"
-#: src/Navigation.tsx:257
-#: src/screens/Signup/StepInfo/Policies.tsx:56
+#: src/Navigation.tsx:266
+#: src/screens/Signup/StepInfo/Policies.tsx:62
#: src/view/screens/PrivacyPolicy.tsx:29
-#: src/view/screens/Settings/index.tsx:959
-#: src/view/shell/Drawer.tsx:284
+#: src/view/screens/Settings/index.tsx:911
+#: src/view/shell/Drawer.tsx:298
msgid "Privacy Policy"
msgstr "隱私政策"
@@ -4389,16 +4585,16 @@ msgstr "和其他用戶進行私人對話。"
msgid "Processing..."
msgstr "處理中…"
-#: src/view/screens/DebugMod.tsx:894
+#: src/view/screens/DebugMod.tsx:895
#: src/view/screens/Profile.tsx:346
msgid "profile"
msgstr "個人檔案"
#: src/view/shell/bottom-bar/BottomBar.tsx:275
#: src/view/shell/desktop/LeftNav.tsx:393
-#: src/view/shell/Drawer.tsx:77
-#: src/view/shell/Drawer.tsx:532
-#: src/view/shell/Drawer.tsx:533
+#: src/view/shell/Drawer.tsx:78
+#: src/view/shell/Drawer.tsx:546
+#: src/view/shell/Drawer.tsx:547
msgid "Profile"
msgstr "個人檔案"
@@ -4406,11 +4602,11 @@ msgstr "個人檔案"
msgid "Profile updated"
msgstr "個人檔案已更新"
-#: src/view/screens/Settings/index.tsx:1023
+#: src/view/screens/Settings/index.tsx:975
msgid "Protect your account by verifying your email."
msgstr "通過驗證電子郵件地址來保護您的帳號。"
-#: src/screens/Onboarding/StepFinished.tsx:247
+#: src/screens/Onboarding/StepFinished.tsx:250
msgid "Public"
msgstr "公開"
@@ -4418,15 +4614,15 @@ msgstr "公開"
msgid "Public, shareable lists of users to mute or block in bulk."
msgstr "公開且可共享的用戶列表,可供批量靜音或封鎖。"
-#: src/view/screens/Lists.tsx:66
+#: src/view/screens/Lists.tsx:68
msgid "Public, shareable lists which can drive feeds."
msgstr "公開且可共享的列表,可作為動態源使用。"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish post"
msgstr "發佈貼文"
-#: src/view/com/composer/Composer.tsx:497
+#: src/view/com/composer/Composer.tsx:549
msgid "Publish reply"
msgstr "發佈回覆"
@@ -4446,13 +4642,46 @@ msgstr "QR Code 已儲存至您的圖片庫!"
msgid "Quick tip"
msgstr "小建議"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:116
-#: src/view/com/util/post-ctrls/RepostButton.tsx:128
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:79
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:82
+#: src/view/com/util/post-ctrls/RepostButton.tsx:122
+#: src/view/com/util/post-ctrls/RepostButton.tsx:149
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:85
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:92
msgid "Quote post"
msgstr "引用貼文"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+msgid "Quote post was re-attached"
+msgstr "引用已重新連結"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:301
+msgid "Quote post was successfully detached"
+msgstr "貼文引用已成功分離"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:313
+#: src/view/com/util/post-ctrls/RepostButton.tsx:121
+#: src/view/com/util/post-ctrls/RepostButton.tsx:148
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:84
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:91
+msgid "Quote posts disabled"
+msgstr "引用貼文已停用"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:311
+msgid "Quote posts enabled"
+msgstr "引用貼文已啟用"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:295
+msgid "Quote settings"
+msgstr "引用設定"
+
+#: src/screens/Post/PostQuotes.tsx:29
+#: src/view/com/post-thread/PostQuotes.tsx:122
+msgid "Quotes"
+msgstr "引用"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:230
+msgid "Quotes of this post"
+msgstr "引用這則貼文"
+
#: src/view/screens/PreferencesThreads.tsx:80
msgid "Random (aka \"Poster's Roulette\")"
msgstr "隨機顯示 (又名試試手氣)"
@@ -4461,15 +4690,32 @@ msgstr "隨機顯示 (又名試試手氣)"
msgid "Ratios"
msgstr "比率"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:543
+#: src/view/com/util/forms/PostDropdownBtn.tsx:553
+msgid "Re-attach quote"
+msgstr "重新連結引用"
+
#: src/screens/Deactivated.tsx:144
msgid "Reactivate your account"
msgstr "重新啟用您的帳號"
+#: src/view/com/auth/SplashScreen.web.tsx:157
+msgid "Read the Bluesky blog"
+msgstr "閱讀 Bluesky 部落格"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:59
+msgid "Read the Bluesky Privacy Policy"
+msgstr "閱讀 Bluesky 隱私權政策"
+
+#: src/screens/Signup/StepInfo/Policies.tsx:49
+msgid "Read the Bluesky Terms of Service"
+msgstr "閱讀 Bluesky 服務條款"
+
#: src/components/dms/ReportDialog.tsx:174
msgid "Reason:"
msgstr "原因:"
-#: src/view/screens/Search/Search.tsx:933
+#: src/view/screens/Search/Search.tsx:926
msgid "Recent Searches"
msgstr "最近的搜尋結果"
@@ -4479,21 +4725,22 @@ msgstr "重新連線"
#: src/view/screens/Notifications.tsx:146
msgid "Refresh notifications"
-msgstr ""
+msgstr "重新整理通知"
#: src/screens/Messages/List/index.tsx:200
msgid "Reload conversations"
msgstr "重新載入對話"
-#: src/components/dialogs/MutedWords.tsx:286
-#: src/components/FeedCard.tsx:309
+#: src/components/dialogs/MutedWords.tsx:438
+#: src/components/FeedCard.tsx:313
#: src/components/StarterPack/Wizard/WizardListCard.tsx:101
#: src/components/StarterPack/Wizard/WizardListCard.tsx:108
-#: src/view/com/feeds/FeedSourceCard.tsx:317
+#: src/view/com/feeds/FeedSourceCard.tsx:316
#: src/view/com/modals/ListAddRemoveUsers.tsx:269
#: src/view/com/modals/SelfLabel.tsx:84
-#: src/view/com/modals/UserAddRemoveLists.tsx:230
+#: src/view/com/modals/UserAddRemoveLists.tsx:229
#: src/view/com/posts/FeedErrorMessage.tsx:213
+#: src/view/com/util/AccountDropdownBtn.tsx:61
msgid "Remove"
msgstr "刪除"
@@ -4501,11 +4748,11 @@ msgstr "刪除"
msgid "Remove {displayName} from starter pack"
msgstr "從您的入門包刪除 {displayName}"
-#: src/view/com/util/AccountDropdownBtn.tsx:22
+#: src/view/com/util/AccountDropdownBtn.tsx:26
msgid "Remove account"
msgstr "移除帳號"
-#: src/view/com/util/UserAvatar.tsx:396
+#: src/view/com/util/UserAvatar.tsx:387
msgid "Remove Avatar"
msgstr "刪除頭像"
@@ -4518,8 +4765,8 @@ msgid "Remove embed"
msgstr "刪除嵌入"
#: src/view/com/posts/FeedErrorMessage.tsx:169
-#: src/view/com/posts/FeedShutdownMsg.tsx:115
-#: src/view/com/posts/FeedShutdownMsg.tsx:119
+#: src/view/com/posts/FeedShutdownMsg.tsx:116
+#: src/view/com/posts/FeedShutdownMsg.tsx:120
msgid "Remove feed"
msgstr "刪除動態源"
@@ -4527,19 +4774,27 @@ msgstr "刪除動態源"
msgid "Remove feed?"
msgstr "刪除動態源?"
-#: src/view/com/feeds/FeedSourceCard.tsx:188
-#: src/view/com/feeds/FeedSourceCard.tsx:266
+#: src/view/com/feeds/FeedSourceCard.tsx:187
+#: src/view/com/feeds/FeedSourceCard.tsx:265
#: src/view/screens/ProfileFeed.tsx:333
#: src/view/screens/ProfileFeed.tsx:339
-#: src/view/screens/ProfileList.tsx:443
+#: src/view/screens/ProfileList.tsx:499
msgid "Remove from my feeds"
msgstr "從我的動態源中刪除"
-#: src/components/FeedCard.tsx:304
-#: src/view/com/feeds/FeedSourceCard.tsx:312
+#: src/components/FeedCard.tsx:308
+#: src/view/com/feeds/FeedSourceCard.tsx:311
msgid "Remove from my feeds?"
msgstr "從我的動態源中刪除?"
+#: src/view/com/util/AccountDropdownBtn.tsx:53
+msgid "Remove from quick access?"
+msgstr "從快速存取中刪除?"
+
+#: src/screens/List/ListHiddenScreen.tsx:156
+msgid "Remove from saved feeds"
+msgstr "從儲存的動態源中刪除"
+
#: src/view/com/composer/photos/Gallery.tsx:174
msgid "Remove image"
msgstr "刪除圖片"
@@ -4548,24 +4803,24 @@ msgstr "刪除圖片"
msgid "Remove image preview"
msgstr "刪除圖片預覽"
-#: src/components/dialogs/MutedWords.tsx:329
+#: src/components/dialogs/MutedWords.tsx:523
msgid "Remove mute word from your list"
msgstr "從您的列表中刪除靜音文字"
-#: src/view/screens/Search/Search.tsx:974
+#: src/view/screens/Search/Search.tsx:969
msgid "Remove profile"
msgstr "刪除個人檔案"
-#: src/view/screens/Search/Search.tsx:976
+#: src/view/screens/Search/Search.tsx:971
msgid "Remove profile from search history"
msgstr "刪除搜尋紀錄中的個人檔案"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:238
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:255
msgid "Remove quote"
msgstr "刪除引用貼文"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:93
-#: src/view/com/util/post-ctrls/RepostButton.tsx:109
+#: src/view/com/util/post-ctrls/RepostButton.tsx:95
+#: src/view/com/util/post-ctrls/RepostButton.tsx:111
msgid "Remove repost"
msgstr "刪除轉貼貼文"
@@ -4573,22 +4828,35 @@ msgstr "刪除轉貼貼文"
msgid "Remove this feed from your saved feeds"
msgstr "將這個動態源從您已儲存之動態源列表中刪除"
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:100
+msgid "Removed by author"
+msgstr "由發布者刪除"
+
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:98
+msgid "Removed by you"
+msgstr "由您刪除"
+
#: src/view/com/modals/ListAddRemoveUsers.tsx:200
-#: src/view/com/modals/UserAddRemoveLists.tsx:165
+#: src/view/com/modals/UserAddRemoveLists.tsx:164
msgid "Removed from list"
msgstr "從列表中刪除"
-#: src/view/com/feeds/FeedSourceCard.tsx:139
+#: src/view/com/feeds/FeedSourceCard.tsx:138
msgid "Removed from my feeds"
msgstr "已從我的動態源中刪除"
+#: src/screens/List/ListHiddenScreen.tsx:94
+#: src/screens/List/ListHiddenScreen.tsx:160
+msgid "Removed from saved feeds"
+msgstr "已從儲存的動態源中刪除"
+
#: src/view/com/posts/FeedShutdownMsg.tsx:44
#: src/view/screens/ProfileFeed.tsx:192
-#: src/view/screens/ProfileList.tsx:320
+#: src/view/screens/ProfileList.tsx:376
msgid "Removed from your feeds"
msgstr "從您的動態中刪除"
-#: src/view/com/util/post-embeds/QuoteEmbed.tsx:239
+#: src/view/com/util/post-embeds/QuoteEmbed.tsx:256
msgid "Removes quoted post"
msgstr "刪除已轉貼貼文"
@@ -4596,8 +4864,8 @@ msgstr "刪除已轉貼貼文"
msgid "Removes the image preview"
msgstr "移除圖片預覽"
-#: src/view/com/posts/FeedShutdownMsg.tsx:128
-#: src/view/com/posts/FeedShutdownMsg.tsx:132
+#: src/view/com/posts/FeedShutdownMsg.tsx:129
+#: src/view/com/posts/FeedShutdownMsg.tsx:133
msgid "Replace with Discover"
msgstr "用「Discover」動態源取代"
@@ -4605,40 +4873,67 @@ msgstr "用「Discover」動態源取代"
msgid "Replies"
msgstr "回覆"
-#: src/components/WhoCanReply.tsx:71
+#: src/components/WhoCanReply.tsx:69
msgid "Replies disabled"
msgstr "回覆已被停用"
-#: src/components/WhoCanReply.tsx:243
-msgid "Replies to this thread are disabled"
-msgstr "此討論串的回覆已停用"
+#: src/components/WhoCanReply.tsx:215
+msgid "Replies to this post are disabled."
+msgstr "這則貼文的回覆已停用。"
-#: src/view/com/composer/Composer.tsx:507
+#: src/view/com/composer/Composer.tsx:562
msgctxt "action"
msgid "Reply"
msgstr "回覆"
-#: src/view/screens/PreferencesFollowingFeed.tsx:142
-msgid "Reply Filters"
-msgstr "回覆過濾器"
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+#: src/lib/moderation/useModerationCauseDescription.ts:123
+msgid "Reply Hidden by Thread Author"
+msgstr "回覆由此討論串的發佈者所隱藏"
-#: src/view/com/post/Post.tsx:197
-#: src/view/com/posts/FeedItem.tsx:458
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:122
+msgid "Reply Hidden by You"
+msgstr "回覆由您隱藏"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:355
+msgid "Reply settings"
+msgstr "回覆設定"
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:340
+msgid "Reply settings are chosen by the author of the thread"
+msgstr "由此討論串的發佈者選擇的回覆設定"
+
+#: src/view/com/post/Post.tsx:196
+#: src/view/com/posts/FeedItem.tsx:522
msgctxt "description"
msgid "Reply to <0><1/>0>"
msgstr "對 <0><1/>0> 回覆"
-#: src/view/com/posts/FeedItem.tsx:456
+#: src/view/com/posts/FeedItem.tsx:513
msgctxt "description"
msgid "Reply to a blocked post"
msgstr "對已被封鎖的貼文回覆"
-#: src/view/com/post/Post.tsx:195
-#: src/view/com/posts/FeedItem.tsx:454
+#: src/view/com/posts/FeedItem.tsx:515
+msgctxt "description"
+msgid "Reply to a post"
+msgstr "回覆這則貼文"
+
+#: src/view/com/post/Post.tsx:194
+#: src/view/com/posts/FeedItem.tsx:519
msgctxt "description"
msgid "Reply to you"
msgstr "對您回覆"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:332
+msgid "Reply visibility updated"
+msgstr "回覆可見性已更新"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:331
+msgid "Reply was successfully hidden"
+msgstr "回覆已成功隱藏"
+
#: src/components/dms/MessageMenu.tsx:132
#: src/components/dms/MessagesListBlockedFooter.tsx:77
#: src/components/dms/MessagesListBlockedFooter.tsx:84
@@ -4665,7 +4960,7 @@ msgstr "檢舉對話框"
msgid "Report feed"
msgstr "檢舉動態源"
-#: src/view/screens/ProfileList.tsx:485
+#: src/view/screens/ProfileList.tsx:541
msgid "Report List"
msgstr "檢舉列表"
@@ -4673,13 +4968,13 @@ msgstr "檢舉列表"
msgid "Report message"
msgstr "檢舉訊息"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:407
-#: src/view/com/util/forms/PostDropdownBtn.tsx:409
+#: src/view/com/util/forms/PostDropdownBtn.tsx:579
+#: src/view/com/util/forms/PostDropdownBtn.tsx:581
msgid "Report post"
msgstr "檢舉貼文"
-#: src/screens/StarterPack/StarterPackScreen.tsx:582
-#: src/screens/StarterPack/StarterPackScreen.tsx:585
+#: src/screens/StarterPack/StarterPackScreen.tsx:593
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
msgid "Report starter pack"
msgstr "檢舉入門包"
@@ -4713,47 +5008,48 @@ msgstr "檢舉這個入門包"
msgid "Report this user"
msgstr "檢舉這個用戶"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:65
-#: src/view/com/util/post-ctrls/RepostButton.tsx:94
-#: src/view/com/util/post-ctrls/RepostButton.tsx:110
+#: src/view/com/util/post-ctrls/RepostButton.tsx:67
+#: src/view/com/util/post-ctrls/RepostButton.tsx:96
+#: src/view/com/util/post-ctrls/RepostButton.tsx:112
msgctxt "action"
msgid "Repost"
msgstr "轉貼"
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Repost"
msgstr "轉貼"
-#: src/screens/StarterPack/StarterPackScreen.tsx:524
-#: src/view/com/util/post-ctrls/RepostButton.tsx:86
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:47
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:93
+#: src/screens/StarterPack/StarterPackScreen.tsx:535
+#: src/view/com/util/post-ctrls/RepostButton.tsx:88
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:49
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:104
msgid "Repost or quote post"
msgstr "轉貼或引用貼文"
-#: src/view/screens/PostRepostedBy.tsx:27
+#: src/screens/Post/PostRepostedBy.tsx:29
+#: src/view/com/post-thread/PostRepostedBy.tsx:96
msgid "Reposted By"
msgstr "轉貼"
-#: src/view/com/posts/FeedItem.tsx:263
+#: src/view/com/posts/FeedItem.tsx:294
msgid "Reposted by {0}"
msgstr "由 {0} 轉貼"
-#: src/view/com/posts/FeedItem.tsx:282
+#: src/view/com/posts/FeedItem.tsx:313
msgid "Reposted by <0><1/>0>"
msgstr "由 <0><1/>0> 轉貼"
-#: src/view/com/posts/FeedItem.tsx:261
-#: src/view/com/posts/FeedItem.tsx:280
+#: src/view/com/posts/FeedItem.tsx:292
+#: src/view/com/posts/FeedItem.tsx:311
msgid "Reposted by you"
msgstr "由您轉貼"
-#: src/view/com/notifications/FeedItem.tsx:188
+#: src/view/com/notifications/FeedItem.tsx:184
msgid "reposted your post"
msgstr "轉貼您的貼文"
-#: src/view/com/post-thread/PostThreadItem.tsx:202
+#: src/view/com/post-thread/PostThreadItem.tsx:209
msgid "Reposts of this post"
msgstr "轉貼這則貼文"
@@ -4767,7 +5063,7 @@ msgstr "請求變更"
msgid "Request Code"
msgstr "請求代碼"
-#: src/view/screens/AccessibilitySettings.tsx:88
+#: src/view/screens/AccessibilitySettings.tsx:92
msgid "Require alt text before posting"
msgstr "要求發佈前提供替代文字"
@@ -4792,8 +5088,8 @@ msgstr "重設碼"
msgid "Reset Code"
msgstr "重設碼"
-#: src/view/screens/Settings/index.tsx:902
-#: src/view/screens/Settings/index.tsx:905
+#: src/view/screens/Settings/index.tsx:866
+#: src/view/screens/Settings/index.tsx:869
msgid "Reset onboarding state"
msgstr "重設初始設定進行狀態"
@@ -4801,16 +5097,16 @@ msgstr "重設初始設定進行狀態"
msgid "Reset password"
msgstr "重設密碼"
-#: src/view/screens/Settings/index.tsx:882
-#: src/view/screens/Settings/index.tsx:885
+#: src/view/screens/Settings/index.tsx:846
+#: src/view/screens/Settings/index.tsx:849
msgid "Reset preferences state"
msgstr "重設偏好狀態"
-#: src/view/screens/Settings/index.tsx:903
+#: src/view/screens/Settings/index.tsx:867
msgid "Resets the onboarding state"
msgstr "重設初始設定狀態"
-#: src/view/screens/Settings/index.tsx:883
+#: src/view/screens/Settings/index.tsx:847
msgid "Resets the preferences state"
msgstr "重設偏好狀態"
@@ -4824,23 +5120,26 @@ msgid "Retries the last action, which errored out"
msgstr "重試上次出錯的操作"
#: src/components/dms/MessageItem.tsx:235
-#: src/components/Error.tsx:90
+#: src/components/Error.tsx:66
#: src/components/Lists.tsx:104
#: src/components/StarterPack/ProfileStarterPacks.tsx:318
#: src/screens/Login/LoginForm.tsx:311
#: src/screens/Login/LoginForm.tsx:318
#: src/screens/Messages/Conversation/MessageListError.tsx:25
-#: src/screens/Onboarding/StepInterests/index.tsx:250
-#: src/screens/Onboarding/StepInterests/index.tsx:253
+#: src/screens/Onboarding/StepInterests/index.tsx:251
+#: src/screens/Onboarding/StepInterests/index.tsx:254
#: src/screens/Signup/BackNextButtons.tsx:52
#: src/view/com/util/error/ErrorMessage.tsx:55
#: src/view/com/util/error/ErrorScreen.tsx:72
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:55
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx:57
msgid "Retry"
msgstr "重試"
-#: src/components/Error.tsx:98
-#: src/screens/StarterPack/StarterPackScreen.tsx:728
-#: src/view/screens/ProfileList.tsx:971
+#: src/components/Error.tsx:74
+#: src/screens/List/ListHiddenScreen.tsx:205
+#: src/screens/StarterPack/StarterPackScreen.tsx:739
+#: src/view/screens/ProfileList.tsx:1027
msgid "Return to previous page"
msgstr "返回上一頁"
@@ -4854,7 +5153,8 @@ msgid "Returns to previous page"
msgstr "返回上一頁"
#: src/components/dialogs/BirthDateSettings.tsx:125
-#: src/components/dialogs/ThreadgateEditor.tsx:88
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:438
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:445
#: src/components/StarterPack/QrCodeDialog.tsx:187
#: src/view/com/composer/GifAltText.tsx:162
#: src/view/com/composer/GifAltText.tsx:168
@@ -4904,7 +5204,7 @@ msgstr "儲存 QR Code"
msgid "Save to my feeds"
msgstr "儲存到我的動態源"
-#: src/view/screens/SavedFeeds.tsx:145
+#: src/view/screens/SavedFeeds.tsx:146
msgid "Saved Feeds"
msgstr "已儲存之動態源"
@@ -4913,7 +5213,7 @@ msgid "Saved to your camera roll"
msgstr "儲存至裝置相簿"
#: src/view/screens/ProfileFeed.tsx:201
-#: src/view/screens/ProfileList.tsx:300
+#: src/view/screens/ProfileList.tsx:356
msgid "Saved to your feeds"
msgstr "儲存到您的動態源"
@@ -4931,8 +5231,8 @@ msgstr "儲存圖片裁剪設定"
#: src/components/dms/ChatEmptyPill.tsx:33
#: src/components/NewskieDialog.tsx:105
-#: src/view/com/notifications/FeedItem.tsx:386
-#: src/view/com/notifications/FeedItem.tsx:411
+#: src/view/com/notifications/FeedItem.tsx:416
+#: src/view/com/notifications/FeedItem.tsx:441
msgid "Say hello!"
msgstr "說句「你好!👋」"
@@ -4941,13 +5241,12 @@ msgstr "說句「你好!👋」"
msgid "Science"
msgstr "科學"
-#: src/view/screens/ProfileList.tsx:927
+#: src/view/screens/ProfileList.tsx:983
msgid "Scroll to top"
msgstr "滾動到頂部"
#: src/components/dms/dialogs/SearchablePeopleList.tsx:504
-#: src/Navigation.tsx:537
-#: src/view/com/auth/LoggedOut.tsx:124
+#: src/Navigation.tsx:554
#: src/view/com/modals/ListAddRemoveUsers.tsx:76
#: src/view/com/util/forms/SearchInput.tsx:67
#: src/view/com/util/forms/SearchInput.tsx:79
@@ -4956,14 +5255,12 @@ msgstr "滾動到頂部"
#: src/view/screens/Search/Search.tsx:813
#: src/view/shell/bottom-bar/BottomBar.tsx:182
#: src/view/shell/desktop/LeftNav.tsx:354
-#: src/view/shell/desktop/Search.tsx:195
-#: src/view/shell/desktop/Search.tsx:204
-#: src/view/shell/Drawer.tsx:384
-#: src/view/shell/Drawer.tsx:385
+#: src/view/shell/Drawer.tsx:398
+#: src/view/shell/Drawer.tsx:399
msgid "Search"
msgstr "搜尋"
-#: src/view/shell/desktop/Search.tsx:236
+#: src/view/shell/desktop/Search.tsx:200
msgid "Search for \"{query}\""
msgstr "搜尋「{query}」"
@@ -4971,11 +5268,11 @@ msgstr "搜尋「{query}」"
msgid "Search for \"{searchText}\""
msgstr "搜尋「{searchText}」"
-#: src/components/TagMenu/index.tsx:145
+#: src/components/TagMenu/index.tsx:156
msgid "Search for all posts by @{authorHandle} with tag {displayTag}"
msgstr "搜尋所有由 @{authorHandle} 發佈並具有標籤 {displayTag} 的貼文"
-#: src/components/TagMenu/index.tsx:94
+#: src/components/TagMenu/index.tsx:105
msgid "Search for all posts with tag {displayTag}"
msgstr "搜尋所有具有標籤 {displayTag} 的貼文"
@@ -4983,8 +5280,6 @@ msgstr "搜尋所有具有標籤 {displayTag} 的貼文"
msgid "Search for feeds that you want to suggest to others."
msgstr "搜尋您想推薦給別人的動態源。"
-#: src/view/com/auth/LoggedOut.tsx:106
-#: src/view/com/auth/LoggedOut.tsx:107
#: src/view/com/modals/ListAddRemoveUsers.tsx:71
msgid "Search for users"
msgstr "搜尋用戶"
@@ -5008,23 +5303,27 @@ msgstr "搜尋 Tenor"
msgid "Security Step Required"
msgstr "所需的安全步驟"
-#: src/components/TagMenu/index.web.tsx:66
+#: src/components/TagMenu/index.web.tsx:77
msgid "See {truncatedTag} posts"
msgstr "搜尋 {truncatedTag}"
-#: src/components/TagMenu/index.web.tsx:83
+#: src/components/TagMenu/index.web.tsx:94
msgid "See {truncatedTag} posts by user"
msgstr "查看該用戶包含 {truncatedTag} 的貼文"
-#: src/components/TagMenu/index.tsx:128
+#: src/components/TagMenu/index.tsx:139
msgid "See <0>{displayTag}0> posts"
msgstr "搜尋 <0>{displayTag}0>"
-#: src/components/TagMenu/index.tsx:187
+#: src/components/TagMenu/index.tsx:198
msgid "See <0>{displayTag}0> posts by this user"
msgstr "查看該用戶包含 <0>{displayTag}0> 的貼文"
-#: src/view/screens/SavedFeeds.tsx:187
+#: src/view/com/auth/SplashScreen.web.tsx:162
+msgid "See jobs at Bluesky"
+msgstr "查看 Bluesky 的職缺"
+
+#: src/view/screens/SavedFeeds.tsx:188
msgid "See this guide"
msgstr "查看指南"
@@ -5060,7 +5359,11 @@ msgstr "選擇 GIF"
msgid "Select GIF \"{0}\""
msgstr "選擇 GIF「{0}」"
-#: src/view/screens/LanguageSettings.tsx:301
+#: src/components/dialogs/MutedWords.tsx:142
+msgid "Select how long to mute this word for."
+msgstr "選擇靜音此文字的時間長度。"
+
+#: src/view/screens/LanguageSettings.tsx:303
msgid "Select languages"
msgstr "選擇語言"
@@ -5076,7 +5379,7 @@ msgstr "選擇 {numItems} 個項目中的第 {i} 項"
msgid "Select the {emojiName} emoji as your avatar"
msgstr "選擇 {emojiName} 表情符號作為您的頭像"
-#: src/components/ReportDialog/SubmitView.tsx:152
+#: src/components/ReportDialog/SubmitView.tsx:139
msgid "Select the moderation service(s) to report to"
msgstr "選擇要向哪些內容管理服務提供者提出檢舉"
@@ -5088,7 +5391,11 @@ msgstr "選擇用來託管您的資料的服務商。"
msgid "Select video"
msgstr "選擇影片"
-#: src/view/screens/LanguageSettings.tsx:283
+#: src/components/dialogs/MutedWords.tsx:242
+msgid "Select what content this mute word should apply to."
+msgstr "選擇此靜音文字應套用於哪些內容。"
+
+#: src/view/screens/LanguageSettings.tsx:285
msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown."
msgstr "選擇您希望訂閱的動態源中所包含的語言。未選擇任何語言時會預設顯示所有語言。"
@@ -5100,11 +5407,11 @@ msgstr "選擇應用程式中的預設語言。"
msgid "Select your date of birth"
msgstr "選擇您的出生日期"
-#: src/screens/Onboarding/StepInterests/index.tsx:225
+#: src/screens/Onboarding/StepInterests/index.tsx:226
msgid "Select your interests from the options below"
msgstr "從下面選擇您感興趣的選項"
-#: src/view/screens/LanguageSettings.tsx:192
+#: src/view/screens/LanguageSettings.tsx:193
msgid "Select your preferred language for translations in your feed."
msgstr "選擇您在動態中翻譯的偏好目標語言。"
@@ -5126,7 +5433,7 @@ msgctxt "action"
msgid "Send Email"
msgstr "發送電子郵件"
-#: src/view/shell/Drawer.tsx:325
+#: src/view/shell/Drawer.tsx:339
msgid "Send feedback"
msgstr "提交意見"
@@ -5141,8 +5448,8 @@ msgstr "傳送貼文給…"
#: src/components/dms/ReportDialog.tsx:234
#: src/components/dms/ReportDialog.tsx:237
-#: src/components/ReportDialog/SubmitView.tsx:232
-#: src/components/ReportDialog/SubmitView.tsx:236
+#: src/components/ReportDialog/SubmitView.tsx:219
+#: src/components/ReportDialog/SubmitView.tsx:223
msgid "Send report"
msgstr "提交檢舉"
@@ -5155,8 +5462,8 @@ msgstr "將檢舉提交至 {0}"
msgid "Send verification email"
msgstr "發送驗證電子郵件"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:299
-#: src/view/com/util/forms/PostDropdownBtn.tsx:302
+#: src/view/com/util/forms/PostDropdownBtn.tsx:399
+#: src/view/com/util/forms/PostDropdownBtn.tsx:402
msgid "Send via direct message"
msgstr "透過私人訊息發送"
@@ -5168,7 +5475,7 @@ msgstr "發送包含帳號刪除確認碼的電子郵件"
msgid "Server address"
msgstr "伺服器地址"
-#: src/screens/Moderation/index.tsx:307
+#: src/screens/Moderation/index.tsx:316
msgid "Set birthdate"
msgstr "設定生日"
@@ -5176,15 +5483,15 @@ msgstr "設定生日"
msgid "Set new password"
msgstr "設定新密碼"
-#: src/view/screens/PreferencesFollowingFeed.tsx:223
+#: src/view/screens/PreferencesFollowingFeed.tsx:121
msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible."
msgstr "將此選項設為「關」以隱藏動態中所有引用的貼文,但轉貼依然會顯示。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:120
+#: src/view/screens/PreferencesFollowingFeed.tsx:63
msgid "Set this setting to \"No\" to hide all replies from your feed."
msgstr "將此選項設為「關」以隱藏動態中所有回覆貼文。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:189
+#: src/view/screens/PreferencesFollowingFeed.tsx:87
msgid "Set this setting to \"No\" to hide all reposts from your feed."
msgstr "將此選項設為「關」以隱藏動態的所有轉貼貼文。"
@@ -5192,7 +5499,7 @@ msgstr "將此選項設為「關」以隱藏動態的所有轉貼貼文。"
msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature."
msgstr "將此選項設為「開」以單頁顯示樹狀回覆,這是一項實驗性功能。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:259
+#: src/view/screens/PreferencesFollowingFeed.tsx:157
msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature."
msgstr "將此選項設為「是」以在「Following」動態源中顯示您已儲存之動態源中的選錄貼文,這是一項實驗性功能。"
@@ -5204,26 +5511,6 @@ msgstr "設定您的帳號"
msgid "Sets Bluesky username"
msgstr "設定 Bluesky 帳號代碼"
-#: src/view/screens/Settings/index.tsx:463
-msgid "Sets color theme to dark"
-msgstr "將色彩主題設定為深色"
-
-#: src/view/screens/Settings/index.tsx:456
-msgid "Sets color theme to light"
-msgstr "將色彩主題設定為亮色"
-
-#: src/view/screens/Settings/index.tsx:450
-msgid "Sets color theme to system setting"
-msgstr "將色彩主題設定為跟隨系統"
-
-#: src/view/screens/Settings/index.tsx:489
-msgid "Sets dark theme to the dark theme"
-msgstr "將深色主題設定為深色"
-
-#: src/view/screens/Settings/index.tsx:482
-msgid "Sets dark theme to the dim theme"
-msgstr "將深色主題設定為昏暗"
-
#: src/screens/Login/ForgotPasswordForm.tsx:113
msgid "Sets email for password reset"
msgstr "設定用於重設密碼的電子郵件"
@@ -5240,11 +5527,11 @@ msgstr "將圖片比例設定為高"
msgid "Sets image aspect ratio to wide"
msgstr "將圖片比例設定為寬"
-#: src/Navigation.tsx:153
-#: src/view/screens/Settings/index.tsx:334
+#: src/Navigation.tsx:155
+#: src/view/screens/Settings/index.tsx:302
#: src/view/shell/desktop/LeftNav.tsx:401
-#: src/view/shell/Drawer.tsx:549
-#: src/view/shell/Drawer.tsx:550
+#: src/view/shell/Drawer.tsx:563
+#: src/view/shell/Drawer.tsx:564
msgid "Settings"
msgstr "設定"
@@ -5257,14 +5544,14 @@ msgid "Sexually Suggestive"
msgstr "性暗示"
#: src/components/StarterPack/QrCodeDialog.tsx:177
-#: src/screens/StarterPack/StarterPackScreen.tsx:400
-#: src/screens/StarterPack/StarterPackScreen.tsx:571
+#: src/screens/StarterPack/StarterPackScreen.tsx:411
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
#: src/view/com/profile/ProfileMenu.tsx:219
#: src/view/com/profile/ProfileMenu.tsx:228
-#: src/view/com/util/forms/PostDropdownBtn.tsx:310
-#: src/view/com/util/forms/PostDropdownBtn.tsx:319
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:311
-#: src/view/screens/ProfileList.tsx:428
+#: src/view/com/util/forms/PostDropdownBtn.tsx:410
+#: src/view/com/util/forms/PostDropdownBtn.tsx:419
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:321
+#: src/view/screens/ProfileList.tsx:484
msgid "Share"
msgstr "分享"
@@ -5282,8 +5569,8 @@ msgid "Share a fun fact!"
msgstr "分享一個趣聞!📰"
#: src/view/com/profile/ProfileMenu.tsx:377
-#: src/view/com/util/forms/PostDropdownBtn.tsx:464
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:327
+#: src/view/com/util/forms/PostDropdownBtn.tsx:659
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:337
msgid "Share anyway"
msgstr "仍然分享"
@@ -5294,7 +5581,7 @@ msgstr "分享動態源"
#: src/components/StarterPack/ShareDialog.tsx:124
#: src/components/StarterPack/ShareDialog.tsx:131
-#: src/screens/StarterPack/StarterPackScreen.tsx:575
+#: src/screens/StarterPack/StarterPackScreen.tsx:586
msgid "Share link"
msgstr "分享連結"
@@ -5312,7 +5599,7 @@ msgstr "分享連結對話窗"
msgid "Share QR code"
msgstr "分享 QR Code"
-#: src/screens/StarterPack/StarterPackScreen.tsx:393
+#: src/screens/StarterPack/StarterPackScreen.tsx:404
msgid "Share this starter pack"
msgstr "分享這個入門包"
@@ -5324,7 +5611,7 @@ msgstr "分享這個入門包,以幫助別人加入您在 Bluesky 的社群。
msgid "Share your favorite feed!"
msgstr "分享您喜愛的動態!"
-#: src/Navigation.tsx:242
+#: src/Navigation.tsx:251
msgid "Shared Preferences Tester"
msgstr "共享偏好測試器"
@@ -5335,7 +5622,7 @@ msgstr "分享網站的連結"
#: src/components/moderation/ContentHider.tsx:116
#: src/components/moderation/LabelPreference.tsx:136
#: src/components/moderation/PostHider.tsx:122
-#: src/view/screens/Settings/index.tsx:383
+#: src/view/screens/Settings/index.tsx:351
msgid "Show"
msgstr "顯示"
@@ -5343,8 +5630,9 @@ msgstr "顯示"
msgid "Show alt text"
msgstr "顯示替代文字"
-#: src/components/moderation/ScreenHider.tsx:169
-#: src/components/moderation/ScreenHider.tsx:172
+#: src/components/moderation/ScreenHider.tsx:178
+#: src/components/moderation/ScreenHider.tsx:181
+#: src/screens/List/ListHiddenScreen.tsx:176
msgid "Show anyway"
msgstr "仍然顯示"
@@ -5365,19 +5653,23 @@ msgstr "顯示類似於 {0} 的跟隨者"
msgid "Show hidden replies"
msgstr "顯示隱藏回覆"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:349
-#: src/view/com/util/forms/PostDropdownBtn.tsx:351
+#: src/view/com/util/forms/PostDropdownBtn.tsx:449
+#: src/view/com/util/forms/PostDropdownBtn.tsx:451
msgid "Show less like this"
msgstr "減少顯示此類內容"
-#: src/view/com/post-thread/PostThreadItem.tsx:530
-#: src/view/com/post/Post.tsx:235
-#: src/view/com/posts/FeedItem.tsx:410
+#: src/screens/List/ListHiddenScreen.tsx:172
+msgid "Show list anyway"
+msgstr "仍然顯示列表"
+
+#: src/view/com/post-thread/PostThreadItem.tsx:584
+#: src/view/com/post/Post.tsx:234
+#: src/view/com/posts/FeedItem.tsx:479
msgid "Show More"
msgstr "顯示更多"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:341
-#: src/view/com/util/forms/PostDropdownBtn.tsx:343
+#: src/view/com/util/forms/PostDropdownBtn.tsx:441
+#: src/view/com/util/forms/PostDropdownBtn.tsx:443
msgid "Show more like this"
msgstr "顯示更多此類內容"
@@ -5385,15 +5677,15 @@ msgstr "顯示更多此類內容"
msgid "Show muted replies"
msgstr "顯示靜音回覆"
-#: src/view/screens/PreferencesFollowingFeed.tsx:256
+#: src/view/screens/PreferencesFollowingFeed.tsx:154
msgid "Show Posts from My Feeds"
msgstr "顯示來自我的動態源之貼文"
-#: src/view/screens/PreferencesFollowingFeed.tsx:220
+#: src/view/screens/PreferencesFollowingFeed.tsx:118
msgid "Show Quote Posts"
msgstr "顯示引用貼文"
-#: src/view/screens/PreferencesFollowingFeed.tsx:117
+#: src/view/screens/PreferencesFollowingFeed.tsx:60
msgid "Show Replies"
msgstr "顯示回覆"
@@ -5401,7 +5693,12 @@ msgstr "顯示回覆"
msgid "Show replies by people you follow before all other replies."
msgstr "在所有其他回覆之前顯示您跟隨的人的回覆。"
-#: src/view/screens/PreferencesFollowingFeed.tsx:186
+#: src/view/com/util/forms/PostDropdownBtn.tsx:517
+#: src/view/com/util/forms/PostDropdownBtn.tsx:527
+msgid "Show reply for everyone"
+msgstr "為所有人顯示回覆"
+
+#: src/view/screens/PreferencesFollowingFeed.tsx:84
msgid "Show Reposts"
msgstr "顯示轉貼貼文"
@@ -5459,11 +5756,15 @@ msgstr "登入或建立您的帳號即可加入對話!"
msgid "Sign into Bluesky or create a new account"
msgstr "登入 Bluesky 或建立新帳號"
-#: src/view/screens/Settings/index.tsx:130
-#: src/view/screens/Settings/index.tsx:134
+#: src/view/screens/Settings/index.tsx:432
msgid "Sign out"
msgstr "登出"
+#: src/view/screens/Settings/index.tsx:420
+#: src/view/screens/Settings/index.tsx:430
+msgid "Sign out of all accounts"
+msgstr "登出所有帳戶"
+
#: src/view/shell/bottom-bar/BottomBar.tsx:305
#: src/view/shell/bottom-bar/BottomBar.tsx:306
#: src/view/shell/bottom-bar/BottomBar.tsx:308
@@ -5485,7 +5786,7 @@ msgstr "註冊或登入即可參與對話"
msgid "Sign-in Required"
msgstr "需要登入"
-#: src/view/screens/Settings/index.tsx:393
+#: src/view/screens/Settings/index.tsx:361
msgid "Signed in as"
msgstr "登入身分"
@@ -5494,21 +5795,25 @@ msgstr "登入身分"
msgid "Signed in as @{0}"
msgstr "以 @{0} 身分登入"
-#: src/view/com/notifications/FeedItem.tsx:209
+#: src/view/com/notifications/FeedItem.tsx:222
msgid "signed up with your starter pack"
msgstr "用您的入門包註冊"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:306
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:313
msgid "Signup without a starter pack"
msgstr "不使用入門包註冊"
-#: src/screens/Onboarding/StepInterests/index.tsx:264
-#: src/screens/StarterPack/Wizard/index.tsx:192
+#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:102
+msgid "Similar accounts"
+msgstr "類似的帳號"
+
+#: src/screens/Onboarding/StepInterests/index.tsx:265
+#: src/screens/StarterPack/Wizard/index.tsx:191
msgid "Skip"
msgstr "跳過"
-#: src/screens/Onboarding/StepInterests/index.tsx:261
+#: src/screens/Onboarding/StepInterests/index.tsx:262
msgid "Skip this flow"
msgstr "跳過此流程"
@@ -5517,12 +5822,11 @@ msgstr "跳過此流程"
msgid "Software Dev"
msgstr "軟體開發"
-#: src/components/FeedInterstitials.tsx:382
+#: src/components/FeedInterstitials.tsx:397
msgid "Some other feeds you might like"
msgstr "其他您可能喜歡的動態源"
-#: src/components/WhoCanReply.tsx:72
-#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47
+#: src/components/WhoCanReply.tsx:70
msgid "Some people can reply"
msgstr "僅部分人可以回覆"
@@ -5541,13 +5845,13 @@ msgstr "發生了一些問題,請再試一次"
msgid "Something went wrong, please try again."
msgstr "發生了一些問題,請再試一次。"
-#: src/components/Lists.tsx:192
+#: src/components/Lists.tsx:200
#: src/view/screens/NotificationsSettings.tsx:46
msgid "Something went wrong!"
-msgstr ""
+msgstr "發生了一些問題!"
-#: src/App.native.tsx:99
-#: src/App.web.tsx:81
+#: src/App.native.tsx:102
+#: src/App.web.tsx:83
msgid "Sorry! Your session expired. Please log in again."
msgstr "抱歉!您的登入會話已過期。請重新登入。"
@@ -5559,9 +5863,9 @@ msgstr "排序回覆"
msgid "Sort replies to the same post by:"
msgstr "對同一貼文的回覆進行排序:"
-#: src/components/moderation/LabelsOnMeDialog.tsx:169
-msgid "Source: <0>{0}0>"
-msgstr "來源:<0>{0}0>"
+#: src/components/moderation/LabelsOnMeDialog.tsx:171
+msgid "Source: <0>{sourceName}0>"
+msgstr "來源:{sourceName}"
#: src/lib/moderation/useReportOptions.ts:67
#: src/lib/moderation/useReportOptions.ts:80
@@ -5598,17 +5902,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar
msgstr "開始入門指南吧!若需取得更多選項請點選下一步,或點選跳過。"
#: src/lib/generate-starterpack.ts:68
-#: src/Navigation.tsx:341
-#: src/Navigation.tsx:346
-#: src/screens/StarterPack/Wizard/index.tsx:183
+#: src/Navigation.tsx:358
+#: src/Navigation.tsx:363
+#: src/screens/StarterPack/Wizard/index.tsx:182
msgid "Starter Pack"
msgstr "入門包"
-#: src/components/StarterPack/StarterPackCard.tsx:70
+#: src/components/StarterPack/StarterPackCard.tsx:73
msgid "Starter pack by {0}"
msgstr "由 {0} 建立的入門包"
-#: src/screens/StarterPack/StarterPackScreen.tsx:692
+#: src/screens/StarterPack/StarterPackScreen.tsx:703
msgid "Starter pack is invalid"
msgstr "無效的入門包"
@@ -5620,31 +5924,31 @@ msgstr "入門包"
msgid "Starter packs let you easily share your favorite feeds and people with your friends."
msgstr "入門包讓您輕鬆地分享您喜愛的動態源與人物給您的朋友。"
-#: src/view/screens/Settings/index.tsx:965
+#: src/view/screens/Settings/index.tsx:917
msgid "Status Page"
msgstr "服務運作狀態頁面"
-#: src/screens/Signup/index.tsx:125
+#: src/screens/Signup/index.tsx:136
msgid "Step {0} of {1}"
msgstr "第 {0} 步(共 {1} 步)"
-#: src/view/screens/Settings/index.tsx:306
+#: src/view/screens/Settings/index.tsx:278
msgid "Storage cleared, you need to restart the app now."
msgstr "已清除儲存資料,您需要立即重啟應用程式。"
-#: src/Navigation.tsx:232
-#: src/view/screens/Settings/index.tsx:865
+#: src/Navigation.tsx:241
+#: src/view/screens/Settings/index.tsx:829
msgid "Storybook"
msgstr "故事書"
-#: src/components/moderation/LabelsOnMeDialog.tsx:311
-#: src/components/moderation/LabelsOnMeDialog.tsx:312
+#: src/components/moderation/LabelsOnMeDialog.tsx:302
+#: src/components/moderation/LabelsOnMeDialog.tsx:303
#: src/screens/Messages/Conversation/ChatDisabled.tsx:142
#: src/screens/Messages/Conversation/ChatDisabled.tsx:143
msgid "Submit"
msgstr "提交"
-#: src/view/screens/ProfileList.tsx:644
+#: src/view/screens/ProfileList.tsx:700
msgid "Subscribe"
msgstr "訂閱"
@@ -5660,16 +5964,15 @@ msgstr "訂閱標記者"
msgid "Subscribe to this labeler"
msgstr "訂閱這個標記者"
-#: src/view/screens/ProfileList.tsx:640
+#: src/view/screens/ProfileList.tsx:696
msgid "Subscribe to this list"
msgstr "訂閱這個列表"
-#: src/view/screens/Search/Explore.tsx:333
+#: src/view/screens/Search/Explore.tsx:332
msgid "Suggested accounts"
msgstr "推薦的帳號"
-#: src/components/FeedInterstitials.tsx:250
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65
+#: src/components/FeedInterstitials.tsx:262
msgid "Suggested for you"
msgstr "為您推薦"
@@ -5677,7 +5980,7 @@ msgstr "為您推薦"
msgid "Suggestive"
msgstr "性暗示"
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:261
#: src/view/screens/Support.tsx:30
#: src/view/screens/Support.tsx:33
msgid "Support"
@@ -5692,30 +5995,31 @@ msgstr "切換帳號"
msgid "Switch between feeds to control your experience."
msgstr "在動態源之間切換以掌控您的體驗。"
-#: src/view/screens/Settings/index.tsx:161
+#: src/view/screens/Settings/index.tsx:126
msgid "Switch to {0}"
msgstr "切換到 {0}"
-#: src/view/screens/Settings/index.tsx:162
+#: src/view/screens/Settings/index.tsx:127
msgid "Switches the account you are logged in to"
-msgstr "切換您登入的帳號"
+msgstr ""
-#: src/view/screens/Settings/index.tsx:447
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:87
msgid "System"
msgstr "系統"
-#: src/view/screens/Settings/index.tsx:853
+#: src/view/screens/Settings/index.tsx:817
msgid "System log"
msgstr "系統日誌"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "tag"
-msgstr "標籤"
-
-#: src/components/TagMenu/index.tsx:78
+#: src/components/TagMenu/index.tsx:89
msgid "Tag menu: {displayTag}"
msgstr "標籤選單:{displayTag}"
+#: src/components/dialogs/MutedWords.tsx:282
+msgid "Tags only"
+msgstr "僅限標籤"
+
#: src/view/com/modals/crop-image/CropImage.web.tsx:135
msgid "Tall"
msgstr "高"
@@ -5724,11 +6028,19 @@ msgstr "高"
msgid "Tap to dismiss"
msgstr "點擊以跳過"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:181
+msgid "Tap to enter full screen"
+msgstr "點擊以進入全螢幕"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:202
+msgid "Tap to toggle sound"
+msgstr "點擊以開關聲音"
+
#: src/view/com/util/images/AutoSizedImage.tsx:70
msgid "Tap to view fully"
msgstr "點擊查看完整內容"
-#: src/state/shell/progress-guide.tsx:171
+#: src/state/shell/progress-guide.tsx:166
msgid "Task complete - 10 likes!"
msgstr "任務完成 - 10 個喜歡!"
@@ -5753,11 +6065,11 @@ msgstr "告訴我們更多"
msgid "Terms"
msgstr "條款"
-#: src/Navigation.tsx:262
-#: src/screens/Signup/StepInfo/Policies.tsx:49
-#: src/view/screens/Settings/index.tsx:953
+#: src/Navigation.tsx:271
+#: src/screens/Signup/StepInfo/Policies.tsx:52
+#: src/view/screens/Settings/index.tsx:905
#: src/view/screens/TermsOfService.tsx:29
-#: src/view/shell/Drawer.tsx:278
+#: src/view/shell/Drawer.tsx:292
msgid "Terms of Service"
msgstr "服務條款"
@@ -5768,17 +6080,17 @@ msgstr "服務條款"
msgid "Terms used violate community standards"
msgstr "所使用的文字違反了社群標準"
-#: src/components/dialogs/MutedWords.tsx:323
-msgid "text"
-msgstr "文字"
+#: src/components/dialogs/MutedWords.tsx:266
+msgid "Text & tags"
+msgstr "文字和標籤"
-#: src/components/moderation/LabelsOnMeDialog.tsx:275
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/screens/Messages/Conversation/ChatDisabled.tsx:108
msgid "Text input field"
msgstr "文字輸入框"
#: src/components/dms/ReportDialog.tsx:134
-#: src/components/ReportDialog/SubmitView.tsx:93
+#: src/components/ReportDialog/SubmitView.tsx:81
msgid "Thank you. Your report has been sent."
msgstr "謝謝,您的檢舉已提交。"
@@ -5786,24 +6098,37 @@ msgstr "謝謝,您的檢舉已提交。"
msgid "That contains the following:"
msgstr "其中包含以下內容:"
-#: src/screens/Signup/StepHandle.tsx:50
+#: src/screens/Signup/StepHandle.tsx:51
msgid "That handle is already taken."
msgstr "這個帳號代碼已被使用。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:96
#: src/screens/StarterPack/StarterPackScreen.tsx:97
-#: src/screens/StarterPack/StarterPackScreen.tsx:136
+#: src/screens/StarterPack/StarterPackScreen.tsx:98
#: src/screens/StarterPack/StarterPackScreen.tsx:137
-#: src/screens/StarterPack/Wizard/index.tsx:106
-#: src/screens/StarterPack/Wizard/index.tsx:114
+#: src/screens/StarterPack/StarterPackScreen.tsx:138
+#: src/screens/StarterPack/Wizard/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:113
msgid "That starter pack could not be found."
msgstr "找不到那個入門包。"
+#: src/view/com/post-thread/PostQuotes.tsx:129
+msgid "That's all, folks!"
+msgstr "大功告成!"
+
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
#: src/view/com/profile/ProfileMenu.tsx:353
msgid "The account will be able to interact with you after unblocking."
msgstr "解除封鎖後,該帳號將能夠與您互動。"
+#: src/components/moderation/ModerationDetailsDialog.tsx:118
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "The author of this thread has hidden this reply."
+msgstr "此討論串的發布者已隱藏這個回覆。"
+
+#: src/screens/Moderation/index.tsx:368
+msgid "The Bluesky web application"
+msgstr "Bluesky 網頁應用程式"
+
#: src/view/screens/CommunityGuidelines.tsx:36
msgid "The Community Guidelines have been moved to <0/>"
msgstr "社群準則已移動到 <0/>"
@@ -5812,12 +6137,16 @@ msgstr "社群準則已移動到 <0/>"
msgid "The Copyright Policy has been moved to <0/>"
msgstr "版權政策已移動到 <0/>"
+#: src/view/com/posts/FeedShutdownMsg.tsx:102
+msgid "The Discover feed"
+msgstr "Discover 動態源"
+
+#: src/state/shell/progress-guide.tsx:167
#: src/state/shell/progress-guide.tsx:172
-#: src/state/shell/progress-guide.tsx:177
msgid "The Discover feed now knows what you like"
msgstr "「Discover」動態源現在知道您喜歡什麼"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327
msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從您離開的地方繼續。"
@@ -5825,11 +6154,11 @@ msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們
msgid "The feed has been replaced with Discover."
msgstr "此動態源已由「Discover」取代。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:66
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
msgid "The following labels were applied to your account."
msgstr "以下標記已套用到您的帳號。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:67
+#: src/components/moderation/LabelsOnMeDialog.tsx:66
msgid "The following labels were applied to your content."
msgstr "以下標記已套用到您的內容。"
@@ -5837,8 +6166,8 @@ msgstr "以下標記已套用到您的內容。"
msgid "The following steps will help customize your Bluesky experience."
msgstr "以下步驟將幫助自訂您的 Bluesky 體驗。"
-#: src/view/com/post-thread/PostThread.tsx:189
-#: src/view/com/post-thread/PostThread.tsx:201
+#: src/view/com/post-thread/PostThread.tsx:208
+#: src/view/com/post-thread/PostThread.tsx:220
msgid "The post may have been deleted."
msgstr "這則貼文可能已被刪除。"
@@ -5846,7 +6175,11 @@ msgstr "這則貼文可能已被刪除。"
msgid "The Privacy Policy has been moved to <0/>"
msgstr "隱私政策已移動到 <0/>"
-#: src/screens/StarterPack/StarterPackScreen.tsx:702
+#: src/state/queries/video/video.ts:129
+msgid "The selected video is larger than 100MB."
+msgstr "選擇的影片檔案大小超過 100MB。"
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:713
msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
msgstr "您正在嘗試查看的入門包無效。您可以考慮刪除這個入門包。"
@@ -5883,24 +6216,24 @@ msgid "There was an issue connecting to Tenor."
msgstr "連線到 Tenor 時出現問題。"
#: src/view/screens/ProfileFeed.tsx:235
-#: src/view/screens/ProfileList.tsx:303
-#: src/view/screens/ProfileList.tsx:322
-#: src/view/screens/SavedFeeds.tsx:237
-#: src/view/screens/SavedFeeds.tsx:263
-#: src/view/screens/SavedFeeds.tsx:289
+#: src/view/screens/ProfileList.tsx:359
+#: src/view/screens/ProfileList.tsx:378
+#: src/view/screens/SavedFeeds.tsx:238
+#: src/view/screens/SavedFeeds.tsx:264
+#: src/view/screens/SavedFeeds.tsx:290
msgid "There was an issue contacting the server"
msgstr "連線伺服器時出現問題"
-#: src/view/com/feeds/FeedSourceCard.tsx:128
-#: src/view/com/feeds/FeedSourceCard.tsx:141
+#: src/view/com/feeds/FeedSourceCard.tsx:127
+#: src/view/com/feeds/FeedSourceCard.tsx:140
msgid "There was an issue contacting your server"
msgstr "連線伺服器時出現問題"
-#: src/view/com/notifications/Feed.tsx:130
+#: src/view/com/notifications/Feed.tsx:129
msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "取得通知時發生問題,點擊這裡重試。"
-#: src/view/com/posts/Feed.tsx:459
+#: src/view/com/posts/Feed.tsx:460
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "取得貼文時發生問題,點擊這裡重試。"
@@ -5908,13 +6241,13 @@ msgstr "取得貼文時發生問題,點擊這裡重試。"
msgid "There was an issue fetching the list. Tap here to try again."
msgstr "取得列表時發生問題,點擊這裡重試。"
-#: src/view/com/feeds/ProfileFeedgens.tsx:149
-#: src/view/com/lists/ProfileLists.tsx:159
+#: src/view/com/feeds/ProfileFeedgens.tsx:150
+#: src/view/com/lists/ProfileLists.tsx:154
msgid "There was an issue fetching your lists. Tap here to try again."
msgstr "取得列表時發生問題,點擊這裡重試。"
#: src/components/dms/ReportDialog.tsx:222
-#: src/components/ReportDialog/SubmitView.tsx:98
+#: src/components/ReportDialog/SubmitView.tsx:86
msgid "There was an issue sending your report. Please check your internet connection."
msgstr "提交您的檢舉時出現問題,請檢查您的網路連線。"
@@ -5936,16 +6269,19 @@ msgstr "取得應用程式專用密碼時發生問題"
msgid "There was an issue! {0}"
msgstr "發生問題!{0}"
-#: src/components/WhoCanReply.tsx:116
-#: src/view/screens/ProfileList.tsx:335
-#: src/view/screens/ProfileList.tsx:349
-#: src/view/screens/ProfileList.tsx:363
-#: src/view/screens/ProfileList.tsx:377
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:182
+#: src/screens/List/ListHiddenScreen.tsx:63
+#: src/screens/List/ListHiddenScreen.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:99
+#: src/view/screens/ProfileList.tsx:391
+#: src/view/screens/ProfileList.tsx:405
+#: src/view/screens/ProfileList.tsx:419
+#: src/view/screens/ProfileList.tsx:433
msgid "There was an issue. Please check your internet connection and try again."
msgstr "發生問題了。請檢查您的網路連線並重試。"
#: src/components/dialogs/GifSelect.ios.tsx:239
-#: src/components/dialogs/GifSelect.tsx:257
+#: src/components/dialogs/GifSelect.tsx:259
#: src/view/com/util/ErrorBoundary.tsx:57
msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
msgstr "應用程式中發生了意外問題。請告訴我們是否發生在您身上!"
@@ -5954,11 +6290,11 @@ msgstr "應用程式中發生了意外問題。請告訴我們是否發生在您
msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can."
msgstr "Bluesky 迎來了大量新用戶!我們將儘快啟用您的帳號。"
-#: src/components/moderation/ScreenHider.tsx:116
+#: src/components/moderation/ScreenHider.tsx:117
msgid "This {screenDescription} has been flagged:"
msgstr "{screenDescription} 已被標記:"
-#: src/components/moderation/ScreenHider.tsx:111
+#: src/components/moderation/ScreenHider.tsx:112
msgid "This account has requested that users sign in to view their profile."
msgstr "此帳號要求使用者登入後才能查看其個人檔案。"
@@ -5966,9 +6302,9 @@ msgstr "此帳號要求使用者登入後才能查看其個人檔案。"
msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
msgstr "此帳號已被一個或多個內容管理清單封鎖。若要解除封鎖,請檢查這些清單並刪除此使用者。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:260
-msgid "This appeal will be sent to <0>{0}0>."
-msgstr "此申訴將被提交至 <0>{0}0>。"
+#: src/components/moderation/LabelsOnMeDialog.tsx:250
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr "此申訴將被提交至 <0>{sourceName}0>。"
#: src/screens/Messages/Conversation/ChatDisabled.tsx:104
msgid "This appeal will be sent to Bluesky's moderation service."
@@ -5990,8 +6326,8 @@ msgstr "此內容已套用內容管理提供者所標記的普通警告。"
msgid "This content is hosted by {0}. Do you want to enable external media?"
msgstr "此內容由 {0} 託管。是否要啟用外部媒體?"
-#: src/components/moderation/ModerationDetailsDialog.tsx:77
-#: src/lib/moderation/useModerationCauseDescription.ts:79
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:82
msgid "This content is not available because one of the users involved has blocked the other."
msgstr "由於有用戶被另一個用戶封鎖,導致無法查看此內容。"
@@ -6017,7 +6353,7 @@ msgstr "這個動態源是空的!您或許需要先跟隨更多的人或檢查
#: src/components/StarterPack/Main/PostsList.tsx:36
#: src/view/screens/ProfileFeed.tsx:474
-#: src/view/screens/ProfileList.tsx:729
+#: src/view/screens/ProfileList.tsx:785
msgid "This feed is empty."
msgstr "這裡是空的。"
@@ -6033,15 +6369,15 @@ msgstr "此資訊不會分享給其他用戶。"
msgid "This is important in case you ever need to change your email or reset your password."
msgstr "這很重要,以防您將來需要更改電子郵件地址或重設密碼。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:127
+#: src/components/moderation/ModerationDetailsDialog.tsx:144
msgid "This label was applied by <0>{0}0>."
msgstr "此標記由 <0>{0}0> 新增。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:125
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
msgid "This label was applied by the author."
msgstr "此標記由發布者新增。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:167
+#: src/components/moderation/LabelsOnMeDialog.tsx:169
msgid "This label was applied by you."
msgstr "此標記由您新增。"
@@ -6053,7 +6389,11 @@ msgstr "此標記者尚未宣告它發佈的標記,而且可能不會生效。
msgid "This link is taking you to the following website:"
msgstr "此連結將帶您到以下網站:"
-#: src/view/screens/ProfileList.tsx:907
+#: src/screens/List/ListHiddenScreen.tsx:136
+msgid "This list - created by <0>{0}0> - contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr "此列表由 <0>{0}0> 創建,其名稱或說明中可能包含違反 Bluesky 社群準則的內容。"
+
+#: src/view/screens/ProfileList.tsx:963
msgid "This list is empty!"
msgstr "此列表為空!"
@@ -6065,23 +6405,31 @@ msgstr "此內容管理服務暫時無法使用,詳情請見下文。如果問
msgid "This name is already in use"
msgstr "此名稱已被使用"
-#: src/view/com/post-thread/PostThreadItem.tsx:135
+#: src/view/com/post-thread/PostThreadItem.tsx:140
msgid "This post has been deleted."
msgstr "這則貼文已被刪除。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:461
-#: src/view/com/util/post-ctrls/PostCtrls.tsx:324
+#: src/view/com/util/forms/PostDropdownBtn.tsx:656
+#: src/view/com/util/post-ctrls/PostCtrls.tsx:334
msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "只有登入用戶能見到這則貼文,未登入的人將看不到它。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:443
-msgid "This post will be hidden from feeds."
-msgstr "這則貼文將從動態隱藏。"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:637
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr "這則貼文將從討論串及動態源中被隱藏,這個操作無法撤銷。"
+
+#: src/view/com/composer/useExternalLinkFetch.ts:67
+msgid "This post's author has disabled quote posts."
+msgstr "這則貼文的發布者已停用引用。"
#: src/view/com/profile/ProfileMenu.tsx:374
msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't logged in."
msgstr "只有登入用戶能見到此個人檔案。 未登入的人將看不到它。"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:699
+msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others."
+msgstr "此回覆將被分類到您討論串底部的隱藏部分,並將為您自己和其他人靜音後續回覆的通知。"
+
#: src/screens/Signup/StepInfo/Policies.tsx:37
msgid "This service has not provided terms of service or a privacy policy."
msgstr "此服務尚未提供服務條款或隱私政策。"
@@ -6098,8 +6446,8 @@ msgstr "此用戶沒有任何追隨者。"
msgid "This user has blocked you"
msgstr "這個用戶已封鎖您"
-#: src/components/moderation/ModerationDetailsDialog.tsx:72
-#: src/lib/moderation/useModerationCauseDescription.ts:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:78
+#: src/lib/moderation/useModerationCauseDescription.ts:73
msgid "This user has blocked you. You cannot view their content."
msgstr "此用戶已封鎖您,您無法查看他們的內容。"
@@ -6107,11 +6455,11 @@ msgstr "此用戶已封鎖您,您無法查看他們的內容。"
msgid "This user has requested that their content only be shown to signed-in users."
msgstr "此用戶要求僅將其內容顯示給已登入的用戶。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:55
+#: src/components/moderation/ModerationDetailsDialog.tsx:58
msgid "This user is included in the <0>{0}0> list which you have blocked."
msgstr "此用戶包含在您已封鎖的 <0>{0}0> 列表中。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:84
+#: src/components/moderation/ModerationDetailsDialog.tsx:90
msgid "This user is included in the <0>{0}0> list which you have muted."
msgstr "此用戶包含在您已靜音的 <0>{0}0> 列表中。"
@@ -6123,28 +6471,32 @@ msgstr "這是新來的用戶,請按此瞭解更多有關他們何時加入的
msgid "This user isn't following anyone."
msgstr "此用戶未跟隨任何人。"
-#: src/components/dialogs/MutedWords.tsx:283
-msgid "This will delete {0} from your muted words. You can always add it back later."
-msgstr "這將從您的靜音文字中刪除 {0},您隨時可以新增回來。"
+#: src/components/dialogs/MutedWords.tsx:435
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr "這將從您的靜音文字中刪除 \"{0}\",您隨時可以新增回來。"
-#: src/view/screens/Settings/index.tsx:596
+#: src/view/com/util/AccountDropdownBtn.tsx:55
+msgid "This will remove @{0} from the quick access list."
+msgstr "這將從快速存取清單中刪除 @{0}。"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:689
+msgid "This will remove your post from this quote post for all users, and replace it with a placeholder."
+msgstr "這將刪除所有对您這則貼文的引用,並將其替換為一個佔位符。"
+
+#: src/view/screens/Settings/index.tsx:560
msgid "Thread preferences"
msgstr "討論串偏好"
#: src/view/screens/PreferencesThreads.tsx:51
-#: src/view/screens/Settings/index.tsx:606
+#: src/view/screens/Settings/index.tsx:570
msgid "Thread Preferences"
msgstr "討論串偏好"
-#: src/components/WhoCanReply.tsx:109
-msgid "Thread settings updated"
-msgstr "討論串設定已更新"
-
#: src/view/screens/PreferencesThreads.tsx:113
msgid "Threaded Mode"
msgstr "樹狀顯示模式"
-#: src/Navigation.tsx:295
+#: src/Navigation.tsx:304
msgid "Threads Preferences"
msgstr "討論串偏好"
@@ -6160,15 +6512,11 @@ msgstr "若要檢舉對話,請透過對話畫面檢舉其中一則訊息。這
msgid "To whom would you like to send this report?"
msgstr "您希望向誰提交此檢舉?"
-#: src/components/dialogs/MutedWords.tsx:112
-msgid "Toggle between muted word options."
-msgstr "在靜音文字選項之間切換。"
-
#: src/view/com/util/forms/DropdownButton.tsx:255
msgid "Toggle dropdown"
msgstr "切換下拉式選單"
-#: src/screens/Moderation/index.tsx:336
+#: src/screens/Moderation/index.tsx:345
msgid "Toggle to enable or disable adult content"
msgstr "切換以啟用或停用成人內容"
@@ -6183,10 +6531,10 @@ msgstr "轉換"
#: src/components/dms/MessageMenu.tsx:103
#: src/components/dms/MessageMenu.tsx:105
-#: src/view/com/post-thread/PostThreadItem.tsx:676
-#: src/view/com/post-thread/PostThreadItem.tsx:678
-#: src/view/com/util/forms/PostDropdownBtn.tsx:280
-#: src/view/com/util/forms/PostDropdownBtn.tsx:282
+#: src/view/com/post-thread/PostThreadItem.tsx:734
+#: src/view/com/post-thread/PostThreadItem.tsx:736
+#: src/view/com/util/forms/PostDropdownBtn.tsx:380
+#: src/view/com/util/forms/PostDropdownBtn.tsx:382
msgid "Translate"
msgstr "翻譯"
@@ -6199,7 +6547,7 @@ msgstr "重試"
msgid "TV"
msgstr "電視節目"
-#: src/view/screens/Settings/index.tsx:747
+#: src/view/screens/Settings/index.tsx:711
msgid "Two-factor authentication"
msgstr "雙重驗證"
@@ -6211,11 +6559,11 @@ msgstr "在此輸入訊息"
msgid "Type:"
msgstr "類型:"
-#: src/view/screens/ProfileList.tsx:535
+#: src/view/screens/ProfileList.tsx:591
msgid "Un-block list"
msgstr "取消封鎖列表"
-#: src/view/screens/ProfileList.tsx:520
+#: src/view/screens/ProfileList.tsx:576
msgid "Un-mute list"
msgstr "取消靜音列表"
@@ -6223,12 +6571,12 @@ msgstr "取消靜音列表"
#: src/screens/Login/index.tsx:78
#: src/screens/Login/LoginForm.tsx:150
#: src/screens/Login/SetNewPasswordForm.tsx:77
-#: src/screens/Signup/index.tsx:75
+#: src/screens/Signup/index.tsx:77
#: src/view/com/modals/ChangePassword.tsx:71
msgid "Unable to contact your service. Please check your Internet connection."
msgstr "無法連線到服務,請檢查您的網路連線。"
-#: src/screens/StarterPack/StarterPackScreen.tsx:626
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
msgid "Unable to delete"
msgstr "無法刪除"
@@ -6239,7 +6587,7 @@ msgstr "無法刪除"
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:192
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:314
#: src/view/com/profile/ProfileMenu.tsx:365
-#: src/view/screens/ProfileList.tsx:626
+#: src/view/screens/ProfileList.tsx:682
msgid "Unblock"
msgstr "解除封鎖"
@@ -6263,9 +6611,9 @@ msgstr "解除封鎖帳號"
msgid "Unblock Account?"
msgstr "解除封鎖?"
-#: src/view/com/util/post-ctrls/RepostButton.tsx:64
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:70
-#: src/view/com/util/post-ctrls/RepostButton.web.tsx:74
+#: src/view/com/util/post-ctrls/RepostButton.tsx:66
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:72
+#: src/view/com/util/post-ctrls/RepostButton.web.tsx:76
msgid "Undo repost"
msgstr "取消轉貼"
@@ -6274,10 +6622,6 @@ msgctxt "action"
msgid "Unfollow"
msgstr "取消跟隨"
-#: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247
-msgid "Unfollow"
-msgstr "取消跟隨"
-
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237
msgid "Unfollow {0}"
msgstr "取消跟隨 {0}"
@@ -6291,12 +6635,14 @@ msgstr "取消跟隨"
msgid "Unlike this feed"
msgstr "取消喜歡這個動態源"
-#: src/components/TagMenu/index.tsx:249
-#: src/view/screens/ProfileList.tsx:633
+#: src/components/TagMenu/index.tsx:263
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:254
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:265
+#: src/view/screens/ProfileList.tsx:689
msgid "Unmute"
msgstr "取消靜音"
-#: src/components/TagMenu/index.web.tsx:104
+#: src/components/TagMenu/index.web.tsx:115
msgid "Unmute {truncatedTag}"
msgstr "取消靜音 {truncatedTag}"
@@ -6305,7 +6651,7 @@ msgstr "取消靜音 {truncatedTag}"
msgid "Unmute Account"
msgstr "取消靜音帳號"
-#: src/components/TagMenu/index.tsx:208
+#: src/components/TagMenu/index.tsx:219
msgid "Unmute all {displayTag} posts"
msgstr "取消對所有 {displayTag} 貼文的靜音"
@@ -6313,13 +6659,21 @@ msgstr "取消對所有 {displayTag} 貼文的靜音"
msgid "Unmute conversation"
msgstr "取消靜音對話"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:365
-#: src/view/com/util/forms/PostDropdownBtn.tsx:370
+#: src/view/com/util/forms/PostDropdownBtn.tsx:465
+#: src/view/com/util/forms/PostDropdownBtn.tsx:470
msgid "Unmute thread"
msgstr "取消靜音討論串"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx:201
+msgid "Unmute video"
+msgstr "取消靜音影片"
+
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:201
+msgid "Unmuted"
+msgstr "取消靜音"
+
#: src/view/screens/ProfileFeed.tsx:292
-#: src/view/screens/ProfileList.tsx:617
+#: src/view/screens/ProfileList.tsx:673
msgid "Unpin"
msgstr "取消釘選"
@@ -6327,11 +6681,11 @@ msgstr "取消釘選"
msgid "Unpin from home"
msgstr "自首頁取消釘選"
-#: src/view/screens/ProfileList.tsx:500
+#: src/view/screens/ProfileList.tsx:556
msgid "Unpin moderation list"
msgstr "取消釘選內容管理列表"
-#: src/view/screens/ProfileList.tsx:290
+#: src/view/screens/ProfileList.tsx:346
msgid "Unpinned from your feeds"
msgstr "已從您的動態源取消釘選"
@@ -6339,16 +6693,25 @@ msgstr "已從您的動態源取消釘選"
msgid "Unsubscribe"
msgstr "取消訂閱"
+#: src/screens/List/ListHiddenScreen.tsx:184
+#: src/screens/List/ListHiddenScreen.tsx:194
+msgid "Unsubscribe from list"
+msgstr "取消訂閱這個列表"
+
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196
msgid "Unsubscribe from this labeler"
msgstr "取消訂閱這個標記者"
+#: src/screens/List/ListHiddenScreen.tsx:86
+msgid "Unsubscribed from list"
+msgstr "已從列表中取消訂閱"
+
#: src/lib/moderation/useReportOptions.ts:72
#: src/lib/moderation/useReportOptions.ts:85
msgid "Unwanted Sexual Content"
msgstr "不受歡迎的色情內容"
-#: src/view/com/modals/UserAddRemoveLists.tsx:83
+#: src/view/com/modals/UserAddRemoveLists.tsx:82
msgid "Update {displayName} in Lists"
msgstr "更新列表中的 {displayName}"
@@ -6356,6 +6719,14 @@ msgstr "更新列表中的 {displayName}"
msgid "Update to {handle}"
msgstr "更新至 {handle}"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:305
+msgid "Updating quote attachment failed"
+msgstr "更新引用分離狀態失敗"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:335
+msgid "Updating reply visibility failed"
+msgstr "更新回覆可見性失敗"
+
#: src/screens/Login/SetNewPasswordForm.tsx:186
msgid "Updating..."
msgstr "更新中…"
@@ -6368,20 +6739,20 @@ msgstr "或是上傳圖片"
msgid "Upload a text file to:"
msgstr "上傳文字檔案至:"
-#: src/view/com/util/UserAvatar.tsx:364
-#: src/view/com/util/UserAvatar.tsx:367
+#: src/view/com/util/UserAvatar.tsx:355
+#: src/view/com/util/UserAvatar.tsx:358
#: src/view/com/util/UserBanner.tsx:123
#: src/view/com/util/UserBanner.tsx:126
msgid "Upload from Camera"
msgstr "從相機上傳"
-#: src/view/com/util/UserAvatar.tsx:381
+#: src/view/com/util/UserAvatar.tsx:372
#: src/view/com/util/UserBanner.tsx:140
msgid "Upload from Files"
msgstr "從檔案上傳"
-#: src/view/com/util/UserAvatar.tsx:375
-#: src/view/com/util/UserAvatar.tsx:379
+#: src/view/com/util/UserAvatar.tsx:366
+#: src/view/com/util/UserAvatar.tsx:370
#: src/view/com/util/UserBanner.tsx:134
#: src/view/com/util/UserBanner.tsx:138
msgid "Upload from Library"
@@ -6429,12 +6800,12 @@ msgstr "使用這個和您的帳號代碼一起登入其他應用程式。"
msgid "Used by:"
msgstr "使用者:"
-#: src/components/moderation/ModerationDetailsDialog.tsx:64
-#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/lib/moderation/useModerationCauseDescription.ts:61
msgid "User Blocked"
msgstr "用戶已被封鎖"
-#: src/lib/moderation/useModerationCauseDescription.ts:50
+#: src/lib/moderation/useModerationCauseDescription.ts:53
msgid "User Blocked by \"{0}\""
msgstr "用戶已被「{0}」封鎖"
@@ -6442,30 +6813,28 @@ msgstr "用戶已被「{0}」封鎖"
msgid "User blocked by list"
msgstr "用戶已被列表封鎖"
-#: src/components/moderation/ModerationDetailsDialog.tsx:53
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
msgid "User Blocked by List"
msgstr "用戶已被列表封鎖"
-#: src/lib/moderation/useModerationCauseDescription.ts:68
+#: src/lib/moderation/useModerationCauseDescription.ts:71
msgid "User Blocking You"
msgstr "用戶封鎖了您"
-#: src/components/moderation/ModerationDetailsDialog.tsx:70
+#: src/components/moderation/ModerationDetailsDialog.tsx:76
msgid "User Blocks You"
msgstr "用戶封鎖了您"
-#: src/view/com/lists/ListCard.tsx:87
-#: src/view/com/modals/UserAddRemoveLists.tsx:209
+#: src/view/com/modals/UserAddRemoveLists.tsx:208
msgid "User list by {0}"
msgstr "{0} 的用戶列表"
-#: src/view/screens/ProfileList.tsx:831
+#: src/view/screens/ProfileList.tsx:887
msgid "User list by <0/>"
msgstr "<0/> 的用戶列表"
-#: src/view/com/lists/ListCard.tsx:85
-#: src/view/com/modals/UserAddRemoveLists.tsx:207
-#: src/view/screens/ProfileList.tsx:829
+#: src/view/com/modals/UserAddRemoveLists.tsx:206
+#: src/view/screens/ProfileList.tsx:885
msgid "User list by you"
msgstr "您的用戶列表"
@@ -6477,7 +6846,7 @@ msgstr "已建立用戶列表"
msgid "User list updated"
msgstr "已更新用戶列表"
-#: src/view/screens/Lists.tsx:63
+#: src/view/screens/Lists.tsx:65
msgid "User Lists"
msgstr "用戶列表"
@@ -6485,13 +6854,13 @@ msgstr "用戶列表"
msgid "Username or email address"
msgstr "帳號代碼或電子郵件地址"
-#: src/view/screens/ProfileList.tsx:865
+#: src/view/screens/ProfileList.tsx:921
msgid "Users"
msgstr "用戶"
-#: src/components/WhoCanReply.tsx:280
-msgid "users followed by <0/>"
-msgstr "被 <0/> 跟隨的用戶"
+#: src/components/WhoCanReply.tsx:258
+msgid "users followed by <0>@{0}0>"
+msgstr "被 <0>@{0}0> 跟隨的用戶"
#: src/components/dms/MessagesNUX.tsx:140
#: src/components/dms/MessagesNUX.tsx:143
@@ -6500,7 +6869,7 @@ msgstr "被 <0/> 跟隨的用戶"
msgid "Users I follow"
msgstr "我跟隨的用戶"
-#: src/components/dialogs/ThreadgateEditor.tsx:132
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:416
msgid "Users in \"{0}\""
msgstr "「{0}」中的用戶"
@@ -6516,15 +6885,15 @@ msgstr "值:"
msgid "Verify DNS Record"
msgstr "驗證 DNS 紀錄"
-#: src/view/screens/Settings/index.tsx:984
+#: src/view/screens/Settings/index.tsx:936
msgid "Verify email"
msgstr "驗證電子郵件"
-#: src/view/screens/Settings/index.tsx:1009
+#: src/view/screens/Settings/index.tsx:961
msgid "Verify my email"
msgstr "驗證我的電子郵件"
-#: src/view/screens/Settings/index.tsx:1018
+#: src/view/screens/Settings/index.tsx:970
msgid "Verify My Email"
msgstr "驗證我的電子郵件"
@@ -6541,31 +6910,40 @@ msgstr "驗證文字檔案"
msgid "Verify Your Email"
msgstr "驗證您的電子郵件"
-#: src/view/screens/Settings/index.tsx:937
+#: src/view/screens/Settings/index.tsx:889
msgid "Version {appVersion} {bundleInfo}"
msgstr "版本 {appVersion} {bundleInfo}"
+#: src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx:180
+msgid "Video"
+msgstr "影片"
+
#: src/screens/Onboarding/index.tsx:39
#: src/screens/Onboarding/state.ts:88
msgid "Video Games"
msgstr "電子遊戲"
-#: src/view/com/composer/videos/state.ts:27
-msgid "Videos cannot be larger than 100MB"
-msgstr "影片不能超過 100MB"
-
#: src/screens/Profile/Header/Shell.tsx:113
msgid "View {0}'s avatar"
msgstr "查看 {0} 的頭像"
-#: src/view/com/notifications/FeedItem.tsx:246
+#: src/components/ProfileCard.tsx:110
+#: src/view/com/notifications/FeedItem.tsx:277
msgid "View {0}'s profile"
msgstr "查看 {0} 的個人檔案"
+#: src/components/dms/MessagesListHeader.tsx:160
+msgid "View {displayName}'s profile"
+msgstr "查看 {displayName} 的個人檔案"
+
#: src/components/ProfileHoverCard/index.web.tsx:430
msgid "View blocked user's profile"
msgstr "查看已封鎖用戶的個人檔案"
+#: src/view/screens/Settings/ExportCarDialog.tsx:97
+msgid "View blogpost for more details"
+msgstr "檢視部落格文章以瞭解更多詳細資訊"
+
#: src/view/screens/Log.tsx:56
msgid "View debug entry"
msgstr "查看偵錯項目"
@@ -6578,7 +6956,7 @@ msgstr "查看詳細資訊"
msgid "View details for reporting a copyright violation"
msgstr "查看詳細資訊以檢舉侵犯版權"
-#: src/view/com/posts/FeedSlice.tsx:124
+#: src/view/com/posts/FeedSlice.tsx:136
msgid "View full thread"
msgstr "查看整個討論串"
@@ -6589,12 +6967,12 @@ msgstr "查看有關這些標記的資訊"
#: src/components/ProfileHoverCard/index.web.tsx:418
#: src/components/ProfileHoverCard/index.web.tsx:436
#: src/components/ProfileHoverCard/index.web.tsx:463
-#: src/view/com/posts/AviFollowButton.tsx:58
+#: src/view/com/posts/AviFollowButton.tsx:56
#: src/view/com/posts/FeedErrorMessage.tsx:175
msgid "View profile"
msgstr "查看資料"
-#: src/view/com/profile/ProfileSubpageHeader.tsx:129
+#: src/view/com/profile/ProfileSubpageHeader.tsx:127
msgid "View the avatar"
msgstr "查看頭像"
@@ -6606,11 +6984,23 @@ msgstr "查看由 @{0} 提供的標記服務"
msgid "View users who like this feed"
msgstr "查看喜歡此動態源的用戶"
+#: src/screens/Moderation/index.tsx:274
+msgid "View your blocked accounts"
+msgstr "查看您封鎖的帳號"
+
#: src/view/com/home/HomeHeaderLayout.web.tsx:79
#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86
msgid "View your feeds and explore more"
msgstr "查看您的動態並探索更多內容"
+#: src/screens/Moderation/index.tsx:244
+msgid "View your moderation lists"
+msgstr "查看您的內容管理列表"
+
+#: src/screens/Moderation/index.tsx:259
+msgid "View your muted accounts"
+msgstr "查看您靜音的帳號"
+
#: src/view/com/modals/LinkWarning.tsx:89
#: src/view/com/modals/LinkWarning.tsx:95
msgid "Visit Site"
@@ -6642,7 +7032,7 @@ msgstr "我們無法載入這個對話"
msgid "We estimate {estimatedTime} until your account is ready."
msgstr "我們估計還需要 {estimatedTime} 才能準備好您的帳號。"
-#: src/screens/Onboarding/StepFinished.tsx:239
+#: src/screens/Onboarding/StepFinished.tsx:242
msgid "We hope you have a wonderful time. Remember, Bluesky is:"
msgstr "我們希望您在此度過愉快的時光。請記住,Bluesky 是:"
@@ -6650,19 +7040,15 @@ msgstr "我們希望您在此度過愉快的時光。請記住,Bluesky 是:"
msgid "We ran out of posts from your follows. Here's the latest from <0/>."
msgstr "您已看完了您跟隨的貼文。這是來自 <0/> 的最新貼文。"
-#: src/components/dialogs/MutedWords.tsx:203
-msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
-msgstr "我們建議避免新增在許多貼文中常用的文字,因為這可能會使您看不到任何貼文。"
-
#: src/components/dialogs/BirthDateSettings.tsx:52
msgid "We were unable to load your birth date preferences. Please try again."
msgstr "我們無法載入您的出生日期偏好,請再試一次。"
-#: src/screens/Moderation/index.tsx:409
+#: src/screens/Moderation/index.tsx:419
msgid "We were unable to load your configured labelers at this time."
msgstr "我們目前無法載入您已設定的標記者。"
-#: src/screens/Onboarding/StepInterests/index.tsx:157
+#: src/screens/Onboarding/StepInterests/index.tsx:158
msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow."
msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號。如果仍繼續失敗,您可以選擇跳過此流程。"
@@ -6670,7 +7056,7 @@ msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號
msgid "We will let you know when your account is ready."
msgstr "我們會在您的帳號準備好時通知您。"
-#: src/screens/Onboarding/StepInterests/index.tsx:162
+#: src/screens/Onboarding/StepInterests/index.tsx:163
msgid "We'll use this to help customize your experience."
msgstr "我們將使用這些資訊來協助訂製您的體驗。"
@@ -6678,15 +7064,15 @@ msgstr "我們將使用這些資訊來協助訂製您的體驗。"
msgid "We're having network issues, try again"
msgstr "我們遇到網路問題,請再試一次"
-#: src/screens/Signup/index.tsx:89
+#: src/screens/Signup/index.tsx:100
msgid "We're so excited to have you join us!"
msgstr "我們非常高興您加入我們!"
-#: src/view/screens/ProfileList.tsx:91
+#: src/view/screens/ProfileList.tsx:102
msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
msgstr "很抱歉,我們無法解析此列表。如果問題持續發生,請聯繫列表建立者 @{handleOrDid}。"
-#: src/components/dialogs/MutedWords.tsx:229
+#: src/components/dialogs/MutedWords.tsx:378
msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
msgstr "很抱歉,我們目前無法載入您的靜音文字。請稍後再試。"
@@ -6694,11 +7080,11 @@ msgstr "很抱歉,我們目前無法載入您的靜音文字。請稍後再試
msgid "We're sorry, but your search could not be completed. Please try again in a few minutes."
msgstr "很抱歉,無法完成您的搜尋請求。請稍後再試。"
-#: src/view/com/composer/Composer.tsx:347
+#: src/view/com/composer/Composer.tsx:380
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "很抱歉!您回覆的貼文已被刪除。"
-#: src/components/Lists.tsx:212
+#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:48
msgid "We're sorry! We can't find the page you were looking for."
msgstr "很抱歉!我們找不到您正在尋找的頁面。"
@@ -6715,7 +7101,7 @@ msgstr "歡迎回來!"
msgid "Welcome, friend!"
msgstr "歡迎,朋友!"
-#: src/screens/Onboarding/StepInterests/index.tsx:154
+#: src/screens/Onboarding/StepInterests/index.tsx:155
msgid "What are your interests?"
msgstr "您對什麼感興趣?"
@@ -6725,7 +7111,7 @@ msgstr "您想將您的入門包命名為什麼?"
#: src/view/com/auth/SplashScreen.tsx:40
#: src/view/com/auth/SplashScreen.web.tsx:86
-#: src/view/com/composer/Composer.tsx:388
+#: src/view/com/composer/Composer.tsx:436
msgid "What's up?"
msgstr "發生了什麼新鮮事?"
@@ -6737,23 +7123,19 @@ msgstr "這個貼文使用了哪些語言?"
msgid "Which languages would you like to see in your algorithmic feeds?"
msgstr "您想在演算法動態源中看到哪些語言?"
+#: src/components/WhoCanReply.tsx:179
+msgid "Who can interact with this post?"
+msgstr "誰可以參與這則帖子的互動?"
+
#: src/components/dms/MessagesNUX.tsx:110
#: src/components/dms/MessagesNUX.tsx:124
msgid "Who can message you?"
msgstr "誰可以傳送訊息給您?"
-#: src/components/WhoCanReply.tsx:128
+#: src/components/WhoCanReply.tsx:87
msgid "Who can reply"
msgstr "誰可以回覆"
-#: src/components/WhoCanReply.tsx:212
-msgid "Who can reply dialog"
-msgstr "「誰可以回覆」對話窗"
-
-#: src/components/WhoCanReply.tsx:216
-msgid "Who can reply?"
-msgstr "誰可以回覆?"
-
#: src/screens/Home/NoFeedsPinned.tsx:79
#: src/screens/Messages/List/index.tsx:185
msgid "Whoops!"
@@ -6796,12 +7178,12 @@ msgstr "寬"
msgid "Write a message"
msgstr "撰寫訊息"
-#: src/view/com/composer/Composer.tsx:580
+#: src/view/com/composer/Composer.tsx:660
msgid "Write post"
msgstr "撰寫貼文"
-#: src/view/com/composer/Composer.tsx:387
-#: src/view/com/composer/Prompt.tsx:39
+#: src/view/com/composer/Composer.tsx:435
+#: src/view/com/post-thread/PostThreadComposePrompt.tsx:42
msgid "Write your reply"
msgstr "撰寫您的回覆"
@@ -6811,10 +7193,10 @@ msgid "Writers"
msgstr "作家"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:77
-#: src/view/screens/PreferencesFollowingFeed.tsx:127
-#: src/view/screens/PreferencesFollowingFeed.tsx:199
-#: src/view/screens/PreferencesFollowingFeed.tsx:234
-#: src/view/screens/PreferencesFollowingFeed.tsx:269
+#: src/view/screens/PreferencesFollowingFeed.tsx:70
+#: src/view/screens/PreferencesFollowingFeed.tsx:97
+#: src/view/screens/PreferencesFollowingFeed.tsx:132
+#: src/view/screens/PreferencesFollowingFeed.tsx:167
#: src/view/screens/PreferencesThreads.tsx:100
#: src/view/screens/PreferencesThreads.tsx:123
msgid "Yes"
@@ -6825,10 +7207,18 @@ msgstr "開"
msgid "Yes, deactivate"
msgstr "確定並停用"
-#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:649
msgid "Yes, delete this starter pack"
msgstr "是,刪除這個入門包"
+#: src/view/com/util/forms/PostDropdownBtn.tsx:692
+msgid "Yes, detach"
+msgstr "是,分離"
+
+#: src/view/com/util/forms/PostDropdownBtn.tsx:702
+msgid "Yes, hide"
+msgstr "是,隱藏"
+
#: src/screens/Deactivated.tsx:150
msgid "Yes, reactivate my account"
msgstr "確定並停用我的帳號"
@@ -6837,7 +7227,8 @@ msgstr "確定並停用我的帳號"
msgid "Yesterday, {time}"
msgstr "昨天,{time}"
-#: src/components/StarterPack/StarterPackCard.tsx:73
+#: src/components/StarterPack/StarterPackCard.tsx:76
+#: src/screens/List/ListHiddenScreen.tsx:140
msgid "you"
msgstr "您"
@@ -6895,11 +7286,11 @@ msgstr "您目前還沒有邀請碼!當您持續使用 Bluesky 一段時間後
msgid "You don't have any pinned feeds."
msgstr "您目前還沒有任何釘選的動態源。"
-#: src/view/screens/SavedFeeds.tsx:158
+#: src/view/screens/SavedFeeds.tsx:159
msgid "You don't have any saved feeds."
msgstr "您目前還沒有任何已儲存的動態源。"
-#: src/view/com/post-thread/PostThread.tsx:195
+#: src/view/com/post-thread/PostThread.tsx:214
msgid "You have blocked the author or you have been blocked by the author."
msgstr "您已封鎖該作者,或您已被該作者封鎖。"
@@ -6907,9 +7298,9 @@ msgstr "您已封鎖該作者,或您已被該作者封鎖。"
msgid "You have blocked this user"
msgstr "您已封鎖該用戶"
-#: src/components/moderation/ModerationDetailsDialog.tsx:66
-#: src/lib/moderation/useModerationCauseDescription.ts:52
-#: src/lib/moderation/useModerationCauseDescription.ts:60
+#: src/components/moderation/ModerationDetailsDialog.tsx:72
+#: src/lib/moderation/useModerationCauseDescription.ts:55
+#: src/lib/moderation/useModerationCauseDescription.ts:63
msgid "You have blocked this user. You cannot view their content."
msgstr "您已封鎖了此用戶,您將無法查看他們發佈的內容。"
@@ -6920,20 +7311,20 @@ msgstr "您已封鎖了此用戶,您將無法查看他們發佈的內容。"
msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
msgstr "您輸入的邀請碼無效。它應該長得像這樣 XXXXX-XXXXX。"
-#: src/lib/moderation/useModerationCauseDescription.ts:111
+#: src/lib/moderation/useModerationCauseDescription.ts:114
msgid "You have hidden this post"
msgstr "您已隱藏這則貼文"
-#: src/components/moderation/ModerationDetailsDialog.tsx:101
+#: src/components/moderation/ModerationDetailsDialog.tsx:110
msgid "You have hidden this post."
msgstr "您已隱藏這則貼文。"
-#: src/components/moderation/ModerationDetailsDialog.tsx:94
-#: src/lib/moderation/useModerationCauseDescription.ts:94
+#: src/components/moderation/ModerationDetailsDialog.tsx:103
+#: src/lib/moderation/useModerationCauseDescription.ts:97
msgid "You have muted this account."
msgstr "您已隱藏這個帳號。"
-#: src/lib/moderation/useModerationCauseDescription.ts:88
+#: src/lib/moderation/useModerationCauseDescription.ts:91
msgid "You have muted this user"
msgstr "您已靜音這個用戶"
@@ -6941,12 +7332,12 @@ msgstr "您已靜音這個用戶"
msgid "You have no conversations yet. Start one!"
msgstr "您還沒有對話,與其他用戶開始對話吧!"
-#: src/view/com/feeds/ProfileFeedgens.tsx:137
+#: src/view/com/feeds/ProfileFeedgens.tsx:138
msgid "You have no feeds."
msgstr "您沒有建立任何動態源。"
-#: src/view/com/lists/MyLists.tsx:90
-#: src/view/com/lists/ProfileLists.tsx:144
+#: src/view/com/lists/MyLists.tsx:93
+#: src/view/com/lists/ProfileLists.tsx:139
msgid "You have no lists."
msgstr "您沒有建立任何列表。"
@@ -6970,27 +7361,32 @@ msgstr "已經到底部啦!"
msgid "You haven't created a starter pack yet!"
msgstr "您還沒有建立任何入門包!"
-#: src/components/dialogs/MutedWords.tsx:249
+#: src/components/dialogs/MutedWords.tsx:398
msgid "You haven't muted any words or tags yet"
msgstr "您還沒有隱藏任何文字或標籤"
-#: src/components/moderation/LabelsOnMeDialog.tsx:87
+#: src/components/moderation/ModerationDetailsDialog.tsx:117
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "You hid this reply."
+msgstr "你隱藏了這個回覆。"
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:86
msgid "You may appeal non-self labels if you feel they were placed in error."
msgstr "如果您認為這些標記有誤,且標記並非由您新增,您可以提出申訴。"
-#: src/components/moderation/LabelsOnMeDialog.tsx:92
+#: src/components/moderation/LabelsOnMeDialog.tsx:91
msgid "You may appeal these labels if you feel they were placed in error."
msgstr "如果您覺得這些標記有誤,您可以提出申訴。"
-#: src/screens/StarterPack/Wizard/State.tsx:95
-msgid "You may only add up to 50 feeds"
-msgstr "您最多只能新增 50 個動態源"
+#: src/screens/StarterPack/Wizard/State.tsx:79
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE} profiles"
+msgstr "您最多只能新增 {STARTER_PACK_MAX_SIZE} 個個人檔案"
-#: src/screens/StarterPack/Wizard/State.tsx:78
-msgid "You may only add up to 50 profiles"
-msgstr "您最多只能新增 50 個個人檔案"
+#: src/screens/StarterPack/Wizard/State.tsx:97
+msgid "You may only add up to 3 feeds"
+msgstr "您最多只能新增 3 個動態源"
-#: src/screens/Signup/StepInfo/Policies.tsx:79
+#: src/screens/Signup/StepInfo/Policies.tsx:85
msgid "You must be 13 years of age or older to sign up."
msgstr "您必須年滿 13 歲才能註冊。"
@@ -7006,7 +7402,7 @@ msgstr "您必須授予對圖片庫的存取權限才能儲存 QR Code"
msgid "You must grant access to your photo library to save the image."
msgstr "您必須授予對圖片庫的存取權限才能儲存圖片。"
-#: src/components/ReportDialog/SubmitView.tsx:222
+#: src/components/ReportDialog/SubmitView.tsx:209
msgid "You must select at least one labeler for a report"
msgstr "您必須選擇至少一個標記者來提交檢舉"
@@ -7014,11 +7410,11 @@ msgstr "您必須選擇至少一個標記者來提交檢舉"
msgid "You previously deactivated @{0}."
msgstr "您之前停用了 @{0}。"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:174
+#: src/view/com/util/forms/PostDropdownBtn.tsx:216
msgid "You will no longer receive notifications for this thread"
msgstr "您將不再收到這條討論串的通知"
-#: src/view/com/util/forms/PostDropdownBtn.tsx:170
+#: src/view/com/util/forms/PostDropdownBtn.tsx:212
msgid "You will now receive notifications for this thread"
msgstr "您將繼續收到這條討論串的通知"
@@ -7038,23 +7434,23 @@ msgstr "您:{defaultEmbeddedContentMessage}"
msgid "You: {short}"
msgstr "您:{short}"
-#: src/screens/Signup/index.tsx:102
+#: src/screens/Signup/index.tsx:113
msgid "You'll follow the suggested users and feeds once you finish creating your account!"
msgstr "當您成功建立帳號後,您將會跟隨建議的用戶和動態源!"
-#: src/screens/Signup/index.tsx:107
+#: src/screens/Signup/index.tsx:118
msgid "You'll follow the suggested users once you finish creating your account!"
msgstr "當您完成帳號創建後,您將會跟隨建議的用戶!"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:239
msgid "You'll follow these people and {0} others"
msgstr "您將會跟隨這些人物和其他 {0} 人"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:237
msgid "You'll follow these people right away"
msgstr "您將會立即跟隨這些人物"
-#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277
msgid "You'll stay updated with these feeds"
msgstr "您將透過這些動態源接收最新動態"
@@ -7069,12 +7465,12 @@ msgstr "輪到您了"
msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account."
msgstr "您正在使用應用程式專用密碼登入。請使用您的主密碼登入,以繼續停用您的帳號。"
-#: src/screens/Onboarding/StepFinished.tsx:236
+#: src/screens/Onboarding/StepFinished.tsx:239
msgid "You're ready to go!"
msgstr "您已完成設定!"
-#: src/components/moderation/ModerationDetailsDialog.tsx:98
-#: src/lib/moderation/useModerationCauseDescription.ts:103
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:106
msgid "You've chosen to hide a word or tag within this post."
msgstr "您選擇在這則貼文中隱藏文字或標籤。"
@@ -7082,7 +7478,7 @@ msgstr "您選擇在這則貼文中隱藏文字或標籤。"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "您已經瀏覽完貼文啦!跟隨其他帳號吧。"
-#: src/screens/Signup/index.tsx:135
+#: src/screens/Signup/index.tsx:146
msgid "Your account"
msgstr "您的帳號"
@@ -7098,6 +7494,10 @@ msgstr "您可以將您的帳號儲存庫下載為一個「CAR」檔案。該檔
msgid "Your birth date"
msgstr "您的生日"
+#: src/view/com/util/post-embeds/VideoEmbed.web.tsx:145
+msgid "Your browser does not support the video format. Please try a different browser."
+msgstr "您的瀏覽器不支援該影片格式。請嘗試使用其他瀏覽器。"
+
#: src/screens/Messages/Conversation/ChatDisabled.tsx:25
msgid "Your chats have been disabled"
msgstr "您的對話功能已被停用"
@@ -7107,7 +7507,7 @@ msgid "Your choice will be saved, but can be changed later in settings."
msgstr "您的選擇將被儲存,但可以稍後在設定中更改。"
#: src/screens/Login/ForgotPasswordForm.tsx:57
-#: src/screens/Signup/state.ts:196
+#: src/screens/Signup/state.ts:208
#: src/screens/Signup/StepInfo/index.tsx:75
#: src/view/com/modals/ChangePassword.tsx:55
msgid "Your email appears to be invalid."
@@ -7121,7 +7521,7 @@ msgstr "您的電子郵件地址已更新但尚未驗證。作為下一步,請
msgid "Your email has not yet been verified. This is an important security step which we recommend."
msgstr "您的電子郵件地址尚未驗證。這是一個重要的安全措施,我們建議您完成驗證。"
-#: src/state/shell/progress-guide.tsx:161
+#: src/state/shell/progress-guide.tsx:156
msgid "Your first like!"
msgstr "您的第一個喜歡!"
@@ -7129,7 +7529,7 @@ msgstr "您的第一個喜歡!"
msgid "Your following feed is empty! Follow more users to see what's happening."
msgstr "您的「Following」動態源是空的!跟隨更多用戶來看看發生了什麼事情。"
-#: src/screens/Signup/StepHandle.tsx:122
+#: src/screens/Signup/StepHandle.tsx:123
msgid "Your full handle will be"
msgstr "您的完整帳號代碼將修改為"
@@ -7137,7 +7537,7 @@ msgstr "您的完整帳號代碼將修改為"
msgid "Your full handle will be <0>@{0}0>"
msgstr "您的完整帳號代碼將修改為 <0>@{0}0>"
-#: src/components/dialogs/MutedWords.tsx:220
+#: src/components/dialogs/MutedWords.tsx:369
msgid "Your muted words"
msgstr "您的靜音文字"
@@ -7145,15 +7545,15 @@ msgstr "您的靜音文字"
msgid "Your password has been changed successfully!"
msgstr "您的密碼已成功更改!"
-#: src/view/com/composer/Composer.tsx:378
+#: src/view/com/composer/Composer.tsx:426
msgid "Your post has been published"
msgstr "您的貼文已發佈"
-#: src/screens/Onboarding/StepFinished.tsx:251
+#: src/screens/Onboarding/StepFinished.tsx:254
msgid "Your posts, likes, and blocks are public. Mutes are private."
msgstr "您的貼文、喜歡和封鎖是公開的,而靜音資訊則只有您可以查看。"
-#: src/view/screens/Settings/index.tsx:149
+#: src/view/screens/Settings/index.tsx:114
msgid "Your profile"
msgstr "您的個人檔案"
@@ -7161,7 +7561,7 @@ msgstr "您的個人檔案"
msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in."
msgstr "其他 Bluesky 用戶將無法再看到您的個人檔案、貼文、動態和列表。您可以隨時登入以重新啟用您的帳號。"
-#: src/view/com/composer/Composer.tsx:377
+#: src/view/com/composer/Composer.tsx:425
msgid "Your reply has been published"
msgstr "您的回覆已發佈"
@@ -7169,6 +7569,6 @@ msgstr "您的回覆已發佈"
msgid "Your report will be sent to the Bluesky Moderation Service"
msgstr "您的檢舉將發送至 Bluesky 內容管理服務"
-#: src/screens/Signup/index.tsx:137
+#: src/screens/Signup/index.tsx:148
msgid "Your user handle"
msgstr "您的帳號代碼"
diff --git a/src/routes.ts b/src/routes.ts
index c9e23e08c8..2ae4126ace 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -21,6 +21,7 @@ export const router = new Router({
PostThread: '/profile/:name/post/:rkey',
PostLikedBy: '/profile/:name/post/:rkey/liked-by',
PostRepostedBy: '/profile/:name/post/:rkey/reposted-by',
+ PostQuotes: '/profile/:name/post/:rkey/quotes',
ProfileFeed: '/profile/:name/feed/:rkey',
ProfileFeedLikedBy: '/profile/:name/feed/:rkey/liked-by',
ProfileLabelerLikedBy: '/profile/:name/labeler/liked-by',
diff --git a/src/screens/Deactivated.tsx b/src/screens/Deactivated.tsx
index add550f93c..997fe419ed 100644
--- a/src/screens/Deactivated.tsx
+++ b/src/screens/Deactivated.tsx
@@ -38,7 +38,7 @@ export function Deactivated() {
const {setShowLoggedOut} = useLoggedOutViewControls()
const hasOtherAccounts = accounts.length > 1
const setMinimalShellMode = useSetMinimalShellMode()
- const {logout} = useSessionApi()
+ const {logoutCurrentAccount} = useSessionApi()
const agent = useAgent()
const [pending, setPending] = React.useState(false)
const [error, setError] = React.useState()
@@ -72,8 +72,8 @@ export function Deactivated() {
// So we change the URL ourselves. The navigator will pick it up on remount.
history.pushState(null, '', '/')
}
- logout('Deactivated')
- }, [logout])
+ logoutCurrentAccount('Deactivated')
+ }, [logoutCurrentAccount])
const handleActivate = React.useCallback(async () => {
try {
diff --git a/src/screens/List/ListHiddenScreen.tsx b/src/screens/List/ListHiddenScreen.tsx
new file mode 100644
index 0000000000..473bb08ea4
--- /dev/null
+++ b/src/screens/List/ListHiddenScreen.tsx
@@ -0,0 +1,216 @@
+import React from 'react'
+import {View} from 'react-native'
+import {AppBskyGraphDefs} from '@atproto/api'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useQueryClient} from '@tanstack/react-query'
+
+import {logger} from '#/logger'
+import {RQKEY_ROOT as listQueryRoot} from '#/state/queries/list'
+import {useGoBack} from 'lib/hooks/useGoBack'
+import {sanitizeHandle} from 'lib/strings/handles'
+import {useListBlockMutation, useListMuteMutation} from 'state/queries/list'
+import {
+ UsePreferencesQueryResponse,
+ useRemoveFeedMutation,
+} from 'state/queries/preferences'
+import {useSession} from 'state/session'
+import * as Toast from 'view/com/util/Toast'
+import {CenteredView} from 'view/com/util/Views'
+import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {EyeSlash_Stroke2_Corner0_Rounded as EyeSlash} from '#/components/icons/EyeSlash'
+import {Loader} from '#/components/Loader'
+import {useHider} from '#/components/moderation/Hider'
+import {Text} from '#/components/Typography'
+
+export function ListHiddenScreen({
+ list,
+ preferences,
+}: {
+ list: AppBskyGraphDefs.ListView
+ preferences: UsePreferencesQueryResponse
+}) {
+ const {_} = useLingui()
+ const t = useTheme()
+ const {currentAccount} = useSession()
+ const {gtMobile} = useBreakpoints()
+ const isOwner = currentAccount?.did === list.creator.did
+ const goBack = useGoBack()
+ const queryClient = useQueryClient()
+
+ const isModList = list.purpose === AppBskyGraphDefs.MODLIST
+
+ const [isProcessing, setIsProcessing] = React.useState(false)
+ const listBlockMutation = useListBlockMutation()
+ const listMuteMutation = useListMuteMutation()
+ const {mutateAsync: removeSavedFeed} = useRemoveFeedMutation()
+
+ const {setIsContentVisible} = useHider()
+
+ const savedFeedConfig = preferences.savedFeeds.find(f => f.value === list.uri)
+
+ const onUnsubscribe = async () => {
+ setIsProcessing(true)
+ if (list.viewer?.muted) {
+ try {
+ await listMuteMutation.mutateAsync({uri: list.uri, mute: false})
+ } catch (e) {
+ setIsProcessing(false)
+ logger.error('Failed to unmute list', {message: e})
+ Toast.show(
+ _(
+ msg`There was an issue. Please check your internet connection and try again.`,
+ ),
+ )
+ return
+ }
+ }
+ if (list.viewer?.blocked) {
+ try {
+ await listBlockMutation.mutateAsync({uri: list.uri, block: false})
+ } catch (e) {
+ setIsProcessing(false)
+ logger.error('Failed to unblock list', {message: e})
+ Toast.show(
+ _(
+ msg`There was an issue. Please check your internet connection and try again.`,
+ ),
+ )
+ return
+ }
+ }
+ queryClient.invalidateQueries({
+ queryKey: [listQueryRoot],
+ })
+ Toast.show(_(msg`Unsubscribed from list`))
+ setIsProcessing(false)
+ }
+
+ const onRemoveList = async () => {
+ if (!savedFeedConfig) return
+ try {
+ await removeSavedFeed(savedFeedConfig)
+ Toast.show(_(msg`Removed from saved feeds`))
+ } catch (e) {
+ logger.error('Failed to remove list from saved feeds', {message: e})
+ Toast.show(
+ _(
+ msg`There was an issue. Please check your internet connection and try again.`,
+ ),
+ )
+ } finally {
+ setIsProcessing(false)
+ }
+ }
+
+ return (
+
+
+
+
+
+ List has been hidden
+
+
+
+ This list - created by{' '}
+
+ {isOwner
+ ? _(msg`you`)
+ : sanitizeHandle(list.creator.handle, '@')}
+ {' '}
+ - contains possible violations of Bluesky's community guidelines
+ in its name or description.
+
+
+
+
+
+
+ {savedFeedConfig ? (
+
+ ) : null}
+ {isOwner ? (
+
+ ) : list.viewer?.muted || list.viewer?.blocked ? (
+
+ ) : null}
+
+
+
+
+ )
+}
diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx
index 825a0e723d..379807d8fe 100644
--- a/src/screens/Onboarding/StepFinished.tsx
+++ b/src/screens/Onboarding/StepFinished.tsx
@@ -23,6 +23,7 @@ import {useProgressGuideControls} from '#/state/shell/progress-guide'
import {uploadBlob} from 'lib/api'
import {useRequestNotificationsPermission} from 'lib/notifications/notifications'
import {useSetHasCheckedForStarterPack} from 'state/preferences/used-starter-packs'
+import {getAllListMembers} from 'state/queries/list-members'
import {
useActiveStarterPack,
useSetActiveStarterPack,
@@ -73,18 +74,20 @@ export function StepFinished() {
starterPack: activeStarterPack.uri,
})
starterPack = spRes.data.starterPack
-
- if (starterPack.list) {
- const listRes = await agent.app.bsky.graph.getList({
- list: starterPack.list.uri,
- limit: 50,
- })
- listItems = listRes.data.items
- }
} catch (e) {
logger.error('Failed to fetch starter pack', {safeMessage: e})
// don't tell the user, just get them through onboarding.
}
+ try {
+ if (starterPack?.list) {
+ listItems = await getAllListMembers(agent, starterPack.list.uri)
+ }
+ } catch (e) {
+ logger.error('Failed to fetch starter pack list items', {
+ safeMessage: e,
+ })
+ // don't tell the user, just get them through onboarding.
+ }
}
try {
diff --git a/src/screens/Onboarding/StepInterests/index.tsx b/src/screens/Onboarding/StepInterests/index.tsx
index ca29b5db9b..0108a537ef 100644
--- a/src/screens/Onboarding/StepInterests/index.tsx
+++ b/src/screens/Onboarding/StepInterests/index.tsx
@@ -143,7 +143,8 @@ export function StepInterests() {
track('OnboardingV2:StepInterests:Start')
}, [track])
- const isMinimumInterestsEnabled = gate('onboarding_minimum_interests')
+ const isMinimumInterestsEnabled =
+ gate('onboarding_minimum_interests') && data?.interests.length !== 0
const meetsMinimumRequirement = isMinimumInterestsEnabled
? interests.length >= MIN_INTERESTS
: true
diff --git a/src/screens/Onboarding/util.ts b/src/screens/Onboarding/util.ts
index b9ecc4b987..14750f34c7 100644
--- a/src/screens/Onboarding/util.ts
+++ b/src/screens/Onboarding/util.ts
@@ -4,6 +4,7 @@ import {
BskyAgent,
} from '@atproto/api'
import {TID} from '@atproto/common-web'
+import chunk from 'lodash.chunk'
import {until} from '#/lib/async/until'
@@ -29,10 +30,13 @@ export async function bulkWriteFollows(agent: BskyAgent, dids: string[]) {
value: r,
}))
- await agent.com.atproto.repo.applyWrites({
- repo: session.did,
- writes: followWrites,
- })
+ const chunks = chunk(followWrites, 50)
+ for (const chunk of chunks) {
+ await agent.com.atproto.repo.applyWrites({
+ repo: session.did,
+ writes: chunk,
+ })
+ }
await whenFollowsIndexed(agent, session.did, res => !!res.data.follows.length)
const followUris = new Map()
diff --git a/src/view/screens/PostLikedBy.tsx b/src/screens/Post/PostLikedBy.tsx
similarity index 69%
rename from src/view/screens/PostLikedBy.tsx
rename to src/screens/Post/PostLikedBy.tsx
index 5ff5a1932e..c29e0aa24c 100644
--- a/src/view/screens/PostLikedBy.tsx
+++ b/src/screens/Post/PostLikedBy.tsx
@@ -4,11 +4,12 @@ import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useFocusEffect} from '@react-navigation/native'
+import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types'
+import {makeRecordUri} from '#/lib/strings/url-helpers'
import {useSetMinimalShellMode} from '#/state/shell'
-import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types'
-import {makeRecordUri} from 'lib/strings/url-helpers'
-import {PostLikedBy as PostLikedByComponent} from '../com/post-thread/PostLikedBy'
-import {ViewHeader} from '../com/util/ViewHeader'
+import {PostLikedBy as PostLikedByComponent} from '#/view/com/post-thread/PostLikedBy'
+import {ViewHeader} from '#/view/com/util/ViewHeader'
+import {atoms as a} from '#/alf'
type Props = NativeStackScreenProps
export const PostLikedByScreen = ({route}: Props) => {
@@ -24,7 +25,7 @@ export const PostLikedByScreen = ({route}: Props) => {
)
return (
-
+
diff --git a/src/screens/Post/PostQuotes.tsx b/src/screens/Post/PostQuotes.tsx
new file mode 100644
index 0000000000..d670f32150
--- /dev/null
+++ b/src/screens/Post/PostQuotes.tsx
@@ -0,0 +1,33 @@
+import React from 'react'
+import {View} from 'react-native'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useFocusEffect} from '@react-navigation/native'
+
+import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types'
+import {makeRecordUri} from '#/lib/strings/url-helpers'
+import {useSetMinimalShellMode} from '#/state/shell'
+import {PostQuotes as PostQuotesComponent} from '#/view/com/post-thread/PostQuotes'
+import {ViewHeader} from '#/view/com/util/ViewHeader'
+import {atoms as a} from '#/alf'
+
+type Props = NativeStackScreenProps
+export const PostQuotesScreen = ({route}: Props) => {
+ const setMinimalShellMode = useSetMinimalShellMode()
+ const {name, rkey} = route.params
+ const uri = makeRecordUri(name, 'app.bsky.feed.post', rkey)
+ const {_} = useLingui()
+
+ useFocusEffect(
+ React.useCallback(() => {
+ setMinimalShellMode(false)
+ }, [setMinimalShellMode]),
+ )
+
+ return (
+
+
+
+
+ )
+}
diff --git a/src/view/screens/PostRepostedBy.tsx b/src/screens/Post/PostRepostedBy.tsx
similarity index 69%
rename from src/view/screens/PostRepostedBy.tsx
rename to src/screens/Post/PostRepostedBy.tsx
index eaacc67807..b15a6f6ee2 100644
--- a/src/view/screens/PostRepostedBy.tsx
+++ b/src/screens/Post/PostRepostedBy.tsx
@@ -4,11 +4,12 @@ import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useFocusEffect} from '@react-navigation/native'
+import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types'
+import {makeRecordUri} from '#/lib/strings/url-helpers'
import {useSetMinimalShellMode} from '#/state/shell'
-import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types'
-import {makeRecordUri} from 'lib/strings/url-helpers'
-import {PostRepostedBy as PostRepostedByComponent} from '../com/post-thread/PostRepostedBy'
-import {ViewHeader} from '../com/util/ViewHeader'
+import {PostRepostedBy as PostRepostedByComponent} from '#/view/com/post-thread/PostRepostedBy'
+import {ViewHeader} from '#/view/com/util/ViewHeader'
+import {atoms as a} from '#/alf'
type Props = NativeStackScreenProps
export const PostRepostedByScreen = ({route}: Props) => {
@@ -24,7 +25,7 @@ export const PostRepostedByScreen = ({route}: Props) => {
)
return (
-
+
diff --git a/src/screens/Settings/components/DeactivateAccountDialog.tsx b/src/screens/Settings/components/DeactivateAccountDialog.tsx
index 99999d068f..2be42d13e6 100644
--- a/src/screens/Settings/components/DeactivateAccountDialog.tsx
+++ b/src/screens/Settings/components/DeactivateAccountDialog.tsx
@@ -35,7 +35,7 @@ function DeactivateAccountDialogInner({
const {gtMobile} = useBreakpoints()
const {_} = useLingui()
const agent = useAgent()
- const {logout} = useSessionApi()
+ const {logoutCurrentAccount} = useSessionApi()
const [pending, setPending] = React.useState(false)
const [error, setError] = React.useState()
@@ -44,7 +44,7 @@ function DeactivateAccountDialogInner({
setPending(true)
await agent.com.atproto.server.deactivateAccount({})
control.close(() => {
- logout('Deactivated')
+ logoutCurrentAccount('Deactivated')
})
} catch (e: any) {
switch (e.message) {
@@ -66,7 +66,7 @@ function DeactivateAccountDialogInner({
} finally {
setPending(false)
}
- }, [agent, control, logout, _, setPending])
+ }, [agent, control, logoutCurrentAccount, _, setPending])
return (
<>
diff --git a/src/screens/Signup/StepCaptcha/index.tsx b/src/screens/Signup/StepCaptcha/index.tsx
index bf35764908..e233d31dd0 100644
--- a/src/screens/Signup/StepCaptcha/index.tsx
+++ b/src/screens/Signup/StepCaptcha/index.tsx
@@ -8,7 +8,7 @@ import {createFullHandle} from '#/lib/strings/handles'
import {logger} from '#/logger'
import {logEvent} from 'lib/statsig/statsig'
import {ScreenTransition} from '#/screens/Login/ScreenTransition'
-import {useSignupContext, useSubmitSignup} from '#/screens/Signup/state'
+import {useSignupContext} from '#/screens/Signup/state'
import {CaptchaWebView} from '#/screens/Signup/StepCaptcha/CaptchaWebView'
import {atoms as a, useTheme} from '#/alf'
import {FormError} from '#/components/forms/FormError'
@@ -20,7 +20,6 @@ export function StepCaptcha() {
const {_} = useLingui()
const theme = useTheme()
const {state, dispatch} = useSignupContext()
- const submit = useSubmitSignup({state, dispatch})
const [completed, setCompleted] = React.useState(false)
@@ -42,9 +41,13 @@ export function StepCaptcha() {
(code: string) => {
setCompleted(true)
logEvent('signup:captchaSuccess', {})
- submit(code)
+ const submitTask = {code, mutableProcessed: false}
+ dispatch({
+ type: 'submit',
+ task: submitTask,
+ })
},
- [submit],
+ [dispatch],
)
const onError = React.useCallback(
diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx
index b443e822a4..4e63efd2e6 100644
--- a/src/screens/Signup/StepHandle.tsx
+++ b/src/screens/Signup/StepHandle.tsx
@@ -7,9 +7,10 @@ import {logEvent} from '#/lib/statsig/statsig'
import {createFullHandle, validateHandle} from '#/lib/strings/handles'
import {useAgent} from '#/state/session'
import {ScreenTransition} from '#/screens/Login/ScreenTransition'
-import {useSignupContext, useSubmitSignup} from '#/screens/Signup/state'
+import {useSignupContext} from '#/screens/Signup/state'
import {atoms as a, useTheme} from '#/alf'
import * as TextField from '#/components/forms/TextField'
+import {useThrottledValue} from '#/components/hooks/useThrottledValue'
import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At'
import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times'
@@ -20,10 +21,10 @@ export function StepHandle() {
const {_} = useLingui()
const t = useTheme()
const {state, dispatch} = useSignupContext()
- const submit = useSubmitSignup({state, dispatch})
const agent = useAgent()
const handleValueRef = useRef(state.handle)
const [draftValue, setDraftValue] = React.useState(state.handle)
+ const isLoading = useThrottledValue(state.isLoading, 500)
const onNextPress = React.useCallback(async () => {
const handle = handleValueRef.current.trim()
@@ -64,7 +65,8 @@ export function StepHandle() {
})
// phoneVerificationRequired is actually whether a captcha is required
if (!state.serviceDescription?.phoneVerificationRequired) {
- submit()
+ const submitTask = {code: undefined, mutableProcessed: false}
+ dispatch({type: 'submit', task: submitTask})
return
}
dispatch({type: 'next'})
@@ -74,7 +76,6 @@ export function StepHandle() {
state.activeStep,
state.serviceDescription?.phoneVerificationRequired,
state.userDomain,
- submit,
agent,
])
@@ -175,7 +176,7 @@ export function StepHandle() {
)}
void}) {
const {screen} = useAnalytics()
const [state, dispatch] = React.useReducer(reducer, initialState)
const {gtMobile} = useBreakpoints()
+ const submit = useSubmitSignup()
const activeStarterPack = useActiveStarterPack()
const {
@@ -81,6 +83,15 @@ export function Signup({onPressBack}: {onPressBack: () => void}) {
}
}, [_, serviceInfo, isError])
+ React.useEffect(() => {
+ if (state.pendingSubmit) {
+ if (!state.pendingSubmit.mutableProcessed) {
+ state.pendingSubmit.mutableProcessed = true
+ submit(state, dispatch)
+ }
+ }
+ }, [state, dispatch, submit])
+
return (
({} as IContext)
export const useSignupContext = () => React.useContext(SignupContext)
-export function useSubmitSignup({
- state,
- dispatch,
-}: {
- state: SignupState
- dispatch: (action: SignupAction) => void
-}) {
+export function useSubmitSignup() {
const {_} = useLingui()
const {createAccount} = useSessionApi()
const onboardingDispatch = useOnboardingDispatch()
return useCallback(
- async (verificationCode?: string) => {
+ async (
+ state: SignupState,
+ dispatch: (action: SignupAction) => void,
+ verificationCode?: string,
+ ) => {
if (!state.email) {
dispatch({type: 'setStep', value: SignupStep.INFO})
return dispatch({
@@ -270,19 +282,6 @@ export function useSubmitSignup({
dispatch({type: 'setIsLoading', value: false})
}
},
- [
- state.email,
- state.password,
- state.handle,
- state.serviceDescription?.phoneVerificationRequired,
- state.serviceUrl,
- state.userDomain,
- state.inviteCode,
- state.dateOfBirth,
- dispatch,
- _,
- onboardingDispatch,
- createAccount,
- ],
+ [_, onboardingDispatch, createAccount],
)
}
diff --git a/src/screens/SignupQueued.tsx b/src/screens/SignupQueued.tsx
index 4e4fedcfae..e7336569c6 100644
--- a/src/screens/SignupQueued.tsx
+++ b/src/screens/SignupQueued.tsx
@@ -23,7 +23,7 @@ export function SignupQueued() {
const insets = useSafeAreaInsets()
const {gtMobile} = useBreakpoints()
const onboardingDispatch = useOnboardingDispatch()
- const {logout} = useSessionApi()
+ const {logoutCurrentAccount} = useSessionApi()
const agent = useAgent()
const [isProcessing, setProcessing] = React.useState(false)
@@ -40,7 +40,7 @@ export function SignupQueued() {
const res = await agent.com.atproto.temp.checkSignupQueue()
if (res.data.activated) {
// ready to go, exchange the access token for a usable one and kick off onboarding
- await agent.refreshSession()
+ await agent.sessionManager.refreshSession()
if (!isSignupQueued(agent.session?.accessJwt)) {
onboardingDispatch({type: 'start'})
}
@@ -153,7 +153,7 @@ export function SignupQueued() {
variant="ghost"
size="large"
label={_(msg`Log out`)}
- onPress={() => logout('SignupQueued')}>
+ onPress={() => logoutCurrentAccount('SignupQueued')}>
Log out
@@ -182,7 +182,7 @@ export function SignupQueued() {
variant="ghost"
size="large"
label={_(msg`Log out`)}
- onPress={() => logout('SignupQueued')}>
+ onPress={() => logoutCurrentAccount('SignupQueued')}>
Log out
diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx
index 643a722119..7dda45f968 100644
--- a/src/screens/StarterPack/StarterPackLandingScreen.tsx
+++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx
@@ -31,10 +31,12 @@ import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonText} from '#/components/Button'
import {useDialogControl} from '#/components/Dialog'
import * as FeedCard from '#/components/FeedCard'
+import {useRichText} from '#/components/hooks/useRichText'
import {LinearGradientBackground} from '#/components/LinearGradientBackground'
import {ListMaybePlaceholder} from '#/components/Lists'
import {Default as ProfileCard} from '#/components/ProfileCard'
import * as Prompt from '#/components/Prompt'
+import {RichText} from '#/components/RichText'
import {Text} from '#/components/Typography'
const AnimatedPressable = Animated.createAnimatedComponent(Pressable)
@@ -82,9 +84,15 @@ export function LandingScreen({
return
}
+ // Just for types, this cannot be hit
+ if (!AppBskyGraphStarterpack.isRecord(starterPack.record)) {
+ return null
+ }
+
return (
@@ -93,22 +101,25 @@ export function LandingScreen({
function LandingScreenLoaded({
starterPack,
+ starterPackRecord: record,
setScreenState,
// TODO apply this to profile card
moderationOpts,
}: {
starterPack: AppBskyGraphDefs.StarterPackView
+ starterPackRecord: AppBskyGraphStarterpack.Record
setScreenState: (state: LoggedOutScreenState) => void
moderationOpts: ModerationOpts
}) {
- const {record, creator, listItemsSample, feeds} = starterPack
+ const {creator, listItemsSample, feeds} = starterPack
const {_} = useLingui()
const t = useTheme()
const activeStarterPack = useActiveStarterPack()
const setActiveStarterPack = useSetActiveStarterPack()
const {isTabletOrDesktop} = useWebMediaQueries()
const androidDialogControl = useDialogControl()
+ const [descriptionRt] = useRichText(record.description || '')
const [appClipOverlayVisible, setAppClipOverlayVisible] =
React.useState(false)
@@ -147,10 +158,6 @@ function LandingScreenLoaded({
}
}
- if (!AppBskyGraphStarterpack.isRecord(record)) {
- return null
- }
-
return (
{record.description ? (
-
- {record.description}
-
+
) : null}
)}
{error !== '' && (
-
-
-
+
+
+
+
+ {error}
+
+
- {error}
)}
@@ -664,8 +715,12 @@ export const ComposePost = observer(function ComposePost({
{replyTo ? null : (
)}
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx
index cb16e3c666..f69c895693 100644
--- a/src/view/com/composer/text-input/TextInput.tsx
+++ b/src/view/com/composer/text-input/TextInput.tsx
@@ -85,71 +85,59 @@ export const TextInput = forwardRef(function TextInputImpl(
const pastSuggestedUris = useRef(new Set())
const prevDetectedUris = useRef(new Map())
const onChangeText = useCallback(
- (newText: string) => {
- /*
- * This is a hack to bump the rendering of our styled
- * `textDecorated` to _after_ whatever processing is happening
- * within the `PasteInput` library. Without this, the elements in
- * `textDecorated` are not correctly painted to screen.
- *
- * NB: we tried a `0` timeout as well, but only positive values worked.
- *
- * @see https://github.com/bluesky-social/social-app/issues/929
- */
- setTimeout(async () => {
- const mayBePaste = newText.length > prevLength.current + 1
+ async (newText: string) => {
+ const mayBePaste = newText.length > prevLength.current + 1
- const newRt = new RichText({text: newText})
- newRt.detectFacetsWithoutResolution()
- setRichText(newRt)
+ const newRt = new RichText({text: newText})
+ newRt.detectFacetsWithoutResolution()
+ setRichText(newRt)
- const prefix = getMentionAt(
- newText,
- textInputSelection.current?.start || 0,
- )
- if (prefix) {
- setAutocompletePrefix(prefix.value)
- } else if (autocompletePrefix) {
- setAutocompletePrefix('')
- }
+ const prefix = getMentionAt(
+ newText,
+ textInputSelection.current?.start || 0,
+ )
+ if (prefix) {
+ setAutocompletePrefix(prefix.value)
+ } else if (autocompletePrefix) {
+ setAutocompletePrefix('')
+ }
- const nextDetectedUris = new Map()
- if (newRt.facets) {
- for (const facet of newRt.facets) {
- for (const feature of facet.features) {
- if (AppBskyRichtextFacet.isLink(feature)) {
- if (isUriImage(feature.uri)) {
- const res = await downloadAndResize({
- uri: feature.uri,
- width: POST_IMG_MAX.width,
- height: POST_IMG_MAX.height,
- mode: 'contain',
- maxSize: POST_IMG_MAX.size,
- timeout: 15e3,
- })
+ const nextDetectedUris = new Map()
+ if (newRt.facets) {
+ for (const facet of newRt.facets) {
+ for (const feature of facet.features) {
+ if (AppBskyRichtextFacet.isLink(feature)) {
+ if (isUriImage(feature.uri)) {
+ const res = await downloadAndResize({
+ uri: feature.uri,
+ width: POST_IMG_MAX.width,
+ height: POST_IMG_MAX.height,
+ mode: 'contain',
+ maxSize: POST_IMG_MAX.size,
+ timeout: 15e3,
+ })
- if (res !== undefined) {
- onPhotoPasted(res.path)
- }
- } else {
- nextDetectedUris.set(feature.uri, {facet, rt: newRt})
+ if (res !== undefined) {
+ onPhotoPasted(res.path)
}
+ } else {
+ nextDetectedUris.set(feature.uri, {facet, rt: newRt})
}
}
}
}
- const suggestedUri = suggestLinkCardUri(
- mayBePaste,
- nextDetectedUris,
- prevDetectedUris.current,
- pastSuggestedUris.current,
- )
- prevDetectedUris.current = nextDetectedUris
- if (suggestedUri) {
- onNewLink(suggestedUri)
- }
- prevLength.current = newText.length
- }, 1)
+ }
+ const suggestedUri = suggestLinkCardUri(
+ mayBePaste,
+ nextDetectedUris,
+ prevDetectedUris.current,
+ pastSuggestedUris.current,
+ )
+ prevDetectedUris.current = nextDetectedUris
+ if (suggestedUri) {
+ onNewLink(suggestedUri)
+ }
+ prevLength.current = newText.length
},
[setRichText, autocompletePrefix, onPhotoPasted, onNewLink],
)
diff --git a/src/view/com/composer/threadgate/ThreadgateBtn.tsx b/src/view/com/composer/threadgate/ThreadgateBtn.tsx
index 6cf2eea2c4..666473afd9 100644
--- a/src/view/com/composer/threadgate/ThreadgateBtn.tsx
+++ b/src/view/com/composer/threadgate/ThreadgateBtn.tsx
@@ -1,27 +1,33 @@
import React from 'react'
import {Keyboard, StyleProp, ViewStyle} from 'react-native'
import Animated, {AnimatedStyle} from 'react-native-reanimated'
+import {AppBskyFeedPostgate} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {isNative} from '#/platform/detection'
-import {ThreadgateSetting} from '#/state/queries/threadgate'
+import {ThreadgateAllowUISetting} from '#/state/queries/threadgate'
import {useAnalytics} from 'lib/analytics/analytics'
import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
-import {ThreadgateEditorDialog} from '#/components/dialogs/ThreadgateEditor'
-import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/components/icons/CircleBanSign'
+import {PostInteractionSettingsControlledDialog} from '#/components/dialogs/PostInteractionSettingsDialog'
import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe'
import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group'
export function ThreadgateBtn({
- threadgate,
- onChange,
+ postgate,
+ onChangePostgate,
+ threadgateAllowUISettings,
+ onChangeThreadgateAllowUISettings,
style,
}: {
- threadgate: ThreadgateSetting[]
- onChange: (v: ThreadgateSetting[]) => void
+ postgate: AppBskyFeedPostgate.Record
+ onChangePostgate: (v: AppBskyFeedPostgate.Record) => void
+
+ threadgateAllowUISettings: ThreadgateAllowUISetting[]
+ onChangeThreadgateAllowUISettings: (v: ThreadgateAllowUISetting[]) => void
+
style?: StyleProp>
}) {
const {track} = useAnalytics()
@@ -38,13 +44,15 @@ export function ThreadgateBtn({
control.open()
}
- const isEverybody = threadgate.length === 0
- const isNobody = !!threadgate.find(gate => gate.type === 'nobody')
- const label = isEverybody
- ? _(msg`Everybody can reply`)
- : isNobody
- ? _(msg`Nobody can reply`)
- : _(msg`Some people can reply`)
+ const anyoneCanReply =
+ threadgateAllowUISettings.length === 1 &&
+ threadgateAllowUISettings[0].type === 'everybody'
+ const anyoneCanQuote =
+ !postgate.embeddingRules || postgate.embeddingRules.length === 0
+ const anyoneCanInteract = anyoneCanReply && anyoneCanQuote
+ const label = anyoneCanInteract
+ ? _(msg`Anybody can interact`)
+ : _(msg`Interaction limited`)
return (
<>
@@ -59,16 +67,19 @@ export function ThreadgateBtn({
accessibilityHint={_(
msg`Opens a dialog to choose who can reply to this thread`,
)}>
-
+
{label}
- {
+ control.close()
+ }}
+ postgate={postgate}
+ onChangePostgate={onChangePostgate}
+ threadgateAllowUISettings={threadgateAllowUISettings}
+ onChangeThreadgateAllowUISettings={onChangeThreadgateAllowUISettings}
/>
>
)
diff --git a/src/view/com/composer/useExternalLinkFetch.ts b/src/view/com/composer/useExternalLinkFetch.ts
index 2938ea25ac..3175144372 100644
--- a/src/view/com/composer/useExternalLinkFetch.ts
+++ b/src/view/com/composer/useExternalLinkFetch.ts
@@ -1,4 +1,6 @@
import {useEffect, useState} from 'react'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
import {logger} from '#/logger'
import {useFetchDid} from '#/state/queries/handle'
@@ -7,6 +9,7 @@ import {useAgent} from '#/state/session'
import * as apilib from 'lib/api/index'
import {POST_IMG_MAX} from 'lib/constants'
import {
+ EmbeddingDisabledError,
getFeedAsEmbed,
getListAsEmbed,
getPostAsQuote,
@@ -28,9 +31,12 @@ import {ComposerOpts} from 'state/shell/composer'
export function useExternalLinkFetch({
setQuote,
+ setError,
}: {
setQuote: (opts: ComposerOpts['quote']) => void
+ setError: (err: string) => void
}) {
+ const {_} = useLingui()
const [extLink, setExtLink] = useState(
undefined,
)
@@ -57,9 +63,13 @@ export function useExternalLinkFetch({
setExtLink(undefined)
},
err => {
- logger.error('Failed to fetch post for quote embedding', {
- message: err.toString(),
- })
+ if (err instanceof EmbeddingDisabledError) {
+ setError(_(msg`This post's author has disabled quote posts.`))
+ } else {
+ logger.error('Failed to fetch post for quote embedding', {
+ message: err.toString(),
+ })
+ }
setExtLink(undefined)
},
)
@@ -170,7 +180,7 @@ export function useExternalLinkFetch({
})
}
return cleanup
- }, [extLink, setQuote, getPost, fetchDid, agent])
+ }, [_, extLink, setQuote, getPost, fetchDid, agent, setError])
return {extLink, setExtLink}
}
diff --git a/src/view/com/composer/videos/VideoPreview.tsx b/src/view/com/composer/videos/VideoPreview.tsx
index 8e2a22852d..6956c8c4f8 100644
--- a/src/view/com/composer/videos/VideoPreview.tsx
+++ b/src/view/com/composer/videos/VideoPreview.tsx
@@ -16,8 +16,8 @@ export function VideoPreview({
}) {
const player = useVideoPlayer(video.uri, player => {
player.loop = true
+ player.muted = true
player.play()
- player.volume = 0
})
return (
diff --git a/src/view/com/composer/videos/VideoTranscodeProgress.tsx b/src/view/com/composer/videos/VideoTranscodeProgress.tsx
index db58448a30..a44b633cd5 100644
--- a/src/view/com/composer/videos/VideoTranscodeProgress.tsx
+++ b/src/view/com/composer/videos/VideoTranscodeProgress.tsx
@@ -3,6 +3,7 @@ import {View} from 'react-native'
// @ts-expect-error no type definition
import ProgressPie from 'react-native-progress/Pie'
import {ImagePickerAsset} from 'expo-image-picker'
+import {Trans} from '@lingui/macro'
import {atoms as a, useTheme} from '#/alf'
import {Text} from '#/components/Typography'
@@ -46,7 +47,9 @@ export function VideoTranscodeProgress({
color={t.atoms.text.color}
progress={progress}
/>
- Compressing...
+
+ Compressing...
+
)
diff --git a/src/view/com/lists/ListCard.tsx b/src/view/com/lists/ListCard.tsx
deleted file mode 100644
index 587885502b..0000000000
--- a/src/view/com/lists/ListCard.tsx
+++ /dev/null
@@ -1,183 +0,0 @@
-import React from 'react'
-import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native'
-import {AppBskyGraphDefs, AtUri, RichText} from '@atproto/api'
-import {Trans} from '@lingui/macro'
-
-import {useSession} from '#/state/session'
-import {usePalette} from 'lib/hooks/usePalette'
-import {makeProfileLink} from 'lib/routes/links'
-import {sanitizeDisplayName} from 'lib/strings/display-names'
-import {sanitizeHandle} from 'lib/strings/handles'
-import {s} from 'lib/styles'
-import {atoms as a} from '#/alf'
-import {RichText as RichTextCom} from '#/components/RichText'
-import {Link} from '../util/Link'
-import {Text} from '../util/text/Text'
-import {UserAvatar} from '../util/UserAvatar'
-
-export const ListCard = ({
- testID,
- list,
- noBg,
- noBorder,
- renderButton,
- style,
-}: {
- testID?: string
- list: AppBskyGraphDefs.ListView
- noBg?: boolean
- noBorder?: boolean
- renderButton?: () => JSX.Element
- style?: StyleProp
-}) => {
- const pal = usePalette('default')
- const {currentAccount} = useSession()
-
- const rkey = React.useMemo(() => {
- try {
- const urip = new AtUri(list.uri)
- return urip.rkey
- } catch {
- return ''
- }
- }, [list])
-
- const descriptionRichText = React.useMemo(() => {
- if (list.description) {
- return new RichText({
- text: list.description,
- facets: list.descriptionFacets,
- })
- }
- return undefined
- }, [list])
-
- return (
-
-
-
-
-
-
-
- {sanitizeDisplayName(list.name)}
-
-
- {list.purpose === 'app.bsky.graph.defs#curatelist' &&
- (list.creator.did === currentAccount?.did ? (
- User list by you
- ) : (
-
- User list by {sanitizeHandle(list.creator.handle, '@')}
-
- ))}
- {list.purpose === 'app.bsky.graph.defs#modlist' &&
- (list.creator.did === currentAccount?.did ? (
- Moderation list by you
- ) : (
-
- Moderation list by {sanitizeHandle(list.creator.handle, '@')}
-
- ))}
-
-
- {list.viewer?.muted ? (
-
-
- Muted
-
-
- ) : null}
-
- {list.viewer?.blocked ? (
-
-
- Blocked
-
-
- ) : null}
-
-
- {renderButton ? (
- {renderButton()}
- ) : undefined}
-
- {descriptionRichText ? (
-
-
-
- ) : undefined}
-
- )
-}
-
-const styles = StyleSheet.create({
- outer: {
- borderTopWidth: StyleSheet.hairlineWidth,
- paddingHorizontal: 6,
- },
- outerNoBorder: {
- borderTopWidth: 0,
- },
- layout: {
- flexDirection: 'row',
- alignItems: 'center',
- },
- layoutAvi: {
- width: 54,
- paddingLeft: 4,
- paddingTop: 8,
- paddingBottom: 10,
- },
- avi: {
- width: 40,
- height: 40,
- borderRadius: 20,
- resizeMode: 'cover',
- },
- layoutContent: {
- flex: 1,
- paddingRight: 10,
- paddingTop: 10,
- paddingBottom: 10,
- },
- layoutButton: {
- paddingRight: 10,
- },
- details: {
- paddingLeft: 54,
- paddingRight: 10,
- paddingBottom: 10,
- },
- pill: {
- borderRadius: 4,
- paddingHorizontal: 6,
- paddingVertical: 2,
- },
- btn: {
- paddingVertical: 7,
- borderRadius: 50,
- marginLeft: 6,
- paddingHorizontal: 14,
- },
-})
diff --git a/src/view/com/lists/MyLists.tsx b/src/view/com/lists/MyLists.tsx
index 472d2688c7..b56fa6c75f 100644
--- a/src/view/com/lists/MyLists.tsx
+++ b/src/view/com/lists/MyLists.tsx
@@ -4,7 +4,6 @@ import {
FlatList as RNFlatList,
RefreshControl,
StyleProp,
- StyleSheet,
View,
ViewStyle,
} from 'react-native'
@@ -18,10 +17,13 @@ import {MyListsFilter, useMyListsQuery} from '#/state/queries/my-lists'
import {useAnalytics} from 'lib/analytics/analytics'
import {usePalette} from 'lib/hooks/usePalette'
import {s} from 'lib/styles'
+import {isWeb} from 'platform/detection'
+import {useModerationOpts} from 'state/preferences/moderation-opts'
import {EmptyState} from 'view/com/util/EmptyState'
+import {atoms as a, useTheme} from '#/alf'
+import * as ListCard from '#/components/ListCard'
import {ErrorMessage} from '../util/error/ErrorMessage'
import {List} from '../util/List'
-import {ListCard} from './ListCard'
const LOADING = {_reactKey: '__loading__'}
const EMPTY = {_reactKey: '__empty__'}
@@ -41,8 +43,10 @@ export function MyLists({
testID?: string
}) {
const pal = usePalette('default')
+ const t = useTheme()
const {track} = useAnalytics()
const {_} = useLingui()
+ const moderationOpts = useModerationOpts()
const [isPTRing, setIsPTRing] = React.useState(false)
const {data, isFetching, isFetched, isError, error, refetch} =
useMyListsQuery(filter)
@@ -53,7 +57,7 @@ export function MyLists({
if (isError && isEmpty) {
items = items.concat([ERROR_ITEM])
}
- if (!isFetched && isFetching) {
+ if ((!isFetched && isFetching) || !moderationOpts) {
items = items.concat([LOADING])
} else if (isEmpty) {
items = items.concat([EMPTY])
@@ -61,7 +65,7 @@ export function MyLists({
items = items.concat(data)
}
return items
- }, [isError, isEmpty, isFetched, isFetching, data])
+ }, [isError, isEmpty, isFetched, isFetching, moderationOpts, data])
// events
// =
@@ -85,7 +89,6 @@ export function MyLists({
if (item === EMPTY) {
return (
)
} else if (item === LOADING) {
return (
-
+
)
@@ -109,15 +111,18 @@ export function MyLists({
return renderItem ? (
renderItem(item, index)
) : (
-
+
+
+
)
},
- [error, onRefresh, renderItem, _],
+ [renderItem, t.atoms.border_contrast_low, _, error, onRefresh],
)
if (inline) {
@@ -166,10 +171,3 @@ export function MyLists({
)
}
}
-
-const styles = StyleSheet.create({
- item: {
- paddingHorizontal: 18,
- paddingVertical: 4,
- },
-})
diff --git a/src/view/com/pager/PagerWithHeader.web.tsx b/src/view/com/pager/PagerWithHeader.web.tsx
index fe260feafd..35879c7bb9 100644
--- a/src/view/com/pager/PagerWithHeader.web.tsx
+++ b/src/view/com/pager/PagerWithHeader.web.tsx
@@ -193,13 +193,11 @@ const styles = StyleSheet.create({
tabBarContainer: {
// @ts-ignore web-only
position: 'sticky',
- overflow: 'hidden',
top: 0,
zIndex: 1,
},
tabBarContainerDesktop: {
marginHorizontal: 'auto',
- paddingHorizontal: 2,
width: 600,
borderLeftWidth: 1,
borderRightWidth: 1,
diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx
index 4801ae5e32..59bb77e367 100644
--- a/src/view/com/pager/TabBar.tsx
+++ b/src/view/com/pager/TabBar.tsx
@@ -180,7 +180,7 @@ const desktopStyles = StyleSheet.create({
left: 0,
right: 0,
top: '100%',
- borderBottomWidth: 1,
+ borderBottomWidth: StyleSheet.hairlineWidth,
},
})
diff --git a/src/view/com/post-thread/PostLikedBy.tsx b/src/view/com/post-thread/PostLikedBy.tsx
index da230aade9..c3e3f9e17e 100644
--- a/src/view/com/post-thread/PostLikedBy.tsx
+++ b/src/view/com/post-thread/PostLikedBy.tsx
@@ -8,13 +8,13 @@ import {logger} from '#/logger'
import {useLikedByQuery} from '#/state/queries/post-liked-by'
import {useResolveUriQuery} from '#/state/queries/resolve-uri'
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
+import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard'
+import {List} from '#/view/com/util/List'
import {
ListFooter,
ListHeaderDesktop,
ListMaybePlaceholder,
} from '#/components/Lists'
-import {ProfileCardWithFollowBtn} from '../profile/ProfileCard'
-import {List} from '../util/List'
function renderItem({item}: {item: GetLikes.Like}) {
return
diff --git a/src/view/com/post-thread/PostQuotes.tsx b/src/view/com/post-thread/PostQuotes.tsx
new file mode 100644
index 0000000000..f91a041d75
--- /dev/null
+++ b/src/view/com/post-thread/PostQuotes.tsx
@@ -0,0 +1,138 @@
+import React, {useCallback, useState} from 'react'
+import {
+ AppBskyFeedDefs,
+ AppBskyFeedPost,
+ ModerationDecision,
+} from '@atproto/api'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {moderatePost_wrapped as moderatePost} from '#/lib/moderatePost_wrapped'
+import {cleanError} from '#/lib/strings/errors'
+import {logger} from '#/logger'
+import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {usePostQuotesQuery} from '#/state/queries/post-quotes'
+import {useResolveUriQuery} from '#/state/queries/resolve-uri'
+import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
+import {Post} from 'view/com/post/Post'
+import {
+ ListFooter,
+ ListHeaderDesktop,
+ ListMaybePlaceholder,
+} from '#/components/Lists'
+import {List} from '../util/List'
+
+function renderItem({
+ item,
+}: {
+ item: {
+ post: AppBskyFeedDefs.PostView
+ moderation: ModerationDecision
+ record: AppBskyFeedPost.Record
+ }
+}) {
+ return
+}
+
+function keyExtractor(item: {
+ post: AppBskyFeedDefs.PostView
+ moderation: ModerationDecision
+ record: AppBskyFeedPost.Record
+}) {
+ return item.post.uri
+}
+
+export function PostQuotes({uri}: {uri: string}) {
+ const {_} = useLingui()
+ const initialNumToRender = useInitialNumToRender()
+
+ const [isPTRing, setIsPTRing] = useState(false)
+
+ const {
+ data: resolvedUri,
+ error: resolveError,
+ isLoading: isLoadingUri,
+ } = useResolveUriQuery(uri)
+ const {
+ data,
+ isLoading: isLoadingQuotes,
+ isFetchingNextPage,
+ hasNextPage,
+ fetchNextPage,
+ error,
+ refetch,
+ } = usePostQuotesQuery(resolvedUri?.uri)
+
+ const moderationOpts = useModerationOpts()
+
+ const isError = Boolean(resolveError || error)
+
+ const quotes =
+ data?.pages
+ .flatMap(page =>
+ page.posts.map(post => {
+ if (!AppBskyFeedPost.isRecord(post.record) || !moderationOpts) {
+ return null
+ }
+ const moderation = moderatePost(post, moderationOpts)
+ return {post, record: post.record, moderation}
+ }),
+ )
+ .filter(item => item !== null) ?? []
+
+ const onRefresh = useCallback(async () => {
+ setIsPTRing(true)
+ try {
+ await refetch()
+ } catch (err) {
+ logger.error('Failed to refresh quotes', {message: err})
+ }
+ setIsPTRing(false)
+ }, [refetch, setIsPTRing])
+
+ const onEndReached = useCallback(async () => {
+ if (isFetchingNextPage || !hasNextPage || isError) return
+ try {
+ await fetchNextPage()
+ } catch (err) {
+ logger.error('Failed to load more quotes', {message: err})
+ }
+ }, [isFetchingNextPage, hasNextPage, isError, fetchNextPage])
+
+ if (isLoadingUri || isLoadingQuotes || isError) {
+ return (
+
+ )
+ }
+
+ // loaded
+ // =
+ return (
+
}
+ ListFooterComponent={
+
+ }
+ // @ts-ignore our .web version only -prf
+ desktopFixedHeight
+ initialNumToRender={initialNumToRender}
+ windowSize={11}
+ />
+ )
+}
diff --git a/src/view/com/post-thread/PostRepostedBy.tsx b/src/view/com/post-thread/PostRepostedBy.tsx
index 9038549a50..0d1e86aec7 100644
--- a/src/view/com/post-thread/PostRepostedBy.tsx
+++ b/src/view/com/post-thread/PostRepostedBy.tsx
@@ -8,13 +8,13 @@ import {logger} from '#/logger'
import {usePostRepostedByQuery} from '#/state/queries/post-reposted-by'
import {useResolveUriQuery} from '#/state/queries/resolve-uri'
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
+import {ProfileCardWithFollowBtn} from '#/view/com/profile/ProfileCard'
+import {List} from '#/view/com/util/List'
import {
ListFooter,
ListHeaderDesktop,
ListMaybePlaceholder,
} from '#/components/Lists'
-import {ProfileCardWithFollowBtn} from '../profile/ProfileCard'
-import {List} from '../util/List'
function renderItem({item}: {item: ActorDefs.ProfileViewBasic}) {
return
diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx
index c64be8d671..d5740f870f 100644
--- a/src/view/com/post-thread/PostThread.tsx
+++ b/src/view/com/post-thread/PostThread.tsx
@@ -3,7 +3,7 @@ import {StyleSheet, useWindowDimensions, View} from 'react-native'
import {runOnJS} from 'react-native-reanimated'
import Animated from 'react-native-reanimated'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
-import {AppBskyFeedDefs} from '@atproto/api'
+import {AppBskyFeedDefs, AppBskyFeedThreadgate} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -25,6 +25,7 @@ import {
import {usePreferencesQuery} from '#/state/queries/preferences'
import {useSession} from '#/state/session'
import {useComposerControls} from '#/state/shell'
+import {useMergedThreadgateHiddenReplies} from '#/state/threadgate-hidden-replies'
import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender'
import {useMinimalShellFabTransform} from 'lib/hooks/useMinimalShellTransform'
import {useSetTitle} from 'lib/hooks/useSetTitle'
@@ -102,7 +103,7 @@ export function PostThread({uri}: {uri: string | undefined}) {
isError: isThreadError,
error: threadError,
refetch,
- data: thread,
+ data: {thread, threadgate} = {},
} = usePostThreadQuery(uri)
const treeView = React.useMemo(
@@ -113,6 +114,12 @@ export function PostThread({uri}: {uri: string | undefined}) {
)
const rootPost = thread?.type === 'post' ? thread.post : undefined
const rootPostRecord = thread?.type === 'post' ? thread.record : undefined
+ const threadgateRecord = threadgate?.record as
+ | AppBskyFeedThreadgate.Record
+ | undefined
+ const threadgateHiddenReplies = useMergedThreadgateHiddenReplies({
+ threadgateRecord,
+ })
const moderationOpts = useModerationOpts()
const isNoPwi = React.useMemo(() => {
@@ -175,11 +182,13 @@ export function PostThread({uri}: {uri: string | undefined}) {
threadModerationCache,
currentDid,
justPostedUris,
+ threadgateHiddenReplies,
),
- !!currentDid,
+ currentDid,
treeView,
threadModerationCache,
hiddenRepliesState !== HiddenRepliesState.Hide,
+ threadgateHiddenReplies,
)
}, [
thread,
@@ -189,6 +198,7 @@ export function PostThread({uri}: {uri: string | undefined}) {
threadModerationCache,
hiddenRepliesState,
justPostedUris,
+ threadgateHiddenReplies,
])
const error = React.useMemo(() => {
@@ -425,6 +435,7 @@ export function PostThread({uri}: {uri: string | undefined}) {
,
): ThreadSkeletonParts | null {
if (!node) return null
return {
- parents: Array.from(flattenThreadParents(node, hasSession)),
+ parents: Array.from(flattenThreadParents(node, !!currentDid)),
highlightedPost: node,
replies: Array.from(
flattenThreadReplies(
node,
- hasSession,
+ currentDid,
treeView,
modCache,
showHiddenReplies,
+ threadgateRecordHiddenReplies,
),
),
}
@@ -594,14 +607,15 @@ enum HiddenReplyType {
function* flattenThreadReplies(
node: ThreadNode,
- hasSession: boolean,
+ currentDid: string | undefined,
treeView: boolean,
modCache: ThreadModerationCache,
showHiddenReplies: boolean,
+ threadgateRecordHiddenReplies: Set,
): Generator {
if (node.type === 'post') {
// dont show pwi-opted-out posts to logged out users
- if (!hasSession && hasPwiOptOut(node)) {
+ if (!currentDid && hasPwiOptOut(node)) {
return HiddenReplyType.None
}
@@ -616,6 +630,16 @@ function* flattenThreadReplies(
return HiddenReplyType.Hidden
}
}
+
+ if (!showHiddenReplies) {
+ const hiddenByThreadgate = threadgateRecordHiddenReplies.has(
+ node.post.uri,
+ )
+ const authorIsViewer = node.post.author.did === currentDid
+ if (hiddenByThreadgate && !authorIsViewer) {
+ return HiddenReplyType.Hidden
+ }
+ }
}
if (!node.ctx.isHighlightedPost) {
@@ -627,10 +651,11 @@ function* flattenThreadReplies(
for (const reply of node.replies) {
let hiddenReply = yield* flattenThreadReplies(
reply,
- hasSession,
+ currentDid,
treeView,
modCache,
showHiddenReplies,
+ threadgateRecordHiddenReplies,
)
if (hiddenReply > hiddenReplies) {
hiddenReplies = hiddenReply
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx
index 8adbb17e29..f2a8be5988 100644
--- a/src/view/com/post-thread/PostThreadItem.tsx
+++ b/src/view/com/post-thread/PostThreadItem.tsx
@@ -3,6 +3,7 @@ import {StyleSheet, View} from 'react-native'
import {
AppBskyFeedDefs,
AppBskyFeedPost,
+ AppBskyFeedThreadgate,
AtUri,
ModerationDecision,
RichText as RichTextAPI,
@@ -16,6 +17,7 @@ import {useLanguagePrefs} from '#/state/preferences'
import {useOpenLink} from '#/state/preferences/in-app-browser'
import {ThreadPost} from '#/state/queries/post-thread'
import {useComposerControls} from '#/state/shell/composer'
+import {useMergedThreadgateHiddenReplies} from '#/state/threadgate-hidden-replies'
import {MAX_POST_LINES} from 'lib/constants'
import {usePalette} from 'lib/hooks/usePalette'
import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
@@ -29,6 +31,7 @@ import {isWeb} from 'platform/detection'
import {useSession} from 'state/session'
import {PostThreadFollowBtn} from 'view/com/post-thread/PostThreadFollowBtn'
import {atoms as a} from '#/alf'
+import {AppModerationCause} from '#/components/Pills'
import {RichText} from '#/components/RichText'
import {ContentHider} from '../../../components/moderation/ContentHider'
import {LabelsOnMyPost} from '../../../components/moderation/LabelsOnMe'
@@ -61,6 +64,7 @@ export function PostThreadItem({
overrideBlur,
onPostReply,
hideTopBorder,
+ threadgateRecord,
}: {
post: AppBskyFeedDefs.PostView
record: AppBskyFeedPost.Record
@@ -77,6 +81,7 @@ export function PostThreadItem({
overrideBlur: boolean
onPostReply: (postUri: string | undefined) => void
hideTopBorder?: boolean
+ threadgateRecord?: AppBskyFeedThreadgate.Record
}) {
const postShadowed = usePostShadow(post)
const richText = useMemo(
@@ -111,6 +116,7 @@ export function PostThreadItem({
overrideBlur={overrideBlur}
onPostReply={onPostReply}
hideTopBorder={hideTopBorder}
+ threadgateRecord={threadgateRecord}
/>
)
}
@@ -154,6 +160,7 @@ let PostThreadItemLoaded = ({
overrideBlur,
onPostReply,
hideTopBorder,
+ threadgateRecord,
}: {
post: Shadow
record: AppBskyFeedPost.Record
@@ -171,6 +178,7 @@ let PostThreadItemLoaded = ({
overrideBlur: boolean
onPostReply: (postUri: string | undefined) => void
hideTopBorder?: boolean
+ threadgateRecord?: AppBskyFeedThreadgate.Record
}): React.ReactNode => {
const pal = usePalette('default')
const {_} = useLingui()
@@ -199,6 +207,27 @@ let PostThreadItemLoaded = ({
return makeProfileLink(post.author, 'post', urip.rkey, 'reposted-by')
}, [post.uri, post.author])
const repostsTitle = _(msg`Reposts of this post`)
+ const threadgateHiddenReplies = useMergedThreadgateHiddenReplies({
+ threadgateRecord,
+ })
+ const additionalPostAlerts: AppModerationCause[] = React.useMemo(() => {
+ const isPostHiddenByThreadgate = threadgateHiddenReplies.has(post.uri)
+ const isControlledByViewer = new AtUri(rootUri).host === currentAccount?.did
+ return isControlledByViewer && isPostHiddenByThreadgate
+ ? [
+ {
+ type: 'reply-hidden',
+ source: {type: 'user', did: currentAccount?.did},
+ priority: 6,
+ },
+ ]
+ : []
+ }, [post, currentAccount?.did, threadgateHiddenReplies, rootUri])
+ const quotesHref = React.useMemo(() => {
+ const urip = new AtUri(post.uri)
+ return makeProfileLink(post.author, 'post', urip.rkey, 'quotes')
+ }, [post.uri, post.author])
+ const quotesTitle = _(msg`Quotes of this post`)
const translatorUrl = getTranslatorLink(
record?.text || '',
@@ -315,6 +344,7 @@ let PostThreadItemLoaded = ({
size="lg"
includeMute
style={[a.pt_2xs, a.pb_sm]}
+ additionalCauses={additionalPostAlerts}
/>
{richText?.text ? (
- {post.repostCount !== 0 || post.likeCount !== 0 ? (
+ {post.repostCount !== 0 ||
+ post.likeCount !== 0 ||
+ post.quoteCount !== 0 ? (
// Show this section unless we're *sure* it has no engagement.
{post.repostCount != null && post.repostCount !== 0 ? (
@@ -366,6 +398,26 @@ let PostThreadItemLoaded = ({
) : null}
+ {post.quoteCount != null && post.quoteCount !== 0 ? (
+
+
+
+ {formatCount(post.quoteCount)}
+ {' '}
+
+
+
+ ) : null}
{post.likeCount != null && post.likeCount !== 0 ? (
@@ -512,6 +566,7 @@ let PostThreadItemLoaded = ({
{richText?.text ? (
@@ -543,6 +598,7 @@ let PostThreadItemLoaded = ({
richText={richText}
onPressReply={onPressReply}
logContext="PostThreadItem"
+ threadgateRecord={threadgateRecord}
/>
@@ -649,6 +705,7 @@ function ExpandedPostDetails({
const pal = usePalette('default')
const {_} = useLingui()
const openLink = useOpenLink()
+ const isRootPost = !('reply' in post.record)
const onTranslatePress = React.useCallback(() => {
openLink(translatorUrl)
@@ -660,12 +717,14 @@ function ExpandedPostDetails({
a.flex_row,
a.align_center,
a.flex_wrap,
- a.gap_sm,
+ a.gap_xs,
s.mt2,
s.mb10,
]}>
{niceDate(post.indexedAt)}
-
+ {isRootPost && (
+
+ )}
{needsTranslation && (
<>
·
diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx
index 54ea9b1400..a179484000 100644
--- a/src/view/com/posts/Feed.tsx
+++ b/src/view/com/posts/Feed.tsx
@@ -480,9 +480,7 @@ let Feed = ({
// -prf
return
}
- return (
-
- )
+ return
} else {
return null
}
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx
index 8592f0bec2..a5714fafe8 100644
--- a/src/view/com/posts/FeedItem.tsx
+++ b/src/view/com/posts/FeedItem.tsx
@@ -1,9 +1,10 @@
-import React, {memo, useMemo, useState} from 'react'
+import React, {memo, useId, useMemo, useState} from 'react'
import {StyleSheet, View} from 'react-native'
import {
AppBskyActorDefs,
AppBskyFeedDefs,
AppBskyFeedPost,
+ AppBskyFeedThreadgate,
AtUri,
ModerationDecision,
RichText as RichTextAPI,
@@ -21,6 +22,7 @@ import {POST_TOMBSTONE, Shadow, usePostShadow} from '#/state/cache/post-shadow'
import {useFeedFeedbackContext} from '#/state/feed-feedback'
import {useSession} from '#/state/session'
import {useComposerControls} from '#/state/shell/composer'
+import {useMergedThreadgateHiddenReplies} from '#/state/threadgate-hidden-replies'
import {isReasonFeedSource, ReasonFeedSource} from 'lib/api/feed/types'
import {MAX_POST_LINES} from 'lib/constants'
import {usePalette} from 'lib/hooks/usePalette'
@@ -33,6 +35,7 @@ import {precacheProfile} from 'state/queries/profile'
import {atoms as a} from '#/alf'
import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repost'
import {ContentHider} from '#/components/moderation/ContentHider'
+import {AppModerationCause} from '#/components/Pills'
import {ProfileHoverCard} from '#/components/ProfileHoverCard'
import {RichText} from '#/components/RichText'
import {LabelsOnMyPost} from '../../../components/moderation/LabelsOnMe'
@@ -63,6 +66,7 @@ interface FeedItemProps {
feedContext: string | undefined
hideTopBorder?: boolean
isParentBlocked?: boolean
+ isParentNotFound?: boolean
}
export function FeedItem({
@@ -78,7 +82,12 @@ export function FeedItem({
isThreadParent,
hideTopBorder,
isParentBlocked,
-}: FeedItemProps & {post: AppBskyFeedDefs.PostView}): React.ReactNode {
+ isParentNotFound,
+ rootPost,
+}: FeedItemProps & {
+ post: AppBskyFeedDefs.PostView
+ rootPost: AppBskyFeedDefs.PostView
+}): React.ReactNode {
const postShadowed = usePostShadow(post)
const richText = useMemo(
() =>
@@ -109,6 +118,8 @@ export function FeedItem({
isThreadParent={isThreadParent}
hideTopBorder={hideTopBorder}
isParentBlocked={isParentBlocked}
+ isParentNotFound={isParentNotFound}
+ rootPost={rootPost}
/>
)
}
@@ -129,15 +140,17 @@ let FeedItemInner = ({
isThreadParent,
hideTopBorder,
isParentBlocked,
+ isParentNotFound,
+ rootPost,
}: FeedItemProps & {
richText: RichTextAPI
post: Shadow
+ rootPost: AppBskyFeedDefs.PostView
}): React.ReactNode => {
const queryClient = useQueryClient()
const {openComposer} = useComposerControls()
const pal = usePalette('default')
const {_} = useLingui()
- const gate = useGate()
const href = useMemo(() => {
const urip = new AtUri(post.uri)
@@ -214,6 +227,16 @@ let FeedItemInner = ({
AppBskyFeedDefs.isReasonRepost(reason) &&
reason.by.did === currentAccount?.did
+ /**
+ * If `post[0]` in this slice is the actual root post (not an orphan thread),
+ * then we may have a threadgate record to reference
+ */
+ const threadgateRecord = AppBskyFeedThreadgate.isRecord(
+ rootPost.threadgate?.record,
+ )
+ ? rootPost.threadgate.record
+ : undefined
+
return (
- {showReplyTo && (parentAuthor || isParentBlocked) && (
-
- )}
+ {showReplyTo &&
+ (parentAuthor || isParentBlocked || isParentNotFound) && (
+
+ )}
- {gate('video_debug') && (
-
- )}
+
@@ -375,23 +404,48 @@ let FeedItemInner = ({
FeedItemInner = memo(FeedItemInner)
let PostContent = ({
+ post,
moderation,
richText,
postEmbed,
postAuthor,
onOpenEmbed,
+ threadgateRecord,
}: {
moderation: ModerationDecision
richText: RichTextAPI
postEmbed: AppBskyFeedDefs.PostView['embed']
postAuthor: AppBskyFeedDefs.PostView['author']
onOpenEmbed: () => void
+ post: AppBskyFeedDefs.PostView
+ threadgateRecord?: AppBskyFeedThreadgate.Record
}): React.ReactNode => {
const pal = usePalette('default')
const {_} = useLingui()
+ const {currentAccount} = useSession()
const [limitLines, setLimitLines] = useState(
() => countLines(richText.text) >= MAX_POST_LINES,
)
+ const threadgateHiddenReplies = useMergedThreadgateHiddenReplies({
+ threadgateRecord,
+ })
+ const additionalPostAlerts: AppModerationCause[] = React.useMemo(() => {
+ const isPostHiddenByThreadgate = threadgateHiddenReplies.has(post.uri)
+ const rootPostUri = AppBskyFeedPost.isRecord(post.record)
+ ? post.record?.reply?.root?.uri || post.uri
+ : undefined
+ const isControlledByViewer =
+ rootPostUri && new AtUri(rootPostUri).host === currentAccount?.did
+ return isControlledByViewer && isPostHiddenByThreadgate
+ ? [
+ {
+ type: 'reply-hidden',
+ source: {type: 'user', did: currentAccount?.did},
+ priority: 6,
+ },
+ ]
+ : []
+ }, [post, currentAccount?.did, threadgateHiddenReplies])
const onPressShowMore = React.useCallback(() => {
setLimitLines(false)
@@ -403,7 +457,11 @@ let PostContent = ({
modui={moderation.ui('contentList')}
ignoreMute
childContainerStyle={styles.contentHiderChild}>
-
+
{richText.text ? (
Reply to a blocked post
+ } else if (notFound) {
+ label = Reply to a post
} else if (profile != null) {
const isMe = profile.did === currentAccount?.did
if (isMe) {
@@ -501,6 +563,19 @@ function ReplyToLabel({
)
}
+function VideoDebug() {
+ const gate = useGate()
+ const id = useId()
+
+ if (!gate('video_debug')) return null
+
+ return (
+
+ )
+}
+
const styles = StyleSheet.create({
outer: {
paddingLeft: 10,
diff --git a/src/view/com/posts/FeedSlice.tsx b/src/view/com/posts/FeedSlice.tsx
index fcd1ec3b18..0920026f60 100644
--- a/src/view/com/posts/FeedSlice.tsx
+++ b/src/view/com/posts/FeedSlice.tsx
@@ -36,6 +36,8 @@ let FeedSlice = ({
isThreadChild={isThreadChildAt(slice.items, 0)}
hideTopBorder={hideTopBorder}
isParentBlocked={slice.items[0].isParentBlocked}
+ isParentNotFound={slice.items[0].isParentNotFound}
+ rootPost={slice.items[0].post}
/>
>
)
@@ -90,7 +96,9 @@ let FeedSlice = ({
isThreadChildAt(slice.items, i) && slice.items.length === i + 1
}
isParentBlocked={slice.items[i].isParentBlocked}
+ isParentNotFound={slice.items[i].isParentNotFound}
hideTopBorder={hideTopBorder && i === 0}
+ rootPost={slice.items[0].post}
/>
))}
>
diff --git a/src/view/com/testing/TestCtrls.e2e.tsx b/src/view/com/testing/TestCtrls.e2e.tsx
index 82750959d6..71c5f1da13 100644
--- a/src/view/com/testing/TestCtrls.e2e.tsx
+++ b/src/view/com/testing/TestCtrls.e2e.tsx
@@ -20,7 +20,7 @@ const BTN = {height: 1, width: 1, backgroundColor: 'red'}
export function TestCtrls() {
const queryClient = useQueryClient()
- const {logout, login} = useSessionApi()
+ const {logoutEveryAccount, login} = useSessionApi()
const {openModal} = useModalControls()
const onboardingDispatch = useOnboardingDispatch()
const {setShowLoggedOut} = useLoggedOutViewControls()
@@ -33,6 +33,7 @@ export function TestCtrls() {
},
'LoginForm',
)
+ setShowLoggedOut(false)
}
const onPressSignInBob = async () => {
await login(
@@ -43,6 +44,7 @@ export function TestCtrls() {
},
'LoginForm',
)
+ setShowLoggedOut(false)
}
return (
@@ -60,7 +62,7 @@ export function TestCtrls() {
/>
logout('Settings')}
+ onPress={() => logoutEveryAccount('Settings')}
accessibilityRole="button"
style={BTN}
/>
diff --git a/src/view/com/util/AccountDropdownBtn.tsx b/src/view/com/util/AccountDropdownBtn.tsx
index 221879df79..fa2553d384 100644
--- a/src/view/com/util/AccountDropdownBtn.tsx
+++ b/src/view/com/util/AccountDropdownBtn.tsx
@@ -4,26 +4,27 @@ import {
FontAwesomeIcon,
FontAwesomeIconStyle,
} from '@fortawesome/react-native-fontawesome'
-import {s} from 'lib/styles'
-import {usePalette} from 'lib/hooks/usePalette'
-import {DropdownItem, NativeDropdown} from './forms/NativeDropdown'
-import * as Toast from '../../com/util/Toast'
-import {useSessionApi, SessionAccount} from '#/state/session'
-import {useLingui} from '@lingui/react'
import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {SessionAccount, useSessionApi} from '#/state/session'
+import {usePalette} from 'lib/hooks/usePalette'
+import {s} from 'lib/styles'
+import {useDialogControl} from '#/components/Dialog'
+import * as Prompt from '#/components/Prompt'
+import * as Toast from '../../com/util/Toast'
+import {DropdownItem, NativeDropdown} from './forms/NativeDropdown'
export function AccountDropdownBtn({account}: {account: SessionAccount}) {
const pal = usePalette('default')
const {removeAccount} = useSessionApi()
+ const removePromptControl = useDialogControl()
const {_} = useLingui()
const items: DropdownItem[] = [
{
label: _(msg`Remove account`),
- onPress: () => {
- removeAccount(account)
- Toast.show(_(msg`Account removed from quick access`))
- },
+ onPress: removePromptControl.open,
icon: {
ios: {
name: 'trash',
@@ -34,17 +35,32 @@ export function AccountDropdownBtn({account}: {account: SessionAccount}) {
},
]
return (
-
-
-
-
-
+ <>
+
+
+
+
+
+ {
+ removeAccount(account)
+ Toast.show(_(msg`Account removed from quick access`))
+ }}
+ confirmButtonCta={_(msg`Remove`)}
+ confirmButtonColor="negative"
+ />
+ >
)
}
diff --git a/src/view/com/util/MainScrollProvider.tsx b/src/view/com/util/MainScrollProvider.tsx
index b602da4323..3163d85445 100644
--- a/src/view/com/util/MainScrollProvider.tsx
+++ b/src/view/com/util/MainScrollProvider.tsx
@@ -4,11 +4,13 @@ import {
cancelAnimation,
interpolate,
useSharedValue,
+ withSpring,
} from 'react-native-reanimated'
import EventEmitter from 'eventemitter3'
import {ScrollProvider} from '#/lib/ScrollContext'
-import {useMinimalShellMode, useSetMinimalShellMode} from '#/state/shell'
+import {useGate} from '#/lib/statsig/statsig'
+import {useMinimalShellMode} from '#/state/shell'
import {useShellLayout} from '#/state/shell/shell-layout'
import {isNative, isWeb} from 'platform/detection'
@@ -21,11 +23,29 @@ function clamp(num: number, min: number, max: number) {
export function MainScrollProvider({children}: {children: React.ReactNode}) {
const {headerHeight} = useShellLayout()
- const mode = useMinimalShellMode()
- const setMode = useSetMinimalShellMode()
+ const {headerMode, footerMode} = useMinimalShellMode()
const startDragOffset = useSharedValue(null)
const startMode = useSharedValue(null)
const didJustRestoreScroll = useSharedValue(false)
+ const gate = useGate()
+ const isFixedBottomBar = gate('fixed_bottom_bar')
+
+ const setMode = React.useCallback(
+ (v: boolean) => {
+ 'worklet'
+ cancelAnimation(headerMode)
+ headerMode.value = withSpring(v ? 1 : 0, {
+ overshootClamping: true,
+ })
+ if (!isFixedBottomBar) {
+ cancelAnimation(footerMode)
+ footerMode.value = withSpring(v ? 1 : 0, {
+ overshootClamping: true,
+ })
+ }
+ },
+ [headerMode, footerMode, isFixedBottomBar],
+ )
useEffect(() => {
if (isWeb) {
@@ -55,11 +75,11 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) {
setMode(true)
} else {
// Snap to whichever state is the closest.
- setMode(Math.round(mode.value) === 1)
+ setMode(Math.round(headerMode.value) === 1)
}
}
},
- [startDragOffset, startMode, setMode, mode, headerHeight],
+ [startDragOffset, startMode, setMode, headerMode, headerHeight],
)
const onBeginDrag = useCallback(
@@ -67,10 +87,10 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) {
'worklet'
if (isNative) {
startDragOffset.value = e.contentOffset.y
- startMode.value = mode.value
+ startMode.value = headerMode.value
}
},
- [mode, startDragOffset, startMode],
+ [headerMode, startDragOffset, startMode],
)
const onEndDrag = useCallback(
@@ -102,7 +122,10 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) {
'worklet'
if (isNative) {
if (startDragOffset.value === null || startMode.value === null) {
- if (mode.value !== 0 && e.contentOffset.y < headerHeight.value) {
+ if (
+ headerMode.value !== 0 &&
+ e.contentOffset.y < headerHeight.value
+ ) {
// If we're close enough to the top, always show the shell.
// Even if we're not dragging.
setMode(false)
@@ -119,11 +142,15 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) {
[-1, 1],
)
const newValue = clamp(startMode.value + dProgress, 0, 1)
- if (newValue !== mode.value) {
+ if (newValue !== headerMode.value) {
// Manually adjust the value. This won't be (and shouldn't be) animated.
// Cancel any any existing animation
- cancelAnimation(mode)
- mode.value = newValue
+ cancelAnimation(headerMode)
+ headerMode.value = newValue
+ if (!isFixedBottomBar) {
+ cancelAnimation(footerMode)
+ footerMode.value = newValue
+ }
}
} else {
if (didJustRestoreScroll.value) {
@@ -145,11 +172,13 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) {
},
[
headerHeight,
- mode,
+ headerMode,
+ footerMode,
setMode,
startDragOffset,
startMode,
didJustRestoreScroll,
+ isFixedBottomBar,
],
)
diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx
index 95168e8b3c..b1567c2c69 100644
--- a/src/view/com/util/PostMeta.tsx
+++ b/src/view/com/util/PostMeta.tsx
@@ -91,11 +91,7 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => {
{!isAndroid && (
-
+
·
)}
@@ -104,7 +100,6 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => {
@@ -83,6 +97,7 @@ let PostDropdownBtn = ({
hitSlop?: PressableProps['hitSlop']
size?: 'lg' | 'md' | 'sm'
timestamp: string
+ threadgateRecord?: AppBskyFeedThreadgate.Record
}): React.ReactNode => {
const {hasSession, currentAccount} = useSession()
const theme = useTheme()
@@ -104,17 +119,44 @@ let PostDropdownBtn = ({
const loggedOutWarningPromptControl = useDialogControl()
const embedPostControl = useDialogControl()
const sendViaChatControl = useDialogControl()
+ const postInteractionSettingsDialogControl = useDialogControl()
+ const quotePostDetachConfirmControl = useDialogControl()
+ const hideReplyConfirmControl = useDialogControl()
+ const {mutateAsync: toggleReplyVisibility} =
+ useToggleReplyVisibilityMutation()
+
const postUri = post.uri
const postCid = post.cid
const postAuthor = post.author
+ const quoteEmbed = React.useMemo(() => {
+ if (!currentAccount || !post.embed) return
+ return getMaybeDetachedQuoteEmbed({
+ viewerDid: currentAccount.did,
+ post,
+ })
+ }, [post, currentAccount])
const rootUri = record.reply?.root?.uri || postUri
+ const isReply = Boolean(record.reply)
const [isThreadMuted, muteThread, unmuteThread] = useThreadMuteMutationQueue(
post,
rootUri,
)
const isPostHidden = hiddenPosts && hiddenPosts.includes(postUri)
const isAuthor = postAuthor.did === currentAccount?.did
+ const isRootPostAuthor = new AtUri(rootUri).host === currentAccount?.did
+ const threadgateHiddenReplies = useMergedThreadgateHiddenReplies({
+ threadgateRecord,
+ })
+ const isReplyHiddenByThreadgate = threadgateHiddenReplies.has(postUri)
+
+ const {mutateAsync: toggleQuoteDetachment, isPending} =
+ useToggleQuoteDetachmentMutation()
+
+ const prefetchPostInteractionSettings = usePrefetchPostInteractionSettings({
+ postUri: post.uri,
+ rootPostUri: rootUri,
+ })
const href = React.useMemo(() => {
const urip = new AtUri(postUri)
@@ -242,7 +284,65 @@ let PostDropdownBtn = ({
[navigation, postUri],
)
+ const onToggleQuotePostAttachment = React.useCallback(async () => {
+ if (!quoteEmbed) return
+
+ const action = quoteEmbed.isDetached ? 'reattach' : 'detach'
+ const isDetach = action === 'detach'
+
+ try {
+ await toggleQuoteDetachment({
+ post,
+ quoteUri: quoteEmbed.uri,
+ action: quoteEmbed.isDetached ? 'reattach' : 'detach',
+ })
+ Toast.show(
+ isDetach
+ ? _(msg`Quote post was successfully detached`)
+ : _(msg`Quote post was re-attached`),
+ )
+ } catch (e: any) {
+ Toast.show(_(msg`Updating quote attachment failed`))
+ logger.error(`Failed to ${action} quote`, {safeMessage: e.message})
+ }
+ }, [_, quoteEmbed, post, toggleQuoteDetachment])
+
+ const canHidePostForMe = !isAuthor && !isPostHidden
const canEmbed = isWeb && gtMobile && !hideInPWI
+ const canHideReplyForEveryone =
+ !isAuthor && isRootPostAuthor && !isPostHidden && isReply
+ const canDetachQuote = quoteEmbed && quoteEmbed.isOwnedByViewer
+
+ const onToggleReplyVisibility = React.useCallback(async () => {
+ // TODO no threadgate?
+ if (!canHideReplyForEveryone) return
+
+ const action = isReplyHiddenByThreadgate ? 'show' : 'hide'
+ const isHide = action === 'hide'
+
+ try {
+ await toggleReplyVisibility({
+ postUri: rootUri,
+ replyUri: postUri,
+ action,
+ })
+ Toast.show(
+ isHide
+ ? _(msg`Reply was successfully hidden`)
+ : _(msg`Reply visibility updated`),
+ )
+ } catch (e: any) {
+ Toast.show(_(msg`Updating reply visibility failed`))
+ logger.error(`Failed to ${action} reply`, {safeMessage: e.message})
+ }
+ }, [
+ _,
+ isReplyHiddenByThreadgate,
+ rootUri,
+ postUri,
+ canHideReplyForEveryone,
+ toggleReplyVisibility,
+ ])
return (
@@ -383,20 +483,92 @@ let PostDropdownBtn = ({
{_(msg`Mute words & tags`)}
-
- {!isAuthor && !isPostHidden && (
-
- {_(msg`Hide post`)}
-
-
- )}
>
)}
+ {hasSession &&
+ (canHideReplyForEveryone || canDetachQuote || canHidePostForMe) && (
+ <>
+
+
+ {canHidePostForMe && (
+
+
+ {isReply
+ ? _(msg`Hide reply for me`)
+ : _(msg`Hide post for me`)}
+
+
+
+ )}
+ {canHideReplyForEveryone && (
+ hideReplyConfirmControl.open()
+ }>
+
+ {isReplyHiddenByThreadgate
+ ? _(msg`Show reply for everyone`)
+ : _(msg`Hide reply for everyone`)}
+
+
+
+ )}
+
+ {canDetachQuote && (
+ quotePostDetachConfirmControl.open()
+ }>
+
+ {quoteEmbed.isDetached
+ ? _(msg`Re-attach quote`)
+ : _(msg`Detach quote`)}
+
+
+
+ )}
+
+ >
+ )}
+
{hasSession && (
<>
@@ -412,13 +584,34 @@ let PostDropdownBtn = ({
)}
{isAuthor && (
-
- {_(msg`Delete post`)}
-
-
+ <>
+
+
+ {_(msg`Edit interaction settings`)}
+
+
+
+
+ {_(msg`Delete post`)}
+
+
+ >
)}
>
@@ -439,8 +632,10 @@ let PostDropdownBtn = ({
@@ -479,6 +674,33 @@ let PostDropdownBtn = ({
control={sendViaChatControl}
onSelectChat={onSelectChatToShareTo}
/>
+
+
+
+
+
+
)
}
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx
index 478b8f0f89..a0cef8692d 100644
--- a/src/view/com/util/post-ctrls/PostCtrls.tsx
+++ b/src/view/com/util/post-ctrls/PostCtrls.tsx
@@ -10,6 +10,7 @@ import * as Clipboard from 'expo-clipboard'
import {
AppBskyFeedDefs,
AppBskyFeedPost,
+ AppBskyFeedThreadgate,
AtUri,
RichText as RichTextAPI,
} from '@atproto/api'
@@ -58,7 +59,9 @@ let PostCtrls = ({
feedContext,
style,
onPressReply,
+ onPostReply,
logContext,
+ threadgateRecord,
}: {
big?: boolean
post: Shadow
@@ -67,7 +70,9 @@ let PostCtrls = ({
feedContext?: string | undefined
style?: StyleProp
onPressReply: () => void
+ onPostReply?: (postUri: string | undefined) => void
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
+ threadgateRecord?: AppBskyFeedThreadgate.Record
}): React.ReactNode => {
const t = useTheme()
const {_} = useLingui()
@@ -169,16 +174,20 @@ let PostCtrls = ({
author: post.author,
indexedAt: post.indexedAt,
},
+ quoteCount: post.quoteCount,
+ onPost: onPostReply,
})
}, [
- openComposer,
+ sendInteraction,
post.uri,
post.cid,
post.author,
post.indexedAt,
- record.text,
- sendInteraction,
+ post.quoteCount,
feedContext,
+ openComposer,
+ record.text,
+ onPostReply,
])
const onShare = useCallback(() => {
@@ -246,10 +255,11 @@ let PostCtrls = ({
@@ -338,6 +348,7 @@ let PostCtrls = ({
style={{padding: 5}}
hitSlop={POST_CTRL_HITSLOP}
timestamp={post.indexedAt}
+ threadgateRecord={threadgateRecord}
/>
{gate('debug_show_feedcontext') && feedContext && (
diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx
index d49cda442c..5994b7ef61 100644
--- a/src/view/com/util/post-ctrls/RepostButton.tsx
+++ b/src/view/com/util/post-ctrls/RepostButton.tsx
@@ -20,6 +20,7 @@ interface Props {
onRepost: () => void
onQuote: () => void
big?: boolean
+ embeddingDisabled: boolean
}
let RepostButton = ({
@@ -28,6 +29,7 @@ let RepostButton = ({
onRepost,
onQuote,
big,
+ embeddingDisabled,
}: Props): React.ReactNode => {
const t = useTheme()
const {_} = useLingui()
@@ -111,9 +113,14 @@ let RepostButton = ({
diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx
index 17ab736ced..9a8776b9c9 100644
--- a/src/view/com/util/post-ctrls/RepostButton.web.tsx
+++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx
@@ -20,6 +20,7 @@ interface Props {
onRepost: () => void
onQuote: () => void
big?: boolean
+ embeddingDisabled: boolean
}
export const RepostButton = ({
@@ -28,6 +29,7 @@ export const RepostButton = ({
onRepost,
onQuote,
big,
+ embeddingDisabled,
}: Props) => {
const t = useTheme()
const {_} = useLingui()
@@ -76,10 +78,19 @@ export const RepostButton = ({
- {_(msg`Quote post`)}
+
+ {embeddingDisabled
+ ? _(msg`Quote posts disabled`)
+ : _(msg`Quote post`)}
+
diff --git a/src/view/com/util/post-embeds/ListEmbed.tsx b/src/view/com/util/post-embeds/ListEmbed.tsx
deleted file mode 100644
index fc5ad270fc..0000000000
--- a/src/view/com/util/post-embeds/ListEmbed.tsx
+++ /dev/null
@@ -1,32 +0,0 @@
-import React from 'react'
-import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native'
-import {usePalette} from 'lib/hooks/usePalette'
-import {ListCard} from 'view/com/lists/ListCard'
-import {AppBskyGraphDefs} from '@atproto/api'
-import {s} from 'lib/styles'
-
-export function ListEmbed({
- item,
- style,
-}: {
- item: AppBskyGraphDefs.ListView
- style?: StyleProp
-}) {
- const pal = usePalette('default')
-
- return (
-
-
-
- )
-}
-
-const styles = StyleSheet.create({
- container: {
- borderRadius: 8,
- },
- card: {
- borderTopWidth: 0,
- borderRadius: 8,
- },
-})
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx
index 20c05b692b..ca9dc1c0dd 100644
--- a/src/view/com/util/post-embeds/QuoteEmbed.tsx
+++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx
@@ -13,7 +13,6 @@ import {
AppBskyEmbedRecordWithMedia,
AppBskyFeedDefs,
AppBskyFeedPost,
- moderatePost,
ModerationDecision,
RichText as RichTextAPI,
} from '@atproto/api'
@@ -24,8 +23,10 @@ import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'
import {HITSLOP_20} from '#/lib/constants'
+import {moderatePost_wrapped} from '#/lib/moderatePost_wrapped'
import {s} from '#/lib/styles'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
+import {useSession} from '#/state/session'
import {usePalette} from 'lib/hooks/usePalette'
import {InfoCircleIcon} from 'lib/icons'
import {makeProfileLink} from 'lib/routes/links'
@@ -52,6 +53,7 @@ export function MaybeQuoteEmbed({
allowNestedQuotes?: boolean
}) {
const pal = usePalette('default')
+ const {currentAccount} = useSession()
if (
AppBskyEmbedRecord.isViewRecord(embed.record) &&
AppBskyFeedPost.isRecord(embed.record.value) &&
@@ -84,6 +86,22 @@ export function MaybeQuoteEmbed({
)
+ } else if (AppBskyEmbedRecord.isViewDetached(embed.record)) {
+ const isViewerOwner = currentAccount?.did
+ ? embed.record.uri.includes(currentAccount.did)
+ : false
+ return (
+
+
+
+ {isViewerOwner ? (
+ Removed by you
+ ) : (
+ Removed by author
+ )}
+
+
+ )
}
return null
}
@@ -104,7 +122,7 @@ function QuoteEmbedModerated({
const moderationOpts = useModerationOpts()
const moderation = React.useMemo(() => {
return moderationOpts
- ? moderatePost(viewRecordToPostView(viewRecord), moderationOpts)
+ ? moderatePost_wrapped(viewRecordToPostView(viewRecord), moderationOpts)
: undefined
}, [viewRecord, moderationOpts])
diff --git a/src/view/com/util/post-embeds/VideoEmbed.tsx b/src/view/com/util/post-embeds/VideoEmbed.tsx
index 887efac1ab..4e2909f40b 100644
--- a/src/view/com/util/post-embeds/VideoEmbed.tsx
+++ b/src/view/com/util/post-embeds/VideoEmbed.tsx
@@ -1,6 +1,6 @@
-import React from 'react'
+import React, {useCallback, useState} from 'react'
import {View} from 'react-native'
-import {msg} from '@lingui/macro'
+import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {VideoEmbedInnerNative} from 'view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative'
@@ -8,13 +8,23 @@ import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import {Play_Filled_Corner2_Rounded as PlayIcon} from '#/components/icons/Play'
import {VisibilityView} from '../../../../../modules/expo-bluesky-swiss-army'
+import {ErrorBoundary} from '../ErrorBoundary'
import {useActiveVideoView} from './ActiveVideoContext'
+import * as VideoFallback from './VideoEmbedInner/VideoFallback'
export function VideoEmbed({source}: {source: string}) {
const t = useTheme()
const {active, setActive} = useActiveVideoView({source})
const {_} = useLingui()
+ const [key, setKey] = useState(0)
+ const renderError = useCallback(
+ (error: unknown) => (
+ setKey(key + 1)} />
+ ),
+ [key],
+ )
+
return (
- {
- if (isActive) {
- setActive()
- }
- }}>
- {active ? (
-
- ) : (
-
- )}
-
+
+ {
+ if (isActive) {
+ setActive()
+ }
+ }}>
+ {active ? (
+
+ ) : (
+
+ )}
+
+
)
}
+
+function VideoError({retry}: {error: unknown; retry: () => void}) {
+ return (
+
+
+
+ An error occurred while loading the video. Please try again later.
+
+
+
+
+ )
+}
diff --git a/src/view/com/util/post-embeds/VideoEmbed.web.tsx b/src/view/com/util/post-embeds/VideoEmbed.web.tsx
index 70d887283e..5803b836df 100644
--- a/src/view/com/util/post-embeds/VideoEmbed.web.tsx
+++ b/src/view/com/util/post-embeds/VideoEmbed.web.tsx
@@ -1,17 +1,15 @@
import React, {useCallback, useEffect, useRef, useState} from 'react'
import {View} from 'react-native'
-import {msg, Trans} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
+import {Trans} from '@lingui/macro'
import {
HLSUnsupportedError,
VideoEmbedInnerWeb,
} from 'view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerWeb'
import {atoms as a, useTheme} from '#/alf'
-import {Button, ButtonText} from '#/components/Button'
-import {Text} from '#/components/Typography'
import {ErrorBoundary} from '../ErrorBoundary'
import {useActiveVideoView} from './ActiveVideoContext'
+import * as VideoFallback from './VideoEmbedInner/VideoFallback'
export function VideoEmbed({source}: {source: string}) {
const t = useTheme()
@@ -138,32 +136,11 @@ function ViewportObserver({
}
function VideoError({error, retry}: {error: unknown; retry: () => void}) {
- const t = useTheme()
- const {_} = useLingui()
-
const isHLS = error instanceof HLSUnsupportedError
return (
-
-
+
+
{isHLS ? (
Your browser does not support the video format. Please try a
@@ -174,19 +151,8 @@ function VideoError({error, retry}: {error: unknown; retry: () => void}) {
An error occurred while loading the video. Please try again later.
)}
-
- {!isHLS && (
-
- )}
-
+
+ {!isHLS && }
+
)
}
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx
index cc356fb069..fa49438763 100644
--- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx
+++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.tsx
@@ -1,27 +1,72 @@
-import React, {useEffect, useRef, useState} from 'react'
+import React, {useCallback, useEffect, useRef, useState} from 'react'
import {Pressable, View} from 'react-native'
+import Animated, {FadeInDown, FadeOutDown} from 'react-native-reanimated'
import {VideoPlayer, VideoView} from 'expo-video'
+import {msg} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+import {useIsFocused} from '@react-navigation/native'
-import {useVideoPlayer} from 'view/com/util/post-embeds/VideoPlayerContext'
-import {android, atoms as a} from '#/alf'
+import {HITSLOP_30} from '#/lib/constants'
+import {useAppState} from '#/lib/hooks/useAppState'
+import {logger} from '#/logger'
+import {useVideoPlayer} from '#/view/com/util/post-embeds/VideoPlayerContext'
+import {android, atoms as a, useTheme} from '#/alf'
+import {Mute_Stroke2_Corner0_Rounded as MuteIcon} from '#/components/icons/Mute'
+import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as UnmuteIcon} from '#/components/icons/Speaker'
import {Text} from '#/components/Typography'
+import {
+ AudioCategory,
+ PlatformInfo,
+} from '../../../../../../modules/expo-bluesky-swiss-army'
export function VideoEmbedInnerNative() {
const player = useVideoPlayer()
const ref = useRef(null)
+ const isScreenFocused = useIsFocused()
+ const isAppFocused = useAppState()
+
+ useEffect(() => {
+ try {
+ if (isAppFocused === 'active' && isScreenFocused && !player.playing) {
+ PlatformInfo.setAudioCategory(AudioCategory.Ambient)
+ PlatformInfo.setAudioActive(false)
+ player.muted = true
+ player.play()
+ } else if (player.playing) {
+ player.pause()
+ }
+ } catch (err) {
+ logger.error(
+ 'Failed to play/pause while backgrounding/switching screens',
+ {safeMessage: err},
+ )
+ }
+ }, [isAppFocused, player, isScreenFocused])
+
+ const enterFullscreen = useCallback(() => {
+ ref.current?.enterFullscreen()
+ }, [])
return (
-
+
{
+ PlatformInfo.setAudioCategory(AudioCategory.Playback)
+ PlatformInfo.setAudioActive(true)
+ player.muted = false
+ }}
+ onExitFullscreen={() => {
+ PlatformInfo.setAudioCategory(AudioCategory.Ambient)
+ PlatformInfo.setAudioActive(false)
+ player.muted = true
+ if (!player.playing) player.play()
+ }}
/>
- ref.current?.enterFullscreen()}
- />
+
)
}
@@ -33,6 +78,9 @@ function Controls({
player: VideoPlayer
enterFullscreen: () => void
}) {
+ const {_} = useLingui()
+ const t = useTheme()
+ const [isMuted, setIsMuted] = useState(player.muted)
const [duration, setDuration] = useState(() => Math.floor(player.duration))
const [currentTime, setCurrentTime] = useState(() =>
Math.floor(player.currentTime),
@@ -47,50 +95,121 @@ function Controls({
// duration gets reset to 0 on loop
if (player.duration) setDuration(Math.floor(player.duration))
setCurrentTime(Math.floor(player.currentTime))
+
// how often should we update the time?
// 1000 gets out of sync with the video time
}, 250)
+ // eslint-disable-next-line @typescript-eslint/no-shadow
+ const sub = player.addListener('volumeChange', ({isMuted}) => {
+ setIsMuted(isMuted)
+ })
+
return () => {
clearInterval(interval)
+ sub.remove()
}
}, [player])
- if (isNaN(timeRemaining)) {
- return null
- }
+ const onPressFullscreen = useCallback(() => {
+ switch (player.status) {
+ case 'idle':
+ case 'loading':
+ case 'readyToPlay': {
+ if (!player.playing) player.play()
+ enterFullscreen()
+ break
+ }
+ case 'error': {
+ player.replay()
+ break
+ }
+ }
+ }, [player, enterFullscreen])
+
+ const toggleMuted = useCallback(() => {
+ const muted = !player.muted
+ // We want to set this to the _inverse_ of the new value, because we actually want for the audio to be mixed when
+ // the video is muted, and vice versa.
+ const mix = !muted
+ const category = muted ? AudioCategory.Ambient : AudioCategory.Playback
+
+ PlatformInfo.setAudioCategory(category)
+ PlatformInfo.setAudioActive(mix)
+ player.muted = muted
+ }, [player])
+
+ // show countdown when:
+ // 1. timeRemaining is a number - was seeing NaNs
+ // 2. duration is greater than 0 - means metadata has loaded
+ // 3. we're less than 5 second into the video
+ const showTime = !isNaN(timeRemaining) && duration > 0 && currentTime <= 5
return (
-
+
+ {minutes}:{seconds}
+
+
+ )}
+
+ {duration > 0 && (
+
-
- {minutes}:{seconds}
-
-
-
+ right: 5,
+ minHeight: 20,
+ justifyContent: 'center',
+ }}>
+
+ {isMuted ? (
+
+ ) : (
+
+ )}
+
+
+ )}
)
}
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.web.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.web.tsx
index 59da5be42a..2760c7fafd 100644
--- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.web.tsx
+++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoEmbedInnerNative.web.tsx
@@ -1,3 +1,3 @@
export function VideoEmbedInnerNative() {
- throw new Error('VideoEmbedInnerNative may not be used on native.')
+ throw new Error('VideoEmbedInnerNative may not be used on web.')
}
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx
new file mode 100644
index 0000000000..1b46163cce
--- /dev/null
+++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoFallback.tsx
@@ -0,0 +1,61 @@
+import React from 'react'
+import {View} from 'react-native'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
+
+import {atoms as a, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import {Text as TypoText} from '#/components/Typography'
+
+export function Container({children}: {children: React.ReactNode}) {
+ const t = useTheme()
+ return (
+
+ {children}
+
+ )
+}
+
+export function Text({children}: {children: React.ReactNode}) {
+ const t = useTheme()
+ return (
+
+ {children}
+
+ )
+}
+
+export function RetryButton({onPress}: {onPress: () => void}) {
+ const {_} = useLingui()
+
+ return (
+
+ )
+}
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.native.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.native.tsx
new file mode 100644
index 0000000000..e2e24ed367
--- /dev/null
+++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.native.tsx
@@ -0,0 +1,3 @@
+export function Controls() {
+ throw new Error('VideoWebControls may not be used on native.')
+}
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx
index 11e0867e43..7caaf3abf7 100644
--- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx
+++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx
@@ -1,7 +1,51 @@
-import React from 'react'
+import React, {
+ useCallback,
+ useEffect,
+ useRef,
+ useState,
+ useSyncExternalStore,
+} from 'react'
+import {Pressable, View} from 'react-native'
+import Animated, {FadeIn, FadeOut} from 'react-native-reanimated'
+import {msg, Trans} from '@lingui/macro'
+import {useLingui} from '@lingui/react'
import type Hls from 'hls.js'
-export function Controls({}: {
+import {isIPhoneWeb} from 'platform/detection'
+import {
+ useAutoplayDisabled,
+ useSetSubtitlesEnabled,
+ useSubtitlesEnabled,
+} from 'state/preferences'
+import {atoms as a, useTheme, web} from '#/alf'
+import {Button} from '#/components/Button'
+import {useInteractionState} from '#/components/hooks/useInteractionState'
+import {
+ ArrowsDiagonalIn_Stroke2_Corner0_Rounded as ArrowsInIcon,
+ ArrowsDiagonalOut_Stroke2_Corner0_Rounded as ArrowsOutIcon,
+} from '#/components/icons/ArrowsDiagonal'
+import {
+ CC_Filled_Corner0_Rounded as CCActiveIcon,
+ CC_Stroke2_Corner0_Rounded as CCInactiveIcon,
+} from '#/components/icons/CC'
+import {Mute_Stroke2_Corner0_Rounded as MuteIcon} from '#/components/icons/Mute'
+import {Pause_Filled_Corner0_Rounded as PauseIcon} from '#/components/icons/Pause'
+import {Play_Filled_Corner0_Rounded as PlayIcon} from '#/components/icons/Play'
+import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as UnmuteIcon} from '#/components/icons/Speaker'
+import {Loader} from '#/components/Loader'
+import {Text} from '#/components/Typography'
+
+export function Controls({
+ videoRef,
+ hlsRef,
+ active,
+ setActive,
+ focused,
+ setFocused,
+ onScreen,
+ fullscreenRef,
+ hasSubtitleTrack,
+}: {
videoRef: React.RefObject
hlsRef: React.RefObject
active: boolean
@@ -11,6 +55,533 @@ export function Controls({}: {
onScreen: boolean
fullscreenRef: React.RefObject
hasSubtitleTrack: boolean
-}): React.ReactElement {
- throw new Error('Web-only component')
+}) {
+ const {
+ play,
+ pause,
+ playing,
+ muted,
+ toggleMute,
+ togglePlayPause,
+ currentTime,
+ duration,
+ buffering,
+ error,
+ canPlay,
+ } = useVideoUtils(videoRef)
+ const t = useTheme()
+ const {_} = useLingui()
+ const subtitlesEnabled = useSubtitlesEnabled()
+ const setSubtitlesEnabled = useSetSubtitlesEnabled()
+ const {
+ state: hovered,
+ onIn: onMouseEnter,
+ onOut: onMouseLeave,
+ } = useInteractionState()
+ const [isFullscreen, toggleFullscreen] = useFullscreen(fullscreenRef)
+ const {state: hasFocus, onIn: onFocus, onOut: onBlur} = useInteractionState()
+ const [interactingViaKeypress, setInteractingViaKeypress] = useState(false)
+
+ const onKeyDown = useCallback(() => {
+ setInteractingViaKeypress(true)
+ }, [])
+
+ useEffect(() => {
+ if (interactingViaKeypress) {
+ document.addEventListener('click', () => setInteractingViaKeypress(false))
+ return () => {
+ document.removeEventListener('click', () =>
+ setInteractingViaKeypress(false),
+ )
+ }
+ }
+ }, [interactingViaKeypress])
+
+ // pause + unfocus when another video is active
+ useEffect(() => {
+ if (!active) {
+ pause()
+ setFocused(false)
+ }
+ }, [active, pause, setFocused])
+
+ // autoplay/pause based on visibility
+ const autoplayDisabled = useAutoplayDisabled()
+ useEffect(() => {
+ if (active && !autoplayDisabled) {
+ if (onScreen) {
+ play()
+ } else {
+ pause()
+ }
+ }
+ }, [onScreen, pause, active, play, autoplayDisabled])
+
+ // use minimal quality when not focused
+ useEffect(() => {
+ if (!hlsRef.current) return
+ if (focused) {
+ // auto decide quality based on network conditions
+ hlsRef.current.autoLevelCapping = -1
+ } else {
+ hlsRef.current.autoLevelCapping = 0
+ }
+ }, [hlsRef, focused])
+
+ useEffect(() => {
+ if (!hlsRef.current) return
+ if (hasSubtitleTrack && subtitlesEnabled && canPlay) {
+ hlsRef.current.subtitleTrack = 0
+ } else {
+ hlsRef.current.subtitleTrack = -1
+ }
+ }, [hasSubtitleTrack, subtitlesEnabled, hlsRef, canPlay])
+
+ // clicking on any button should focus the player, if it's not already focused
+ const drawFocus = useCallback(() => {
+ if (!active) {
+ setActive()
+ }
+ setFocused(true)
+ }, [active, setActive, setFocused])
+
+ const onPressEmptySpace = useCallback(() => {
+ if (!focused) {
+ drawFocus()
+ } else {
+ togglePlayPause()
+ }
+ }, [togglePlayPause, drawFocus, focused])
+
+ const onPressPlayPause = useCallback(() => {
+ drawFocus()
+ togglePlayPause()
+ }, [drawFocus, togglePlayPause])
+
+ const onPressSubtitles = useCallback(() => {
+ drawFocus()
+ setSubtitlesEnabled(!subtitlesEnabled)
+ }, [drawFocus, setSubtitlesEnabled, subtitlesEnabled])
+
+ const onPressMute = useCallback(() => {
+ drawFocus()
+ toggleMute()
+ }, [drawFocus, toggleMute])
+
+ const onPressFullscreen = useCallback(() => {
+ drawFocus()
+ toggleFullscreen()
+ }, [drawFocus, toggleFullscreen])
+
+ const showControls =
+ (focused && !playing) || (interactingViaKeypress ? hasFocus : hovered)
+
+ return (
+ {
+ evt.stopPropagation()
+ setInteractingViaKeypress(false)
+ }}
+ onMouseEnter={onMouseEnter}
+ onMouseLeave={onMouseLeave}
+ onFocus={onFocus}
+ onBlur={onBlur}
+ onKeyDown={onKeyDown}>
+
+
+
+
+
+ {formatTime(currentTime)} / {formatTime(duration)}
+
+ {hasSubtitleTrack && (
+
+ )}
+
+ {!isIPhoneWeb && (
+
+ )}
+
+ {(showControls || !focused) && (
+
+ {duration > 0 && (
+
+ )}
+
+ )}
+ {(buffering || error) && (
+
+ {buffering && }
+ {error && (
+
+ An error occurred
+
+ )}
+
+ )}
+
+ )
+}
+
+const btnProps = {
+ variant: 'ghost',
+ shape: 'round',
+ size: 'medium',
+ style: a.p_2xs,
+ hoverStyle: {backgroundColor: 'rgba(255, 255, 255, 0.1)'},
+} as const
+
+function formatTime(time: number) {
+ if (isNaN(time)) {
+ return '--'
+ }
+
+ time = Math.round(time)
+
+ const minutes = Math.floor(time / 60)
+ const seconds = String(time % 60).padStart(2, '0')
+
+ return `${minutes}:${seconds}`
+}
+
+function useVideoUtils(ref: React.RefObject) {
+ const [playing, setPlaying] = useState(false)
+ const [muted, setMuted] = useState(true)
+ const [currentTime, setCurrentTime] = useState(0)
+ const [duration, setDuration] = useState(0)
+ const [buffering, setBuffering] = useState(false)
+ const [error, setError] = useState(false)
+ const [canPlay, setCanPlay] = useState(false)
+ const playWhenReadyRef = useRef(false)
+
+ useEffect(() => {
+ if (!ref.current) return
+
+ let bufferingTimeout: ReturnType | undefined
+
+ function round(num: number) {
+ return Math.round(num * 100) / 100
+ }
+
+ // Initial values
+ setCurrentTime(round(ref.current.currentTime) || 0)
+ setDuration(round(ref.current.duration) || 0)
+ setMuted(ref.current.muted)
+ setPlaying(!ref.current.paused)
+
+ const handleTimeUpdate = () => {
+ if (!ref.current) return
+ setCurrentTime(round(ref.current.currentTime) || 0)
+ }
+
+ const handleDurationChange = () => {
+ if (!ref.current) return
+ setDuration(round(ref.current.duration) || 0)
+ }
+
+ const handlePlay = () => {
+ setPlaying(true)
+ }
+
+ const handlePause = () => {
+ setPlaying(false)
+ }
+
+ const handleVolumeChange = () => {
+ if (!ref.current) return
+ setMuted(ref.current.muted)
+ }
+
+ const handleError = () => {
+ setError(true)
+ }
+
+ const handleCanPlay = () => {
+ setBuffering(false)
+ setCanPlay(true)
+
+ if (!ref.current) return
+ if (playWhenReadyRef.current) {
+ ref.current.play()
+ playWhenReadyRef.current = false
+ }
+ }
+
+ const handleCanPlayThrough = () => {
+ setBuffering(false)
+ }
+
+ const handleWaiting = () => {
+ if (bufferingTimeout) clearTimeout(bufferingTimeout)
+ bufferingTimeout = setTimeout(() => {
+ setBuffering(true)
+ }, 200) // Delay to avoid frequent buffering state changes
+ }
+
+ const handlePlaying = () => {
+ if (bufferingTimeout) clearTimeout(bufferingTimeout)
+ setBuffering(false)
+ setError(false)
+ }
+
+ const handleSeeking = () => {
+ setBuffering(true)
+ }
+
+ const handleSeeked = () => {
+ setBuffering(false)
+ }
+
+ const handleStalled = () => {
+ if (bufferingTimeout) clearTimeout(bufferingTimeout)
+ bufferingTimeout = setTimeout(() => {
+ setBuffering(true)
+ }, 200) // Delay to avoid frequent buffering state changes
+ }
+
+ const handleEnded = () => {
+ setPlaying(false)
+ setBuffering(false)
+ setError(false)
+ }
+
+ const abortController = new AbortController()
+
+ ref.current.addEventListener('timeupdate', handleTimeUpdate, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('durationchange', handleDurationChange, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('play', handlePlay, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('pause', handlePause, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('volumechange', handleVolumeChange, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('error', handleError, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('canplay', handleCanPlay, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('canplaythrough', handleCanPlayThrough, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('waiting', handleWaiting, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('playing', handlePlaying, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('seeking', handleSeeking, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('seeked', handleSeeked, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('stalled', handleStalled, {
+ signal: abortController.signal,
+ })
+ ref.current.addEventListener('ended', handleEnded, {
+ signal: abortController.signal,
+ })
+
+ return () => {
+ abortController.abort()
+ clearTimeout(bufferingTimeout)
+ }
+ }, [ref])
+
+ const play = useCallback(() => {
+ if (!ref.current) return
+
+ if (ref.current.ended) {
+ ref.current.currentTime = 0
+ }
+
+ if (ref.current.readyState < HTMLMediaElement.HAVE_FUTURE_DATA) {
+ playWhenReadyRef.current = true
+ } else {
+ const promise = ref.current.play()
+ if (promise !== undefined) {
+ promise.catch(err => {
+ console.error('Error playing video:', err)
+ })
+ }
+ }
+ }, [ref])
+
+ const pause = useCallback(() => {
+ if (!ref.current) return
+
+ ref.current.pause()
+ playWhenReadyRef.current = false
+ }, [ref])
+
+ const togglePlayPause = useCallback(() => {
+ if (!ref.current) return
+
+ if (ref.current.paused) {
+ play()
+ } else {
+ pause()
+ }
+ }, [ref, play, pause])
+
+ const mute = useCallback(() => {
+ if (!ref.current) return
+
+ ref.current.muted = true
+ }, [ref])
+
+ const unmute = useCallback(() => {
+ if (!ref.current) return
+
+ ref.current.muted = false
+ }, [ref])
+
+ const toggleMute = useCallback(() => {
+ if (!ref.current) return
+
+ ref.current.muted = !ref.current.muted
+ }, [ref])
+
+ return {
+ play,
+ pause,
+ togglePlayPause,
+ duration,
+ currentTime,
+ playing,
+ muted,
+ mute,
+ unmute,
+ toggleMute,
+ buffering,
+ error,
+ canPlay,
+ }
+}
+
+function fullscreenSubscribe(onChange: () => void) {
+ document.addEventListener('fullscreenchange', onChange)
+ return () => document.removeEventListener('fullscreenchange', onChange)
+}
+
+function useFullscreen(ref: React.RefObject) {
+ const isFullscreen = useSyncExternalStore(fullscreenSubscribe, () =>
+ Boolean(document.fullscreenElement),
+ )
+
+ const toggleFullscreen = useCallback(() => {
+ if (isFullscreen) {
+ document.exitFullscreen()
+ } else {
+ if (!ref.current) return
+ ref.current.requestFullscreen()
+ }
+ }, [isFullscreen, ref])
+
+ return [isFullscreen, toggleFullscreen] as const
}
diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.web.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.web.tsx
deleted file mode 100644
index 7caaf3abf7..0000000000
--- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.web.tsx
+++ /dev/null
@@ -1,587 +0,0 @@
-import React, {
- useCallback,
- useEffect,
- useRef,
- useState,
- useSyncExternalStore,
-} from 'react'
-import {Pressable, View} from 'react-native'
-import Animated, {FadeIn, FadeOut} from 'react-native-reanimated'
-import {msg, Trans} from '@lingui/macro'
-import {useLingui} from '@lingui/react'
-import type Hls from 'hls.js'
-
-import {isIPhoneWeb} from 'platform/detection'
-import {
- useAutoplayDisabled,
- useSetSubtitlesEnabled,
- useSubtitlesEnabled,
-} from 'state/preferences'
-import {atoms as a, useTheme, web} from '#/alf'
-import {Button} from '#/components/Button'
-import {useInteractionState} from '#/components/hooks/useInteractionState'
-import {
- ArrowsDiagonalIn_Stroke2_Corner0_Rounded as ArrowsInIcon,
- ArrowsDiagonalOut_Stroke2_Corner0_Rounded as ArrowsOutIcon,
-} from '#/components/icons/ArrowsDiagonal'
-import {
- CC_Filled_Corner0_Rounded as CCActiveIcon,
- CC_Stroke2_Corner0_Rounded as CCInactiveIcon,
-} from '#/components/icons/CC'
-import {Mute_Stroke2_Corner0_Rounded as MuteIcon} from '#/components/icons/Mute'
-import {Pause_Filled_Corner0_Rounded as PauseIcon} from '#/components/icons/Pause'
-import {Play_Filled_Corner0_Rounded as PlayIcon} from '#/components/icons/Play'
-import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as UnmuteIcon} from '#/components/icons/Speaker'
-import {Loader} from '#/components/Loader'
-import {Text} from '#/components/Typography'
-
-export function Controls({
- videoRef,
- hlsRef,
- active,
- setActive,
- focused,
- setFocused,
- onScreen,
- fullscreenRef,
- hasSubtitleTrack,
-}: {
- videoRef: React.RefObject
- hlsRef: React.RefObject
- active: boolean
- setActive: () => void
- focused: boolean
- setFocused: (focused: boolean) => void
- onScreen: boolean
- fullscreenRef: React.RefObject
- hasSubtitleTrack: boolean
-}) {
- const {
- play,
- pause,
- playing,
- muted,
- toggleMute,
- togglePlayPause,
- currentTime,
- duration,
- buffering,
- error,
- canPlay,
- } = useVideoUtils(videoRef)
- const t = useTheme()
- const {_} = useLingui()
- const subtitlesEnabled = useSubtitlesEnabled()
- const setSubtitlesEnabled = useSetSubtitlesEnabled()
- const {
- state: hovered,
- onIn: onMouseEnter,
- onOut: onMouseLeave,
- } = useInteractionState()
- const [isFullscreen, toggleFullscreen] = useFullscreen(fullscreenRef)
- const {state: hasFocus, onIn: onFocus, onOut: onBlur} = useInteractionState()
- const [interactingViaKeypress, setInteractingViaKeypress] = useState(false)
-
- const onKeyDown = useCallback(() => {
- setInteractingViaKeypress(true)
- }, [])
-
- useEffect(() => {
- if (interactingViaKeypress) {
- document.addEventListener('click', () => setInteractingViaKeypress(false))
- return () => {
- document.removeEventListener('click', () =>
- setInteractingViaKeypress(false),
- )
- }
- }
- }, [interactingViaKeypress])
-
- // pause + unfocus when another video is active
- useEffect(() => {
- if (!active) {
- pause()
- setFocused(false)
- }
- }, [active, pause, setFocused])
-
- // autoplay/pause based on visibility
- const autoplayDisabled = useAutoplayDisabled()
- useEffect(() => {
- if (active && !autoplayDisabled) {
- if (onScreen) {
- play()
- } else {
- pause()
- }
- }
- }, [onScreen, pause, active, play, autoplayDisabled])
-
- // use minimal quality when not focused
- useEffect(() => {
- if (!hlsRef.current) return
- if (focused) {
- // auto decide quality based on network conditions
- hlsRef.current.autoLevelCapping = -1
- } else {
- hlsRef.current.autoLevelCapping = 0
- }
- }, [hlsRef, focused])
-
- useEffect(() => {
- if (!hlsRef.current) return
- if (hasSubtitleTrack && subtitlesEnabled && canPlay) {
- hlsRef.current.subtitleTrack = 0
- } else {
- hlsRef.current.subtitleTrack = -1
- }
- }, [hasSubtitleTrack, subtitlesEnabled, hlsRef, canPlay])
-
- // clicking on any button should focus the player, if it's not already focused
- const drawFocus = useCallback(() => {
- if (!active) {
- setActive()
- }
- setFocused(true)
- }, [active, setActive, setFocused])
-
- const onPressEmptySpace = useCallback(() => {
- if (!focused) {
- drawFocus()
- } else {
- togglePlayPause()
- }
- }, [togglePlayPause, drawFocus, focused])
-
- const onPressPlayPause = useCallback(() => {
- drawFocus()
- togglePlayPause()
- }, [drawFocus, togglePlayPause])
-
- const onPressSubtitles = useCallback(() => {
- drawFocus()
- setSubtitlesEnabled(!subtitlesEnabled)
- }, [drawFocus, setSubtitlesEnabled, subtitlesEnabled])
-
- const onPressMute = useCallback(() => {
- drawFocus()
- toggleMute()
- }, [drawFocus, toggleMute])
-
- const onPressFullscreen = useCallback(() => {
- drawFocus()
- toggleFullscreen()
- }, [drawFocus, toggleFullscreen])
-
- const showControls =
- (focused && !playing) || (interactingViaKeypress ? hasFocus : hovered)
-
- return (
- {
- evt.stopPropagation()
- setInteractingViaKeypress(false)
- }}
- onMouseEnter={onMouseEnter}
- onMouseLeave={onMouseLeave}
- onFocus={onFocus}
- onBlur={onBlur}
- onKeyDown={onKeyDown}>
-
-
-
-
-
- {formatTime(currentTime)} / {formatTime(duration)}
-
- {hasSubtitleTrack && (
-
- )}
-
- {!isIPhoneWeb && (
-
- )}
-
- {(showControls || !focused) && (
-
- {duration > 0 && (
-
- )}
-
- )}
- {(buffering || error) && (
-
- {buffering && }
- {error && (
-
- An error occurred
-
- )}
-
- )}
-
- )
-}
-
-const btnProps = {
- variant: 'ghost',
- shape: 'round',
- size: 'medium',
- style: a.p_2xs,
- hoverStyle: {backgroundColor: 'rgba(255, 255, 255, 0.1)'},
-} as const
-
-function formatTime(time: number) {
- if (isNaN(time)) {
- return '--'
- }
-
- time = Math.round(time)
-
- const minutes = Math.floor(time / 60)
- const seconds = String(time % 60).padStart(2, '0')
-
- return `${minutes}:${seconds}`
-}
-
-function useVideoUtils(ref: React.RefObject) {
- const [playing, setPlaying] = useState(false)
- const [muted, setMuted] = useState(true)
- const [currentTime, setCurrentTime] = useState(0)
- const [duration, setDuration] = useState(0)
- const [buffering, setBuffering] = useState(false)
- const [error, setError] = useState(false)
- const [canPlay, setCanPlay] = useState(false)
- const playWhenReadyRef = useRef(false)
-
- useEffect(() => {
- if (!ref.current) return
-
- let bufferingTimeout: ReturnType | undefined
-
- function round(num: number) {
- return Math.round(num * 100) / 100
- }
-
- // Initial values
- setCurrentTime(round(ref.current.currentTime) || 0)
- setDuration(round(ref.current.duration) || 0)
- setMuted(ref.current.muted)
- setPlaying(!ref.current.paused)
-
- const handleTimeUpdate = () => {
- if (!ref.current) return
- setCurrentTime(round(ref.current.currentTime) || 0)
- }
-
- const handleDurationChange = () => {
- if (!ref.current) return
- setDuration(round(ref.current.duration) || 0)
- }
-
- const handlePlay = () => {
- setPlaying(true)
- }
-
- const handlePause = () => {
- setPlaying(false)
- }
-
- const handleVolumeChange = () => {
- if (!ref.current) return
- setMuted(ref.current.muted)
- }
-
- const handleError = () => {
- setError(true)
- }
-
- const handleCanPlay = () => {
- setBuffering(false)
- setCanPlay(true)
-
- if (!ref.current) return
- if (playWhenReadyRef.current) {
- ref.current.play()
- playWhenReadyRef.current = false
- }
- }
-
- const handleCanPlayThrough = () => {
- setBuffering(false)
- }
-
- const handleWaiting = () => {
- if (bufferingTimeout) clearTimeout(bufferingTimeout)
- bufferingTimeout = setTimeout(() => {
- setBuffering(true)
- }, 200) // Delay to avoid frequent buffering state changes
- }
-
- const handlePlaying = () => {
- if (bufferingTimeout) clearTimeout(bufferingTimeout)
- setBuffering(false)
- setError(false)
- }
-
- const handleSeeking = () => {
- setBuffering(true)
- }
-
- const handleSeeked = () => {
- setBuffering(false)
- }
-
- const handleStalled = () => {
- if (bufferingTimeout) clearTimeout(bufferingTimeout)
- bufferingTimeout = setTimeout(() => {
- setBuffering(true)
- }, 200) // Delay to avoid frequent buffering state changes
- }
-
- const handleEnded = () => {
- setPlaying(false)
- setBuffering(false)
- setError(false)
- }
-
- const abortController = new AbortController()
-
- ref.current.addEventListener('timeupdate', handleTimeUpdate, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('durationchange', handleDurationChange, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('play', handlePlay, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('pause', handlePause, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('volumechange', handleVolumeChange, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('error', handleError, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('canplay', handleCanPlay, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('canplaythrough', handleCanPlayThrough, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('waiting', handleWaiting, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('playing', handlePlaying, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('seeking', handleSeeking, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('seeked', handleSeeked, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('stalled', handleStalled, {
- signal: abortController.signal,
- })
- ref.current.addEventListener('ended', handleEnded, {
- signal: abortController.signal,
- })
-
- return () => {
- abortController.abort()
- clearTimeout(bufferingTimeout)
- }
- }, [ref])
-
- const play = useCallback(() => {
- if (!ref.current) return
-
- if (ref.current.ended) {
- ref.current.currentTime = 0
- }
-
- if (ref.current.readyState < HTMLMediaElement.HAVE_FUTURE_DATA) {
- playWhenReadyRef.current = true
- } else {
- const promise = ref.current.play()
- if (promise !== undefined) {
- promise.catch(err => {
- console.error('Error playing video:', err)
- })
- }
- }
- }, [ref])
-
- const pause = useCallback(() => {
- if (!ref.current) return
-
- ref.current.pause()
- playWhenReadyRef.current = false
- }, [ref])
-
- const togglePlayPause = useCallback(() => {
- if (!ref.current) return
-
- if (ref.current.paused) {
- play()
- } else {
- pause()
- }
- }, [ref, play, pause])
-
- const mute = useCallback(() => {
- if (!ref.current) return
-
- ref.current.muted = true
- }, [ref])
-
- const unmute = useCallback(() => {
- if (!ref.current) return
-
- ref.current.muted = false
- }, [ref])
-
- const toggleMute = useCallback(() => {
- if (!ref.current) return
-
- ref.current.muted = !ref.current.muted
- }, [ref])
-
- return {
- play,
- pause,
- togglePlayPause,
- duration,
- currentTime,
- playing,
- muted,
- mute,
- unmute,
- toggleMute,
- buffering,
- error,
- canPlay,
- }
-}
-
-function fullscreenSubscribe(onChange: () => void) {
- document.addEventListener('fullscreenchange', onChange)
- return () => document.removeEventListener('fullscreenchange', onChange)
-}
-
-function useFullscreen(ref: React.RefObject) {
- const isFullscreen = useSyncExternalStore(fullscreenSubscribe, () =>
- Boolean(document.fullscreenElement),
- )
-
- const toggleFullscreen = useCallback(() => {
- if (isFullscreen) {
- document.exitFullscreen()
- } else {
- if (!ref.current) return
- ref.current.requestFullscreen()
- }
- }, [isFullscreen, ref])
-
- return [isFullscreen, toggleFullscreen] as const
-}
diff --git a/src/view/com/util/post-embeds/VideoPlayerContext.tsx b/src/view/com/util/post-embeds/VideoPlayerContext.tsx
index 473343ca4b..95511099e4 100644
--- a/src/view/com/util/post-embeds/VideoPlayerContext.tsx
+++ b/src/view/com/util/post-embeds/VideoPlayerContext.tsx
@@ -2,6 +2,12 @@ import React, {useContext} from 'react'
import type {VideoPlayer} from 'expo-video'
import {useVideoPlayer as useExpoVideoPlayer} from 'expo-video'
+import {logger} from '#/logger'
+import {
+ AudioCategory,
+ PlatformInfo,
+} from '../../../../../modules/expo-bluesky-swiss-army'
+
const VideoPlayerContext = React.createContext(null)
export function VideoPlayerProvider({
@@ -13,8 +19,16 @@ export function VideoPlayerProvider({
}) {
// eslint-disable-next-line @typescript-eslint/no-shadow
const player = useExpoVideoPlayer(source, player => {
- player.loop = true
- player.play()
+ try {
+ PlatformInfo.setAudioCategory(AudioCategory.Ambient)
+ PlatformInfo.setAudioActive(false)
+
+ player.loop = true
+ player.muted = true
+ player.play()
+ } catch (err) {
+ logger.error('Failed to init video player', {safeMessage: err})
+ }
})
return (
diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx
index 0462212fbd..9c13644834 100644
--- a/src/view/com/util/post-embeds/index.tsx
+++ b/src/view/com/util/post-embeds/index.tsx
@@ -25,13 +25,13 @@ import {useLargeAltBadgeEnabled} from '#/state/preferences/large-alt-badge'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {usePalette} from 'lib/hooks/usePalette'
import {FeedSourceCard} from 'view/com/feeds/FeedSourceCard'
-import {atoms as a} from '#/alf'
+import {atoms as a, useTheme} from '#/alf'
+import * as ListCard from '#/components/ListCard'
import {Embed as StarterPackCard} from '#/components/StarterPack/StarterPackCard'
import {ContentHider} from '../../../../components/moderation/ContentHider'
import {AutoSizedImage} from '../images/AutoSizedImage'
import {ImageLayoutGrid} from '../images/ImageLayoutGrid'
import {ExternalLinkEmbed} from './ExternalLinkEmbed'
-import {ListEmbed} from './ListEmbed'
import {MaybeQuoteEmbed} from './QuoteEmbed'
type Embed =
@@ -203,10 +203,20 @@ function MaybeListCard({view}: {view: AppBskyGraphDefs.ListView}) {
const moderation = React.useMemo(() => {
return moderationOpts ? moderateUserList(view, moderationOpts) : undefined
}, [view, moderationOpts])
+ const t = useTheme()
return (
-
+
+
+
)
}
diff --git a/src/view/screens/AccessibilitySettings.tsx b/src/view/screens/AccessibilitySettings.tsx
index 2a4477532d..5cb5c6a39f 100644
--- a/src/view/screens/AccessibilitySettings.tsx
+++ b/src/view/screens/AccessibilitySettings.tsx
@@ -80,7 +80,7 @@ export function AccessibilitySettingsScreen({}: Props) {
style={s.flex1}
contentContainerStyle={[
s.flex1,
- {paddingBottom: 200},
+ {paddingBottom: 100},
isMobile && pal.viewLight,
]}>
diff --git a/src/view/screens/DebugMod.tsx b/src/view/screens/DebugMod.tsx
index 7d0d2fb03c..d83623adc1 100644
--- a/src/view/screens/DebugMod.tsx
+++ b/src/view/screens/DebugMod.tsx
@@ -1,3 +1,4 @@
+/* eslint-disable no-restricted-imports */
import React from 'react'
import {View} from 'react-native'
import {
@@ -807,6 +808,7 @@ function MockPostFeedItem({
showReplyTo={false}
reason={undefined}
feedContext={''}
+ rootPost={post}
/>
)
}
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx
index 6ee8b3ada6..af424428d3 100644
--- a/src/view/screens/Home.tsx
+++ b/src/view/screens/Home.tsx
@@ -7,6 +7,7 @@ import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
import {useSetTitle} from '#/lib/hooks/useSetTitle'
import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries'
import {logEvent, LogEvents} from '#/lib/statsig/statsig'
+import {useGate} from '#/lib/statsig/statsig'
import {emitSoftReset} from '#/state/events'
import {SavedFeedSourceInfo, usePinnedFeedsInfos} from '#/state/queries/feed'
import {FeedDescriptor, FeedParams} from '#/state/queries/post-feed'
@@ -88,6 +89,7 @@ function HomeScreenReady({
const selectedFeed = allFeeds[selectedIndex]
const requestNotificationsPermission = useRequestNotificationsPermission()
const triggerTourIfQueued = useTriggerTourIfQueued(TOURS.HOME)
+ const gate = useGate()
useSetTitle(pinnedFeedInfos[selectedIndex]?.displayName)
useOTAUpdates()
@@ -165,13 +167,17 @@ function HomeScreenReady({
}),
)
- const mode = useMinimalShellMode()
+ const {footerMode} = useMinimalShellMode()
const {isMobile} = useWebMediaQueries()
useFocusEffect(
React.useCallback(() => {
+ if (gate('fixed_bottom_bar')) {
+ // Unnecessary because it's always there.
+ return
+ }
const listener = AppState.addEventListener('change', nextAppState => {
if (nextAppState === 'active') {
- if (isMobile && mode.value === 1) {
+ if (isMobile && footerMode.value === 1) {
// Reveal the bottom bar so you don't miss notifications or messages.
// TODO: Experiment with only doing it when unread > 0.
setMinimalShellMode(false)
@@ -181,7 +187,7 @@ function HomeScreenReady({
return () => {
listener.remove()
}
- }, [setMinimalShellMode, mode, isMobile]),
+ }, [setMinimalShellMode, footerMode, isMobile, gate]),
)
const onPageSelected = React.useCallback(
diff --git a/src/view/screens/LanguageSettings.tsx b/src/view/screens/LanguageSettings.tsx
index 390d2807b0..0f27db5229 100644
--- a/src/view/screens/LanguageSettings.tsx
+++ b/src/view/screens/LanguageSettings.tsx
@@ -145,6 +145,7 @@ export function LanguageSettingsScreen(_props: Props) {
backgroundColor: pal.viewLight.backgroundColor,
color: pal.text.color,
fontSize: 14,
+ fontFamily: 'inherit',
letterSpacing: 0.5,
fontWeight: '500',
paddingHorizontal: 14,
@@ -236,6 +237,7 @@ export function LanguageSettingsScreen(_props: Props) {
backgroundColor: pal.viewLight.backgroundColor,
color: pal.text.color,
fontSize: 14,
+ fontFamily: 'inherit',
letterSpacing: 0.5,
fontWeight: '500',
paddingHorizontal: 14,
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx
index bf13791ae6..0c2c6405fc 100644
--- a/src/view/screens/ProfileList.tsx
+++ b/src/view/screens/ProfileList.tsx
@@ -32,6 +32,7 @@ import {RQKEY as FEED_RQKEY} from '#/state/queries/post-feed'
import {
useAddSavedFeedsMutation,
usePreferencesQuery,
+ UsePreferencesQueryResponse,
useRemoveFeedMutation,
useUpdateSavedFeedsMutation,
} from '#/state/queries/preferences'
@@ -67,9 +68,10 @@ import {LoadingScreen} from 'view/com/util/LoadingScreen'
import {Text} from 'view/com/util/text/Text'
import * as Toast from 'view/com/util/Toast'
import {CenteredView} from 'view/com/util/Views'
+import {ListHiddenScreen} from '#/screens/List/ListHiddenScreen'
import {atoms as a, useTheme} from '#/alf'
import {useDialogControl} from '#/components/Dialog'
-import {ScreenHider} from '#/components/moderation/ScreenHider'
+import * as Hider from '#/components/moderation/Hider'
import * as Prompt from '#/components/Prompt'
import {ReportDialog, useReportDialogControl} from '#/components/ReportDialog'
import {RichText} from '#/components/RichText'
@@ -88,6 +90,7 @@ export function ProfileListScreen(props: Props) {
const {data: resolvedUri, error: resolveError} = useResolveUriQuery(
AtUri.make(handleOrDid, 'app.bsky.graph.list', rkey).toString(),
)
+ const {data: preferences} = usePreferencesQuery()
const {data: list, error: listError} = useListQuery(resolvedUri?.uri)
const moderationOpts = useModerationOpts()
@@ -110,12 +113,13 @@ export function ProfileListScreen(props: Props) {
)
}
- return resolvedUri && list && moderationOpts ? (
+ return resolvedUri && list && moderationOpts && preferences ? (
) : (
@@ -127,27 +131,32 @@ function ProfileListScreenLoaded({
uri,
list,
moderationOpts,
+ preferences,
}: Props & {
uri: string
list: AppBskyGraphDefs.ListView
moderationOpts: ModerationOpts
+ preferences: UsePreferencesQueryResponse
}) {
const {_} = useLingui()
const queryClient = useQueryClient()
const {openComposer} = useComposerControls()
const setMinimalShellMode = useSetMinimalShellMode()
+ const {currentAccount} = useSession()
const {rkey} = route.params
const feedSectionRef = React.useRef(null)
const aboutSectionRef = React.useRef(null)
const {openModal} = useModalControls()
- const isCurateList = list.purpose === 'app.bsky.graph.defs#curatelist'
+ const isCurateList = list.purpose === AppBskyGraphDefs.CURATELIST
const isScreenFocused = useIsFocused()
+ const isHidden = list.labels?.findIndex(l => l.val === '!hide') !== -1
+ const isOwner = currentAccount?.did === list.creator.did
const moderation = React.useMemo(() => {
return moderateUserList(list, moderationOpts)
}, [list, moderationOpts])
- useSetTitle(list.name)
+ useSetTitle(isHidden ? _(msg`List Hidden`) : list.name)
useFocusEffect(
useCallback(() => {
@@ -179,34 +188,75 @@ function ProfileListScreenLoaded({
)
const renderHeader = useCallback(() => {
- return
- }, [rkey, list])
+ return
+ }, [rkey, list, preferences])
if (isCurateList) {
return (
-
+
+
+
+
+
+
+
+ {({headerHeight, scrollElRef, isFocused}) => (
+
+ )}
+ {({headerHeight, scrollElRef}) => (
+
+ )}
+
+ openComposer({})}
+ icon={
+
+ }
+ accessibilityRole="button"
+ accessibilityLabel={_(msg`New post`)}
+ accessibilityHint=""
+ />
+
+
+
+ )
+ }
+ return (
+
+
+
+
+
- {({headerHeight, scrollElRef, isFocused}) => (
-
- )}
+ renderHeader={renderHeader}>
{({headerHeight, scrollElRef}) => (
@@ -227,47 +277,20 @@ function ProfileListScreenLoaded({
accessibilityHint=""
/>
-
- )
- }
- return (
-
-
-
- {({headerHeight, scrollElRef}) => (
-
- )}
-
- openComposer({})}
- icon={
-
- }
- accessibilityRole="button"
- accessibilityLabel={_(msg`New post`)}
- accessibilityHint=""
- />
-
-
+
+
)
}
-function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) {
+function Header({
+ rkey,
+ list,
+ preferences,
+}: {
+ rkey: string
+ list: AppBskyGraphDefs.ListView
+ preferences: UsePreferencesQueryResponse
+}) {
const pal = usePalette('default')
const palInverted = usePalette('inverted')
const {_} = useLingui()
@@ -283,7 +306,6 @@ function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) {
const isBlocking = !!list.viewer?.blocked
const isMuting = !!list.viewer?.muted
const isOwner = list.creator.did === currentAccount?.did
- const {data: preferences} = usePreferencesQuery()
const {track} = useAnalytics()
const playHaptic = useHaptics()
@@ -644,7 +666,7 @@ function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) {
cid: list.cid,
}}
/>
- {isCurateList || isPinned ? (
+ {isCurateList ? (
-
- {isCurrentAccount ? (
- {
- if (isNative) {
- logout('Settings')
- resetToTab('HomeTab')
- } else {
- navigate('Home').then(() => {
- logout('Settings')
- })
- }
- }}
- accessibilityRole="button"
- accessibilityLabel={_(msg`Sign out`)}
- accessibilityHint={`Signs ${profile?.displayName} out of Bluesky`}
- activeOpacity={0.8}>
-
- Sign out
-
-
- ) : (
-
- )}
+
)
@@ -173,6 +147,7 @@ export function SettingsScreen({}: Props) {
const {accounts, currentAccount} = useSession()
const {mutate: clearPreferences} = useClearPreferencesMutation()
const {setShowLoggedOut} = useLoggedOutViewControls()
+ const {logoutEveryAccount} = useSessionApi()
const closeAllActiveElements = useCloseAllActiveElements()
const exportCarControl = useDialogControl()
const birthdayControl = useDialogControl()
@@ -237,6 +212,10 @@ export function SettingsScreen({}: Props) {
openModal({name: 'delete-account'})
}, [openModal])
+ const onPressLogoutEveryAccount = React.useCallback(() => {
+ logoutEveryAccount('Settings')
+ }, [logoutEveryAccount])
+
const onPressResetPreferences = React.useCallback(async () => {
clearPreferences()
}, [clearPreferences])
@@ -325,7 +304,7 @@ export function SettingsScreen({}: Props) {
@@ -394,6 +373,15 @@ export function SettingsScreen({}: Props) {
) : null}
+ {accounts.length > 1 && (
+
+
+ Other accounts
+
+
+
+ )}
+
{accounts
.filter(a => a.did !== currentAccount?.did)
.map(account => (
@@ -422,6 +410,29 @@ export function SettingsScreen({}: Props) {
Add account
+
+
+
+
+
+
+ {accounts.length > 1 ? (
+ Sign out of all accounts
+ ) : (
+ Sign out
+ )}
+
+
diff --git a/src/view/screens/Storybook/index.tsx b/src/view/screens/Storybook/index.tsx
index 282b3ff5c7..71dbe8839d 100644
--- a/src/view/screens/Storybook/index.tsx
+++ b/src/view/screens/Storybook/index.tsx
@@ -36,7 +36,7 @@ function StorybookInner() {
return (
-
+
{!showContainedList ? (
<>
diff --git a/src/view/shell/Composer.ios.tsx b/src/view/shell/Composer.ios.tsx
index a732e0cdea..7d3780801a 100644
--- a/src/view/shell/Composer.ios.tsx
+++ b/src/view/shell/Composer.ios.tsx
@@ -33,6 +33,7 @@ export const Composer = observer(function ComposerImpl({}: {
replyTo={state?.replyTo}
onPost={state?.onPost}
quote={state?.quote}
+ quoteCount={state?.quoteCount}
mention={state?.mention}
text={state?.text}
imageUris={state?.imageUris}
diff --git a/src/view/shell/Composer.tsx b/src/view/shell/Composer.tsx
index b978d6b857..1c97df9c39 100644
--- a/src/view/shell/Composer.tsx
+++ b/src/view/shell/Composer.tsx
@@ -55,6 +55,7 @@ export const Composer = observer(function ComposerImpl({
replyTo={state.replyTo}
onPost={state.onPost}
quote={state.quote}
+ quoteCount={state.quoteCount}
mention={state.mention}
text={state.text}
imageUris={state.imageUris}
diff --git a/src/view/shell/Composer.web.tsx b/src/view/shell/Composer.web.tsx
index 64353db237..5d80dc422b 100644
--- a/src/view/shell/Composer.web.tsx
+++ b/src/view/shell/Composer.web.tsx
@@ -58,6 +58,7 @@ export function Composer({}: {winHeight: number}) {
@{account.handle}
-
-
-
- {formatCountShortOnly(profile?.followersCount ?? 0)}
- {' '}
-
- {' '}
- ·{' '}
-
-
- {formatCountShortOnly(profile?.followsCount ?? 0)}
- {' '}
-
-
-
+
+
+
+
+ {formatCountShortOnly(profile?.followersCount ?? 0)}
+ {' '}
+
+
+
+
+ ·
+
+
+
+
+ {formatCountShortOnly(profile?.followsCount ?? 0)}
+ {' '}
+
+
+
+
)
}
@@ -610,7 +624,7 @@ const styles = StyleSheet.create({
backgroundColor: '#1B1919',
},
main: {
- paddingLeft: 20,
+ paddingHorizontal: 20,
paddingTop: 20,
},
smallSpacer: {
@@ -627,14 +641,12 @@ const styles = StyleSheet.create({
},
profileCardFollowers: {
marginTop: 16,
- paddingRight: 10,
},
menuItem: {
flexDirection: 'row',
alignItems: 'center',
paddingVertical: 16,
- paddingRight: 10,
},
menuItemIconWrapper: {
width: 24,
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx
index ed3d8212cf..fb8e6c26cb 100644
--- a/src/view/shell/desktop/RightNav.tsx
+++ b/src/view/shell/desktop/RightNav.tsx
@@ -11,6 +11,7 @@ import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
import {s} from 'lib/styles'
import {TextLink} from 'view/com/util/Link'
import {Text} from 'view/com/util/text/Text'
+import {atoms as a} from '#/alf'
import {ProgressGuideList} from '#/components/ProgressGuide/List'
import {DesktopFeeds} from './Feeds'
import {DesktopSearch} from './Search'
@@ -56,7 +57,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) {
paddingTop: hasSession ? 0 : 18,
},
]}>
-
+
{hasSession && (
<>
- ·
+ ·
>
)}
@@ -80,7 +81,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) {
text={_(msg`Privacy`)}
/>
- ·
+ ·
- ·
+ ·
-
-
-
-
- {query ? (
-
-
-
- Cancel
-
-
-
- ) : undefined}
-
-
-
+
{query !== '' && isActive && moderationOpts && (
{isFetching && !autocompleteData?.length ? (
@@ -262,33 +226,6 @@ const styles = StyleSheet.create({
position: 'relative',
width: 300,
},
- search: {
- paddingHorizontal: 16,
- paddingVertical: 2,
- width: 300,
- borderRadius: 20,
- },
- inputContainer: {
- flexDirection: 'row',
- },
- iconWrapper: {
- position: 'relative',
- top: 2,
- paddingVertical: 7,
- marginRight: 8,
- },
- input: {
- flex: 1,
- fontSize: 18,
- width: '100%',
- paddingTop: 7,
- paddingBottom: 7,
- },
- cancelBtn: {
- paddingRight: 4,
- paddingLeft: 10,
- paddingVertical: 7,
- },
resultsContainer: {
marginTop: 10,
flexDirection: 'column',
@@ -296,8 +233,4 @@ const styles = StyleSheet.create({
borderWidth: 1,
borderRadius: 6,
},
- noResults: {
- textAlign: 'center',
- paddingVertical: 10,
- },
})
diff --git a/yarn.lock b/yarn.lock
index 16547aa3ad..2ad6d04e09 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -34,39 +34,78 @@
jsonpointer "^5.0.0"
leven "^3.1.0"
-"@atproto/api@0.12.29":
- version "0.12.29"
- resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.29.tgz#95a19202c2f0eec4c955909685be11009ba9b9a1"
- integrity sha512-PyzPLjGWR0qNOMrmj3Nt3N5NuuANSgOk/33Bu3j+rFjjPrHvk9CI6iQPU6zuDaDCoyOTRJRafw8X/aMQw+ilgw==
+"@atproto-labs/fetch-node@0.1.0":
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/@atproto-labs/fetch-node/-/fetch-node-0.1.0.tgz#692666d57ec24a7ba0813077a303baccf26108e0"
+ integrity sha512-DUHgaGw8LBqiGg51pUDuWK/alMcmNbpcK7ALzlF2Gw//TNLTsgrj0qY9aEtK+np9rEC+x/o3bN4SGnuQEpgqIg==
+ dependencies:
+ "@atproto-labs/fetch" "0.1.0"
+ "@atproto-labs/pipe" "0.1.0"
+ ipaddr.js "^2.1.0"
+ psl "^1.9.0"
+ undici "^6.14.1"
+
+"@atproto-labs/fetch@0.1.0":
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/@atproto-labs/fetch/-/fetch-0.1.0.tgz#50a46943fd2f321dd748de28c73ba7cbfa493132"
+ integrity sha512-uirja+uA/C4HNk7vayM+AJqsccxQn2wVziUHxbsjJGt/K6Q8ZOKDaEX2+GrcXvpUVcqUKh+94JFjuzH+CAEUlg==
+ dependencies:
+ "@atproto-labs/pipe" "0.1.0"
+ optionalDependencies:
+ zod "^3.23.8"
+
+"@atproto-labs/pipe@0.1.0":
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/@atproto-labs/pipe/-/pipe-0.1.0.tgz#c8d86923b6d8e900d39efe6fdcdf0d897c434086"
+ integrity sha512-ghOqHFyJlQVFPESzlVHjKroP0tPzbmG5Jms0dNI9yLDEfL8xp4OFPWLX4f6T8mRq69wWs4nIDM3sSsFbFqLa1w==
+
+"@atproto-labs/simple-store-memory@0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@atproto-labs/simple-store-memory/-/simple-store-memory-0.1.1.tgz#54526a1f8ec978822be9fad75106ad8b78500dd3"
+ integrity sha512-PCRqhnZ8NBNBvLku53O56T0lsVOtclfIrQU/rwLCc4+p45/SBPrRYNBi6YFq5rxZbK6Njos9MCmILV/KLQxrWA==
+ dependencies:
+ "@atproto-labs/simple-store" "0.1.1"
+ lru-cache "^10.2.0"
+
+"@atproto-labs/simple-store@0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@atproto-labs/simple-store/-/simple-store-0.1.1.tgz#e743a2722b5d8732166f0a72aca8bd10e9bff106"
+ integrity sha512-WKILW2b3QbAYKh+w5U2x6p5FqqLl0nAeLwGeDY+KjX01K4Dq3vQTR9b/qNp0jZm48CabPQVrqCv0PPU9LgRRRg==
+
+"@atproto/api@0.13.3":
+ version "0.13.3"
+ resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.13.3.tgz#d84f2a0e25f38cca59b69d178901634f2d20b4ff"
+ integrity sha512-/PEVTTEQXICOjZCujAPsjArhwR0tR3LiF0SxxpZlWOjaqjVbqnBI/j0MNmddBFgeljC4/DcBobcDJ9HkILn4yQ==
dependencies:
"@atproto/common-web" "^0.3.0"
- "@atproto/lexicon" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc" "^0.5.0"
+ "@atproto/xrpc" "^0.6.0"
await-lock "^2.2.2"
multiformats "^9.9.0"
tlds "^1.234.0"
-"@atproto/api@^0.12.3":
- version "0.12.3"
- resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.3.tgz#5b7b1c7d4210ee9315961504900c8409395cbb17"
- integrity sha512-y/kGpIEo+mKGQ7VOphpqCAigTI0LZRmDThNChTfSzDKm9TzEobwiw0zUID0Yw6ot1iLLFx3nKURmuZAYlEuobw==
+"@atproto/api@^0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.13.0.tgz#d1c65a407f1c3c6aba5be9425f4f739a01419bd8"
+ integrity sha512-04kzIDkoEVSP7zMVOT5ezCVQcOrbXWjGYO2YBc3/tBvQ90V1pl9I+mLyz1uUHE+wRE1IRWKACcWhAz8SrYz3pA==
dependencies:
"@atproto/common-web" "^0.3.0"
- "@atproto/lexicon" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc" "^0.5.0"
+ "@atproto/xrpc" "^0.6.0"
+ await-lock "^2.2.2"
multiformats "^9.9.0"
tlds "^1.234.0"
-"@atproto/aws@^0.2.0":
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/@atproto/aws/-/aws-0.2.0.tgz#17f3faf744824457cabd62f87be8bf08cacf8029"
- integrity sha512-F09SHiC9CX3ydfrvYZbkpfES48UGCQNnznNVgJ3QyKSN8ON+BoWmGCpAFtn3AWeEoU0w9h0hypNvUm5nORv+5g==
+"@atproto/aws@^0.2.2":
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/@atproto/aws/-/aws-0.2.2.tgz#703e5e06f288bcf61c6d99a990738f1e7299e653"
+ integrity sha512-j7eR7+sQumFsc66/5xyCDez9JtR6dlZc+fOdwdh85nCJD4zmQyU4r1CKrA48wQ3tkzze+ASEb1SgODuIQmIugA==
dependencies:
- "@atproto/common" "^0.4.0"
+ "@atproto/common" "^0.4.1"
"@atproto/crypto" "^0.4.0"
- "@atproto/repo" "^0.4.0"
+ "@atproto/repo" "^0.4.2"
"@aws-sdk/client-cloudfront" "^3.261.0"
"@aws-sdk/client-kms" "^3.196.0"
"@aws-sdk/client-s3" "^3.224.0"
@@ -76,19 +115,19 @@
multiformats "^9.9.0"
uint8arrays "3.0.0"
-"@atproto/bsky@^0.0.45":
- version "0.0.45"
- resolved "https://registry.yarnpkg.com/@atproto/bsky/-/bsky-0.0.45.tgz#c3083d8038fe8c5ff921d9bcb0b5a043cc840827"
- integrity sha512-osWeigdYzQH2vZki+eszCR8ta9zdUB4om79aFmnE+zvxw7HFduwAAbcHf6kmmiLCfaOWvCsYb1wS2i3IC66TAg==
+"@atproto/bsky@^0.0.74":
+ version "0.0.74"
+ resolved "https://registry.yarnpkg.com/@atproto/bsky/-/bsky-0.0.74.tgz#b735af6ded16778604378710a2e871350c29570a"
+ integrity sha512-vyukmlBamoET0sZnDMOeTGAkQNV7KbHg65uIQ6OX4/QGynyaQP8SvSF0OsEBzBqOraxV1w9WT8AZrUbyl3uvIg==
dependencies:
- "@atproto/api" "^0.12.3"
- "@atproto/common" "^0.4.0"
+ "@atproto/api" "^0.13.0"
+ "@atproto/common" "^0.4.1"
"@atproto/crypto" "^0.4.0"
"@atproto/identity" "^0.4.0"
- "@atproto/lexicon" "^0.4.0"
- "@atproto/repo" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
+ "@atproto/repo" "^0.4.2"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc-server" "^0.5.1"
+ "@atproto/xrpc-server" "^0.6.1"
"@bufbuild/protobuf" "^1.5.0"
"@connectrpc/connect" "^1.1.4"
"@connectrpc/connect-express" "^1.1.4"
@@ -105,19 +144,20 @@
multiformats "^9.9.0"
p-queue "^6.6.2"
pg "^8.10.0"
- pino "^8.15.0"
+ pino "^8.21.0"
pino-http "^8.2.1"
sharp "^0.32.6"
+ statsig-node "^5.23.1"
structured-headers "^1.0.1"
typed-emitter "^2.1.0"
uint8arrays "3.0.0"
-"@atproto/bsync@^0.0.3":
- version "0.0.3"
- resolved "https://registry.yarnpkg.com/@atproto/bsync/-/bsync-0.0.3.tgz#2b0b8ef3686cf177846a80088317f2e89d1bf88f"
- integrity sha512-tJRwNgXzfNV57lzgWPvjtb1OMlMJH9SpsMeYhIii16zcaFUWwsb474BicKpkGRT+iCvtYzBT6gWlZE2Ijnhf7w==
+"@atproto/bsync@^0.0.5":
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/@atproto/bsync/-/bsync-0.0.5.tgz#bf2fa45e4595fda12addcd6784314e4dbe409046"
+ integrity sha512-xCCMHy14y4tQoXiGrfd0XjSnc4q7I9bUNqju9E8jrP95QTDedH1FQgybStbUIbHt0eEqY5v9E7iZBH3n7Kiz7A==
dependencies:
- "@atproto/common" "^0.4.0"
+ "@atproto/common" "^0.4.1"
"@atproto/syntax" "^0.3.0"
"@bufbuild/protobuf" "^1.5.0"
"@connectrpc/connect" "^1.1.4"
@@ -158,17 +198,17 @@
pino "^8.6.1"
zod "^3.14.2"
-"@atproto/common@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.4.0.tgz#d77696c7eb545426df727837d9ee333b429fe7ef"
- integrity sha512-yOXuPlCjT/OK9j+neIGYn9wkxx/AlxQSucysAF0xgwu0Ji8jAtKBf9Jv6R5ObYAjAD/kVUvEYumle+Yq/R9/7g==
+"@atproto/common@^0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.4.1.tgz#ca6fce47001ce8d031acd3fb4942fbfd81f72c43"
+ integrity sha512-uL7kQIcBTbvkBDNfxMXL6lBH4fO2DQpHd2BryJxMtbw/4iEPKe9xBYApwECHhEIk9+zhhpTRZ15FJ3gxTXN82Q==
dependencies:
"@atproto/common-web" "^0.3.0"
"@ipld/dag-cbor" "^7.0.3"
cbor-x "^1.5.1"
iso-datestring-validator "^2.2.2"
multiformats "^9.9.0"
- pino "^8.15.0"
+ pino "^8.21.0"
"@atproto/crypto@0.1.0":
version "0.1.0"
@@ -190,22 +230,22 @@
"@noble/hashes" "^1.3.1"
uint8arrays "3.0.0"
-"@atproto/dev-env@^0.3.5":
- version "0.3.5"
- resolved "https://registry.yarnpkg.com/@atproto/dev-env/-/dev-env-0.3.5.tgz#cd13313dbc52131731d039a1d22808ee8193505d"
- integrity sha512-dqRNihzX1xIHbWPHmfYsliUUXyZn5FFhCeButrGie5soQmHA4okQJTB1XWDly3mdHLjUM90g+5zjRSAKoui77Q==
+"@atproto/dev-env@^0.3.39":
+ version "0.3.39"
+ resolved "https://registry.yarnpkg.com/@atproto/dev-env/-/dev-env-0.3.39.tgz#f498f087d4da43d5f86805c07d5f2b781e60fd6f"
+ integrity sha512-rIeUO99DL8/gRKYEAkAFuTn77y8letEbKMXnfpsVX2YHD89VRdDyMxkYzRu2+31UjtGv62I+qTLLKQS4EcFItA==
dependencies:
- "@atproto/api" "^0.12.3"
- "@atproto/bsky" "^0.0.45"
- "@atproto/bsync" "^0.0.3"
+ "@atproto/api" "^0.13.0"
+ "@atproto/bsky" "^0.0.74"
+ "@atproto/bsync" "^0.0.5"
"@atproto/common-web" "^0.3.0"
"@atproto/crypto" "^0.4.0"
"@atproto/identity" "^0.4.0"
- "@atproto/lexicon" "^0.4.0"
- "@atproto/ozone" "^0.1.7"
- "@atproto/pds" "^0.4.14"
+ "@atproto/lexicon" "^0.4.1"
+ "@atproto/ozone" "^0.1.36"
+ "@atproto/pds" "^0.4.48"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc-server" "^0.5.1"
+ "@atproto/xrpc-server" "^0.6.1"
"@did-plc/lib" "^0.0.1"
"@did-plc/server" "^0.0.1"
axios "^0.27.2"
@@ -224,30 +264,79 @@
"@atproto/crypto" "^0.4.0"
axios "^0.27.2"
-"@atproto/lexicon@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.0.tgz#63e8829945d80c25524882caa8ed27b1151cc576"
- integrity sha512-RvCBKdSI4M8qWm5uTNz1z3R2yIvIhmOsMuleOj8YR6BwRD+QbtUBy3l+xQ7iXf4M5fdfJFxaUNa6Ty0iRwdKqQ==
+"@atproto/jwk-jose@0.1.2":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@atproto/jwk-jose/-/jwk-jose-0.1.2.tgz#236eadb740b498689d9a912d1254aa9ff58890a1"
+ integrity sha512-lDwc/6lLn2aZ/JpyyggyjLFsJPMntrVzryyGUx5aNpuTS8SIuc4Ky0REhxqfLopQXJJZCuRRjagHG3uP05/moQ==
+ dependencies:
+ "@atproto/jwk" "0.1.1"
+ jose "^5.2.0"
+
+"@atproto/jwk@0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@atproto/jwk/-/jwk-0.1.1.tgz#15bcad4a1778eeb20c82108e0ec55fef45cd07b6"
+ integrity sha512-6h/bj1APUk7QcV9t/oA6+9DB5NZx9SZru9x+/pV5oHFI9Xz4ZuM5+dq1PfsJV54pZyqdnZ6W6M717cxoC7q7og==
+ dependencies:
+ multiformats "^9.9.0"
+ zod "^3.23.8"
+
+"@atproto/lexicon@^0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.1.tgz#19155210570a2fafbcc7d4f655d9b813948e72a0"
+ integrity sha512-bzyr+/VHXLQWbumViX5L7h1NKQObfs8Z+XZJl43OUK8nYFUI4e/sW1IZKRNfw7Wvi5YVNK+J+yP3DWIBZhkCYA==
dependencies:
"@atproto/common-web" "^0.3.0"
"@atproto/syntax" "^0.3.0"
iso-datestring-validator "^2.2.2"
multiformats "^9.9.0"
- zod "^3.21.4"
+ zod "^3.23.8"
-"@atproto/ozone@^0.1.7":
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/@atproto/ozone/-/ozone-0.1.7.tgz#248d88e1acfe56936651754975472d03d047d689"
- integrity sha512-vvaV0MFynOzZJcL8m8mEW21o1FFIkP+wHTXEC9LJrL3h03+PMaby8Ujmif6WX5eikhfxvr9xsU/Jxbi/iValuQ==
+"@atproto/oauth-provider@^0.1.2":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@atproto/oauth-provider/-/oauth-provider-0.1.2.tgz#a576a4c7795c7938a994e76192c19a2e73ffcddf"
+ integrity sha512-z1YKK0XLDfSDtLP5ntPCviEtajvUHbI4TwzYQ5X9CAL9PoXjqhQg0U/csg1wGDs8qkbphF9gni9M2stlpH7H0g==
dependencies:
- "@atproto/api" "^0.12.3"
- "@atproto/common" "^0.4.0"
+ "@atproto-labs/fetch" "0.1.0"
+ "@atproto-labs/fetch-node" "0.1.0"
+ "@atproto-labs/pipe" "0.1.0"
+ "@atproto-labs/simple-store" "0.1.1"
+ "@atproto-labs/simple-store-memory" "0.1.1"
+ "@atproto/jwk" "0.1.1"
+ "@atproto/jwk-jose" "0.1.2"
+ "@atproto/oauth-types" "0.1.2"
+ "@hapi/accept" "^6.0.3"
+ "@hapi/bourne" "^3.0.0"
+ cookie "^0.6.0"
+ http-errors "^2.0.0"
+ jose "^5.2.0"
+ oidc-token-hash "^5.0.3"
+ psl "^1.9.0"
+ zod "^3.23.8"
+ optionalDependencies:
+ ioredis "^5.3.2"
+ keygrip "^1.1.0"
+
+"@atproto/oauth-types@0.1.2":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@atproto/oauth-types/-/oauth-types-0.1.2.tgz#d6c497c8e5f88f1875c630adde4ed9c5d8a8b4f4"
+ integrity sha512-yySPPTLxteFJ3O3xVWEhvBFx7rczgo4LK2nQNeqAPMZdYd5dpgvuZZ88nQQge074BfuOc0MWTnr0kPdxQMjjPw==
+ dependencies:
+ "@atproto/jwk" "0.1.1"
+ zod "^3.23.8"
+
+"@atproto/ozone@^0.1.36":
+ version "0.1.36"
+ resolved "https://registry.yarnpkg.com/@atproto/ozone/-/ozone-0.1.36.tgz#6a1a71fdff3ff486c5951a9e491e954b51703d53"
+ integrity sha512-BQThLU5RFG+/bZli/fj5YrFU8jW5rkium7aplfJX2eHkV6huJnBU5DcgracjH2paPGC5L/zjYtibz5spqatKAg==
+ dependencies:
+ "@atproto/api" "^0.13.0"
+ "@atproto/common" "^0.4.1"
"@atproto/crypto" "^0.4.0"
"@atproto/identity" "^0.4.0"
- "@atproto/lexicon" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc" "^0.5.0"
- "@atproto/xrpc-server" "^0.5.1"
+ "@atproto/xrpc" "^0.6.0"
+ "@atproto/xrpc-server" "^0.6.1"
"@did-plc/lib" "^0.0.1"
axios "^1.6.7"
compression "^1.7.4"
@@ -255,30 +344,34 @@
express "^4.17.2"
http-terminator "^3.2.0"
kysely "^0.22.0"
+ lande "^1.0.10"
multiformats "^9.9.0"
p-queue "^6.6.2"
pg "^8.10.0"
pino-http "^8.2.1"
+ structured-headers "^1.0.1"
typed-emitter "^2.1.0"
uint8arrays "3.0.0"
-"@atproto/pds@^0.4.14":
- version "0.4.14"
- resolved "https://registry.yarnpkg.com/@atproto/pds/-/pds-0.4.14.tgz#5b55ef307323bda712f2ddaba5c1fff7740ed91b"
- integrity sha512-rqVcvtw5oMuuJIpWZbSSTSx19+JaZyUcg9OEjdlUmyEpToRN88zTEQySEksymrrLQkW/LPRyWGd7WthbGEuEfQ==
+"@atproto/pds@^0.4.48":
+ version "0.4.48"
+ resolved "https://registry.yarnpkg.com/@atproto/pds/-/pds-0.4.48.tgz#34f29846a0585f5cc33f1685eb75ad730b7dcb9f"
+ integrity sha512-B5FpmECkGtA0EyhiB5rfhmQArmGekqqyzFnPlNpO5vOUrTTVKc9mgGfHLVJtrnwDUfGAuIgpigqZ8HgwS0DnMA==
dependencies:
- "@atproto/api" "^0.12.3"
- "@atproto/aws" "^0.2.0"
- "@atproto/common" "^0.4.0"
+ "@atproto-labs/fetch-node" "0.1.0"
+ "@atproto/api" "^0.13.0"
+ "@atproto/aws" "^0.2.2"
+ "@atproto/common" "^0.4.1"
"@atproto/crypto" "^0.4.0"
"@atproto/identity" "^0.4.0"
- "@atproto/lexicon" "^0.4.0"
- "@atproto/repo" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
+ "@atproto/oauth-provider" "^0.1.2"
+ "@atproto/repo" "^0.4.2"
"@atproto/syntax" "^0.3.0"
- "@atproto/xrpc" "^0.5.0"
- "@atproto/xrpc-server" "^0.5.1"
+ "@atproto/xrpc" "^0.6.0"
+ "@atproto/xrpc-server" "^0.6.1"
"@did-plc/lib" "^0.0.4"
- better-sqlite3 "^9.4.0"
+ better-sqlite3 "^10.0.0"
bytes "^3.1.2"
compression "^1.7.4"
cors "^2.8.5"
@@ -297,41 +390,42 @@
nodemailer "^6.8.0"
nodemailer-html-to-text "^3.2.0"
p-queue "^6.6.2"
- pino "^8.15.0"
+ pino "^8.21.0"
pino-http "^8.2.1"
sharp "^0.32.6"
typed-emitter "^2.1.0"
uint8arrays "3.0.0"
- zod "^3.21.4"
+ zod "^3.23.8"
-"@atproto/repo@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@atproto/repo/-/repo-0.4.0.tgz#e5d3195a8e4233c9bf060737b18ddee905af2d9a"
- integrity sha512-LB0DF/D8r8hB+qiGB0sWZuq7TSJYbWel+t572aCrLeCOmbRgnLkGPLUTOOUvLFYv8xz1BPZTbI8hy/vcUV79VA==
+"@atproto/repo@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@atproto/repo/-/repo-0.4.2.tgz#311eef52ef5df0b6f969fb4b329935a32db05313"
+ integrity sha512-6hEGA3BmasPCoBGaIN/jKAjKJidCf+z8exkx/77V3WB7TboucSLHn/8gg+Xf03U7bJd6mn3F0YmPaRfJwqIT8w==
dependencies:
- "@atproto/common" "^0.4.0"
+ "@atproto/common" "^0.4.1"
"@atproto/common-web" "^0.3.0"
"@atproto/crypto" "^0.4.0"
- "@atproto/lexicon" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
"@ipld/car" "^3.2.3"
"@ipld/dag-cbor" "^7.0.0"
multiformats "^9.9.0"
uint8arrays "3.0.0"
- zod "^3.21.4"
+ zod "^3.23.8"
"@atproto/syntax@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@atproto/syntax/-/syntax-0.3.0.tgz#fafa2dbea9add37253005cb663e7373e05e618b3"
integrity sha512-Weq0ZBxffGHDXHl9U7BQc2BFJi/e23AL+k+i5+D9hUq/bzT4yjGsrCejkjq0xt82xXDjmhhvQSZ0LqxyZ5woxA==
-"@atproto/xrpc-server@^0.5.1":
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/@atproto/xrpc-server/-/xrpc-server-0.5.1.tgz#f63c86ba60bd5b9c5a641ea57191ff83d9db41fd"
- integrity sha512-SXU6dscVe5iYxPeV79QIFs/yEEu7LLOzyHGoHG1kSNO6DjwxXTdcWOc8GSYGV6H+7VycOoPZPkyD9q4teJlj/w==
+"@atproto/xrpc-server@^0.6.1":
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/@atproto/xrpc-server/-/xrpc-server-0.6.1.tgz#c8c75065ab6bc1a7f5c121b558acb5213f2afda6"
+ integrity sha512-Qm0aJC1LbYYHaRGWoh0D2iG48VwRha1T1NEP/D5UkD4GzfjT8m5PDiZBtcyspJD/BEC7UYX9/BhMYCoZLQMYcA==
dependencies:
- "@atproto/common" "^0.4.0"
+ "@atproto/common" "^0.4.1"
"@atproto/crypto" "^0.4.0"
- "@atproto/lexicon" "^0.4.0"
+ "@atproto/lexicon" "^0.4.1"
+ "@atproto/xrpc" "^0.6.0"
cbor-x "^1.5.1"
express "^4.17.2"
http-errors "^2.0.0"
@@ -339,15 +433,15 @@
rate-limiter-flexible "^2.4.1"
uint8arrays "3.0.0"
ws "^8.12.0"
- zod "^3.21.4"
+ zod "^3.23.8"
-"@atproto/xrpc@^0.5.0":
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/@atproto/xrpc/-/xrpc-0.5.0.tgz#dacbfd8f7b13f0ab5bd56f8fdd4b460e132a6032"
- integrity sha512-swu+wyOLvYW4l3n+VAuJbHcPcES+tin2Lsrp8Bw5aIXIICiuFn1YMFlwK9JwVUzTH21Py1s1nHEjr4CJeElJog==
+"@atproto/xrpc@^0.6.0":
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/@atproto/xrpc/-/xrpc-0.6.0.tgz#668c3262e67e2afa65951ea79a03bfe3720ddf5c"
+ integrity sha512-5BbhBTv5j6MC3iIQ4+vYxQE7nLy2dDGQ+LYJrH8PptOCUdq0Pwg6aRccQ3y52kUZlhE/mzOTZ8Ngiy9pSAyfVQ==
dependencies:
- "@atproto/lexicon" "^0.4.0"
- zod "^3.21.4"
+ "@atproto/lexicon" "^0.4.1"
+ zod "^3.23.8"
"@aws-crypto/crc32@3.0.0":
version "3.0.0"
@@ -4001,6 +4095,31 @@
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861"
integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
+"@hapi/accept@^6.0.3":
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-6.0.3.tgz#eef0800a4f89cd969da8e5d0311dc877c37279ab"
+ integrity sha512-p72f9k56EuF0n3MwlBNThyVE5PXX40g+aQh+C/xbKrfzahM2Oispv3AXmOIU51t3j77zay1qrX7IIziZXspMlw==
+ dependencies:
+ "@hapi/boom" "^10.0.1"
+ "@hapi/hoek" "^11.0.2"
+
+"@hapi/boom@^10.0.1":
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-10.0.1.tgz#ebb14688275ae150aa6af788dbe482e6a6062685"
+ integrity sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA==
+ dependencies:
+ "@hapi/hoek" "^11.0.2"
+
+"@hapi/bourne@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-3.0.0.tgz#f11fdf7dda62fe8e336fa7c6642d9041f30356d7"
+ integrity sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==
+
+"@hapi/hoek@^11.0.2":
+ version "11.0.4"
+ resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-11.0.4.tgz#42a7f244fd3dd777792bfb74b8c6340ae9182f37"
+ integrity sha512-PnsP5d4q7289pS2T2EgGz147BFJ2Jpb4yrEdkpz2IhgEUzos1S7HTl7ezWh1yfYzYlj89KzLdCRkqsP6SIryeQ==
+
"@hapi/hoek@^9.0.0":
version "9.3.0"
resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb"
@@ -9453,10 +9572,10 @@ better-opn@~3.0.2:
dependencies:
open "^8.0.4"
-better-sqlite3@^9.4.0:
- version "9.4.5"
- resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-9.4.5.tgz#1d3422443a9924637cb06cc3ccc941b2ae932c65"
- integrity sha512-uFVyoyZR9BNcjSca+cp3MWCv6upAv+tbMC4SWM51NIMhoQOm4tjIkyxFO/ZsYdGAF61WJBgdzyJcz4OokJi0gQ==
+better-sqlite3@^10.0.0:
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-10.1.0.tgz#8dc07e496fc014a7cd2211f79e591f6ba92838e8"
+ integrity sha512-hqpHJaCfKEZFaAWdMh6crdzRWyzQzfP6Ih8TYI0vFn01a6ZTDSbJIMXN+6AMBaBOh99DzUy8l3PsV9R3qnJDng==
dependencies:
bindings "^1.5.0"
prebuild-install "^7.1.1"
@@ -10305,6 +10424,11 @@ cookie@0.5.0:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
+cookie@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051"
+ integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
+
copy-webpack-plugin@^10.2.0:
version "10.2.4"
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz#6c854be3fdaae22025da34b9112ccf81c63308fe"
@@ -12302,10 +12426,10 @@ expo-updates@~0.25.14:
ignore "^5.3.1"
resolve-from "^5.0.0"
-expo-video@^1.1.10:
- version "1.1.10"
- resolved "https://registry.yarnpkg.com/expo-video/-/expo-video-1.1.10.tgz#b47c0d40c21f401236639424bd25d70c09316b7b"
- integrity sha512-k9ecpgtwAK8Ut8enm8Jv398XkB/uVOyLLqk80M/d8pH9EN5CVrBQ7iEzWlR3quvVUFM7Uf5wRukJ4hk3mZ8NCg==
+expo-video@^1.2.4:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/expo-video/-/expo-video-1.2.4.tgz#787342aded4295a1b6864f59227d178b93e1bb53"
+ integrity sha512-pBK9mt7vYAbuPQjCSQxHQ7xrNjbmRheJep7JIStEg57O183/JRfP2blKuXniiSt1HBdZYPdoQnGRa3jGMXB9pg==
expo-web-browser@~13.0.3:
version "13.0.3"
@@ -13779,6 +13903,11 @@ ip-regex@^2.1.0:
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==
+ip3country@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ip3country/-/ip3country-5.0.0.tgz#f1394b050c51ba9c10cc691c8eb240bba3d7177a"
+ integrity sha512-lcFLMFU4eO1Z7tIpbVFZkaZ5ltqpeaRx7L9NsAbA9uA7/O/rj3RF8+evE5gDitooaTTIqjdzZrenFO/OOxQ2ew==
+
ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
version "1.9.1"
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
@@ -13789,6 +13918,11 @@ ipaddr.js@^2.0.1:
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f"
integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==
+ipaddr.js@^2.1.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.2.0.tgz#d33fa7bac284f4de7af949638c9d68157c6b92e8"
+ integrity sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==
+
is-arguments@^1.0.4:
version "1.1.1"
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
@@ -15351,6 +15485,11 @@ jose@^5.0.1:
resolved "https://registry.yarnpkg.com/jose/-/jose-5.1.3.tgz#303959d85c51b5cb14725f930270b72be56abdca"
integrity sha512-GPExOkcMsCLBTi1YetY2LmkoY559fss0+0KVa6kOfb2YFe84nAM7Nm/XzuZozah4iHgmBGrCOHL5/cy670SBRw==
+jose@^5.2.0:
+ version "5.6.3"
+ resolved "https://registry.yarnpkg.com/jose/-/jose-5.6.3.tgz#415688bc84875461c86dfe271ea6029112a23e27"
+ integrity sha512-1Jh//hEEwMhNYPDDLwXHa2ePWgWiFNNUadVmguAAw2IJ6sj9mNxV5tGXJNqlMkJAybF6Lgw1mISDxTePP/187g==
+
js-base64@^3.7.2:
version "3.7.5"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-3.7.5.tgz#21e24cf6b886f76d6f5f165bfcd69cc55b9e3fca"
@@ -15603,6 +15742,13 @@ key-encoder@^2.0.3:
bn.js "^4.11.8"
elliptic "^6.4.1"
+keygrip@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226"
+ integrity sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==
+ dependencies:
+ tsscmp "1.0.6"
+
kind-of@^6.0.2:
version "6.0.3"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
@@ -16776,6 +16922,13 @@ node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, nod
dependencies:
whatwg-url "^5.0.0"
+node-fetch@^2.6.13:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
+ integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
+ dependencies:
+ whatwg-url "^5.0.0"
+
node-forge@^1, node-forge@^1.2.1, node-forge@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
@@ -17024,6 +17177,11 @@ obuf@^1.0.0, obuf@^1.1.2:
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+oidc-token-hash@^5.0.3:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/oidc-token-hash/-/oidc-token-hash-5.0.3.tgz#9a229f0a1ce9d4fc89bcaee5478c97a889e7b7b6"
+ integrity sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==
+
on-exit-leak-free@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/on-exit-leak-free/-/on-exit-leak-free-2.1.0.tgz#5c703c968f7e7f851885f6459bf8a8a57edc9cc4"
@@ -17567,18 +17725,18 @@ pinkie@^2.0.0:
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==
-pino-abstract-transport@v1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz#cc0d6955fffcadb91b7b49ef220a6cc111d48bb3"
- integrity sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==
+pino-abstract-transport@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz#97f9f2631931e242da531b5c66d3079c12c9d1b5"
+ integrity sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==
dependencies:
readable-stream "^4.0.0"
split2 "^4.0.0"
-pino-abstract-transport@v1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.1.0.tgz#083d98f966262164504afb989bccd05f665937a8"
- integrity sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==
+pino-abstract-transport@v1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz#cc0d6955fffcadb91b7b49ef220a6cc111d48bb3"
+ integrity sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==
dependencies:
readable-stream "^4.0.0"
split2 "^4.0.0"
@@ -17615,22 +17773,22 @@ pino@^8.0.0, pino@^8.11.0, pino@^8.6.1:
sonic-boom "^3.1.0"
thread-stream "^2.0.0"
-pino@^8.15.0:
- version "8.15.1"
- resolved "https://registry.yarnpkg.com/pino/-/pino-8.15.1.tgz#04b815ff7aa4e46b1bbab88d8010aaa2b17eaba4"
- integrity sha512-Cp4QzUQrvWCRJaQ8Lzv0mJzXVk4z2jlq8JNKMGaixC2Pz5L4l2p95TkuRvYbrEbe85NQsDKrAd4zalf7Ml6WiA==
+pino@^8.21.0:
+ version "8.21.0"
+ resolved "https://registry.yarnpkg.com/pino/-/pino-8.21.0.tgz#e1207f3675a2722940d62da79a7a55a98409f00d"
+ integrity sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==
dependencies:
atomic-sleep "^1.0.0"
fast-redact "^3.1.1"
on-exit-leak-free "^2.1.0"
- pino-abstract-transport v1.1.0
+ pino-abstract-transport "^1.2.0"
pino-std-serializers "^6.0.0"
- process-warning "^2.0.0"
+ process-warning "^3.0.0"
quick-format-unescaped "^4.0.3"
real-require "^0.2.0"
safe-stable-stringify "^2.3.1"
- sonic-boom "^3.1.0"
- thread-stream "^2.0.0"
+ sonic-boom "^3.7.0"
+ thread-stream "^2.6.0"
pirates@^4.0.1, pirates@^4.0.4, pirates@^4.0.5:
version "4.0.6"
@@ -18392,6 +18550,11 @@ process-warning@^2.0.0:
resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-2.2.0.tgz#008ec76b579820a8e5c35d81960525ca64feb626"
integrity sha512-/1WZ8+VQjR6avWOgHeEPd7SDQmFQ1B5mC1eRXsCm5TarlNmx/wCsa5GEaxGm05BORRtyG/Ex/3xq3TuRvq57qg==
+process-warning@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-3.0.0.tgz#96e5b88884187a1dce6f5c3166d611132058710b"
+ integrity sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==
+
process@^0.11.10:
version "0.11.10"
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
@@ -20229,6 +20392,13 @@ sonic-boom@^3.1.0:
dependencies:
atomic-sleep "^1.0.0"
+sonic-boom@^3.7.0:
+ version "3.8.1"
+ resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-3.8.1.tgz#d5ba8c4e26d6176c9a1d14d549d9ff579a163422"
+ integrity sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==
+ dependencies:
+ atomic-sleep "^1.0.0"
+
source-list-map@^2.0.0, source-list-map@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
@@ -20419,6 +20589,16 @@ statsig-js@4.45.1:
js-sha256 "^0.10.1"
uuid "^8.3.2"
+statsig-node@^5.23.1:
+ version "5.25.1"
+ resolved "https://registry.yarnpkg.com/statsig-node/-/statsig-node-5.25.1.tgz#6d8ea9ecaad6c09250e5ff7d33eda9fd0f9c05f4"
+ integrity sha512-K8+1psxFVdFr5LyXwDotJqBl7uKt8vbZO2e/9zzbLI4yDOuLDoItG5Ju5QAR0oUfEdEAANOzwV2yA052Wrc/Xw==
+ dependencies:
+ ip3country "^5.0.0"
+ node-fetch "^2.6.13"
+ ua-parser-js "^1.0.2"
+ uuid "^8.3.2"
+
statsig-react-native-expo@^4.6.1:
version "4.6.1"
resolved "https://registry.yarnpkg.com/statsig-react-native-expo/-/statsig-react-native-expo-4.6.1.tgz#0bdf49fee7112f7f28bff2405f4ba0c1727bb3d6"
@@ -21052,6 +21232,13 @@ thread-stream@^2.0.0:
dependencies:
real-require "^0.2.0"
+thread-stream@^2.6.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-2.7.0.tgz#d8a8e1b3fd538a6cca8ce69dbe5d3d097b601e11"
+ integrity sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==
+ dependencies:
+ real-require "^0.2.0"
+
throat@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
@@ -21251,6 +21438,11 @@ tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
+tsscmp@1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb"
+ integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==
+
tsutils@^3.21.0:
version "3.21.0"
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
@@ -21388,6 +21580,11 @@ ua-parser-js@^0.7.33:
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.35.tgz#8bda4827be4f0b1dda91699a29499575a1f1d307"
integrity sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==
+ua-parser-js@^1.0.2:
+ version "1.0.38"
+ resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.38.tgz#66bb0c4c0e322fe48edfe6d446df6042e62f25e2"
+ integrity sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==
+
ua-parser-js@^1.0.35:
version "1.0.35"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.35.tgz#c4ef44343bc3db0a3cbefdf21822f1b1fc1ab011"
@@ -21432,6 +21629,11 @@ undici@^5.28.2:
dependencies:
"@fastify/busboy" "^2.0.0"
+undici@^6.14.1:
+ version "6.19.5"
+ resolved "https://registry.yarnpkg.com/undici/-/undici-6.19.5.tgz#5829101361b583b53206e81579f4df71c56d6be8"
+ integrity sha512-LryC15SWzqQsREHIOUybavaIHF5IoL0dJ9aWWxL/PgT1KfqAW5225FZpDUFlt9xiDMS2/S7DOKhFWA7RLksWdg==
+
unfetch@^3.1.1:
version "3.1.2"
resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-3.1.2.tgz#dc271ef77a2800768f7b459673c5604b5101ef77"
@@ -22603,7 +22805,7 @@ zod-validation-error@^3.0.3:
resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-3.3.0.tgz#2cfe81b62d044e0453d1aa3ae7c32a2f36dde9af"
integrity sha512-Syib9oumw1NTqEv4LT0e6U83Td9aVRk9iTXPUQr1otyV1PuXQKOvOwhMNqZIq5hluzHP2pMgnOmHEo7kPdI2mw==
-zod@3.23.8, zod@^3.14.2, zod@^3.20.2, zod@^3.21.4, zod@^3.22.4:
+zod@3.23.8, zod@^3.14.2, zod@^3.20.2, zod@^3.21.4, zod@^3.22.4, zod@^3.23.8:
version "3.23.8"
resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d"
integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==